Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1901 - 1
<?xml version="1.0" encoding="utf-8"?>
2
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup>
4
    <SchemaVersion>2.0</SchemaVersion>
5
    <ProjectVersion>6.0</ProjectVersion>
6
    <ToolchainName>com.Atmel.AVRGCC8</ToolchainName>
7
    <ProjectGuid>{5b2b3747-8864-4179-9616-85e114c29516}</ProjectGuid>
8
    <avrdevice>ATmega1284P</avrdevice>
9
    <avrdeviceseries>none</avrdeviceseries>
10
    <OutputType>Executable</OutputType>
11
    <Language>C</Language>
12
    <OutputFileName>$(MSBuildProjectName)</OutputFileName>
13
    <OutputFileExtension>.elf</OutputFileExtension>
14
    <OutputDirectory>$(MSBuildProjectDirectory)\$(Configuration)</OutputDirectory>
15
    <AssemblyName>StateMachine</AssemblyName>
16
    <Name>StateMachine</Name>
17
    <RootNamespace>StateMachine</RootNamespace>
18
    <ToolchainFlavour>Native</ToolchainFlavour>
19
    <KeepTimersRunning>true</KeepTimersRunning>
20
    <OverrideVtor>false</OverrideVtor>
21
    <OverrideVtorValue />
22
    <eraseonlaunchrule>0</eraseonlaunchrule>
23
    <AsfVersion>3.5.1</AsfVersion>
24
  </PropertyGroup>
25
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
26
    <ToolchainSettings>
27
      <AvrGcc>
28
  <avrgcc.common.outputfiles.hex>True</avrgcc.common.outputfiles.hex>
29
  <avrgcc.common.outputfiles.lss>True</avrgcc.common.outputfiles.lss>
30
  <avrgcc.common.outputfiles.eep>True</avrgcc.common.outputfiles.eep>
31
  <avrgcc.common.outputfiles.srec>True</avrgcc.common.outputfiles.srec>
32
  <avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>True</avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>
33
  <avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>True</avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>
34
  <avrgcc.compiler.optimization.level>Optimize for size (-Os)</avrgcc.compiler.optimization.level>
35
  <avrgcc.compiler.optimization.PackStructureMembers>True</avrgcc.compiler.optimization.PackStructureMembers>
36
  <avrgcc.compiler.optimization.AllocateBytesNeededForEnum>True</avrgcc.compiler.optimization.AllocateBytesNeededForEnum>
37
  <avrgcc.compiler.warnings.AllWarnings>True</avrgcc.compiler.warnings.AllWarnings>
38
  <avrgcc.linker.libraries.Libraries>
39
    <ListValues>
40
      <Value>m</Value>
41
    </ListValues>
42
  </avrgcc.linker.libraries.Libraries>
43
</AvrGcc>
44
    </ToolchainSettings>
45
  </PropertyGroup>
46
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
47
    <ToolchainSettings>
48
      <AvrGcc>
49
  <avrgcc.common.outputfiles.hex>True</avrgcc.common.outputfiles.hex>
50
  <avrgcc.common.outputfiles.lss>True</avrgcc.common.outputfiles.lss>
51
  <avrgcc.common.outputfiles.eep>True</avrgcc.common.outputfiles.eep>
52
  <avrgcc.common.outputfiles.srec>True</avrgcc.common.outputfiles.srec>
53
  <avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>True</avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>
54
  <avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>True</avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>
55
  <avrgcc.compiler.optimization.level>Optimize (-O1)</avrgcc.compiler.optimization.level>
56
  <avrgcc.compiler.optimization.PackStructureMembers>True</avrgcc.compiler.optimization.PackStructureMembers>
57
  <avrgcc.compiler.optimization.AllocateBytesNeededForEnum>True</avrgcc.compiler.optimization.AllocateBytesNeededForEnum>
58
  <avrgcc.compiler.optimization.DebugLevel>Default (-g2)</avrgcc.compiler.optimization.DebugLevel>
59
  <avrgcc.compiler.warnings.AllWarnings>True</avrgcc.compiler.warnings.AllWarnings>
60
  <avrgcc.linker.libraries.Libraries>
61
    <ListValues>
62
      <Value>m</Value>
63
    </ListValues>
64
  </avrgcc.linker.libraries.Libraries>
65
  <avrgcc.assembler.debugging.DebugLevel>Default (-Wa,-g)</avrgcc.assembler.debugging.DebugLevel>
66
</AvrGcc>
67
    </ToolchainSettings>
68
  </PropertyGroup>
69
  <ItemGroup>
70
    <Compile Include="AplicationManager\AplicationManager.cpp">
71
      <SubType>compile</SubType>
72
    </Compile>
73
    <Compile Include="AplicationManager\AplicationManager.h">
74
      <SubType>compile</SubType>
75
    </Compile>
76
    <Compile Include="DisplayManager\DisplayManager.cpp">
77
      <SubType>compile</SubType>
78
    </Compile>
79
    <Compile Include="DisplayManager\DisplayManager.h">
80
      <SubType>compile</SubType>
81
    </Compile>
82
    <Compile Include="IoManager\IoManager.cpp">
83
      <SubType>compile</SubType>
84
    </Compile>
85
    <Compile Include="IoManager\IoManager.h">
86
      <SubType>compile</SubType>
87
    </Compile>
88
    <Compile Include="SchedulerManager\SchedulerManager.cpp">
89
      <SubType>compile</SubType>
90
    </Compile>
91
    <Compile Include="SchedulerManager\SchedulerManager.h">
92
      <SubType>compile</SubType>
93
    </Compile>
94
    <Compile Include="StateMachine.cpp">
95
      <SubType>compile</SubType>
96
    </Compile>
97
    <Compile Include="StructManager\StructManager.cpp">
98
      <SubType>compile</SubType>
99
    </Compile>
100
    <Compile Include="StructManager\StructManager.h">
101
      <SubType>compile</SubType>
102
    </Compile>
103
    <Compile Include="TaskManager\TaskManager.cpp">
104
      <SubType>compile</SubType>
105
    </Compile>
106
    <Compile Include="TaskManager\TaskManager.h">
107
      <SubType>compile</SubType>
108
    </Compile>
109
  </ItemGroup>
110
  <ItemGroup>
111
    <Folder Include="AplicationManager\" />
112
    <Folder Include="DisplayManager\" />
113
    <Folder Include="DisplayManager\DisplayStruct\Mk3Display" />
114
    <Folder Include="DisplayManager\DisplayStruct\PktDisplay" />
115
    <Folder Include="DisplayManager\DisplayStruct" />
116
    <Folder Include="IoManager\" />
117
    <Folder Include="IoManager\IoStruct" />
118
    <Folder Include="SchedulerManager\" />
119
    <Folder Include="StructManager\" />
120
    <Folder Include="StructManager\Struct" />
121
    <Folder Include="TaskManager\" />
122
    <Folder Include="TaskManager\TaskStruct" />
123
  </ItemGroup>
124
  <Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Compiler.targets" />
125
</Project>