2018-06-09 17:38:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
|
|
|
|
<PropertyGroup>
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
<ProjectVersion>7.0</ProjectVersion>
|
|
|
|
<ToolchainName>com.Atmel.AVRAssembler</ToolchainName>
|
|
|
|
<ProjectGuid>59B1D629-9DCC-43ed-A0FD-8AB0E4D622AB</ProjectGuid>
|
|
|
|
<avrdeviceseries>none</avrdeviceseries>
|
|
|
|
<avrdevice>ATmega328P</avrdevice>
|
|
|
|
<OutputFileName>$(MSBuildProjectName)</OutputFileName>
|
|
|
|
<OutputFileExtension>.obj</OutputFileExtension>
|
|
|
|
<OutputDirectory>$(MSBuildProjectDirectory)\$(Configuration)</OutputDirectory>
|
|
|
|
<Language>ASSEMBLY</Language>
|
|
|
|
<AssemblyName>ASM18b20AvecLCD</AssemblyName>
|
|
|
|
<Name>ASM18b20AvecLCD</Name>
|
|
|
|
<RootNamespace>ASM18b20AvecLCD</RootNamespace>
|
|
|
|
<ToolchainFlavour>Native</ToolchainFlavour>
|
|
|
|
<EntryFile>$(MSBuildProjectDirectory)\main.asm</EntryFile>
|
|
|
|
<KeepTimersRunning>true</KeepTimersRunning>
|
|
|
|
<OverrideVtor>false</OverrideVtor>
|
|
|
|
<CacheFlash>true</CacheFlash>
|
|
|
|
<ProgFlashFromRam>true</ProgFlashFromRam>
|
|
|
|
<RamSnippetAddress />
|
|
|
|
<UncachedRange />
|
|
|
|
<preserveEEPROM>true</preserveEEPROM>
|
|
|
|
<OverrideVtorValue />
|
|
|
|
<BootSegment>2</BootSegment>
|
|
|
|
<ResetRule>0</ResetRule>
|
|
|
|
<eraseonlaunchrule>0</eraseonlaunchrule>
|
|
|
|
<EraseKey />
|
|
|
|
<AsfFrameworkConfig>
|
|
|
|
<framework-data xmlns="">
|
|
|
|
<options />
|
|
|
|
<configurations />
|
|
|
|
<files />
|
|
|
|
<documentation help="" />
|
|
|
|
<offline-documentation help="" />
|
|
|
|
<dependencies>
|
|
|
|
<content-extension eid="atmel.asf" uuidref="Atmel.ASF" version="3.35.1" />
|
|
|
|
</dependencies>
|
|
|
|
</framework-data>
|
|
|
|
</AsfFrameworkConfig>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<ToolchainSettings>
|
|
|
|
<AvrAssembler>
|
|
|
|
<avrasm.assembler.general.AdditionalIncludeDirectories>
|
|
|
|
<ListValues>
|
|
|
|
<Value>%24(PackRepoDir)\atmel\ATmega_DFP\1.2.150\avrasm\inc</Value>
|
|
|
|
</ListValues>
|
|
|
|
</avrasm.assembler.general.AdditionalIncludeDirectories>
|
|
|
|
<avrasm.assembler.general.IncludeFile>m328pdef.inc</avrasm.assembler.general.IncludeFile>
|
|
|
|
</AvrAssembler>
|
|
|
|
</ToolchainSettings>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<ToolchainSettings>
|
|
|
|
<AvrAssembler>
|
|
|
|
<avrasm.assembler.general.AdditionalIncludeDirectories>
|
|
|
|
<ListValues>
|
|
|
|
<Value>%24(PackRepoDir)\atmel\ATmega_DFP\1.2.150\avrasm\inc</Value>
|
|
|
|
</ListValues>
|
|
|
|
</avrasm.assembler.general.AdditionalIncludeDirectories>
|
|
|
|
<avrasm.assembler.general.IncludeFile>m328pdef.inc</avrasm.assembler.general.IncludeFile>
|
|
|
|
</AvrAssembler>
|
|
|
|
</ToolchainSettings>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
2018-06-10 03:43:12 +02:00
|
|
|
<Compile Include="1-wire.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
|
|
|
<Compile Include="crc8.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
|
|
|
<Compile Include="div8u.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
|
|
|
<Compile Include="hd44780.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
|
|
|
<Compile Include="hd44780.inc">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
2018-06-09 17:38:15 +02:00
|
|
|
<Compile Include="main.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
2018-06-10 03:43:12 +02:00
|
|
|
<Compile Include="vectors.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
|
|
|
<Compile Include="wait.asm">
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
</Compile>
|
2018-06-09 17:38:15 +02:00
|
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Assembler.targets" />
|
|
|
|
</Project>
|