diff --git a/Distancer.atsln b/Distancer.atsln new file mode 100644 index 0000000..ab8eddd --- /dev/null +++ b/Distancer.atsln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Atmel Studio Solution File, Format Version 11.00 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{E66E83B9-2572-4076-B26E-6BE79FF3018A}") = "Distancer", "Distancer.cppproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|AVR = Debug|AVR + Release|AVR = Release|AVR + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR + {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR + {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR + {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Distancer.componentinfo.xml b/Distancer.componentinfo.xml new file mode 100644 index 0000000..a91c5d7 --- /dev/null +++ b/Distancer.componentinfo.xml @@ -0,0 +1,86 @@ + + + + + + + Device + Startup + + + Atmel + 1.2.0 + C:/Program Files (x86)\Atmel\Studio\7.0\Packs + + + + + C:/Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATtiny_DFP\1.2.112\include + + include + C + + + include + + + + + C:/Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATtiny_DFP\1.2.112\include\avr\iotn24.h + + header + C + B02aQZRwfJUXls0TDlxe4Q== + + include/avr/iotn24.h + + + + + C:/Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATtiny_DFP\1.2.112\templates\main.c + template + source + C Exe + GD1k8YYhulqRs6FD1B2Hog== + + templates/main.c + Main file (.c) + + + + C:/Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATtiny_DFP\1.2.112\templates\main.cpp + template + source + C Exe + 16WfzqDbPoXAwGjKeXRddg== + + templates/main.cpp + Main file (.cpp) + + + + C:/Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATtiny_DFP\1.2.112\gcc\dev\attiny24 + + libraryPrefix + GCC + + + gcc/dev/attiny24 + + + + + ATtiny_DFP + C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATtiny_DFP/1.2.112/Atmel.ATtiny_DFP.pdsc + 1.2.112 + true + ATtiny24 + + + + Resolved + Fixed + true + + + \ No newline at end of file diff --git a/Distancer.cpp b/Distancer.cpp new file mode 100644 index 0000000..6abda84 --- /dev/null +++ b/Distancer.cpp @@ -0,0 +1,9 @@ +#include + + +int main() +{ + while (true) + { + } +} diff --git a/Distancer.cppproj b/Distancer.cppproj new file mode 100644 index 0000000..0054799 --- /dev/null +++ b/Distancer.cppproj @@ -0,0 +1,147 @@ + + + + 2.0 + 7.0 + com.Atmel.AVRGCC8.CPP + dce6c7e3-ee26-4d79-826b-08594b9ad897 + ATtiny24 + none + Executable + CPP + $(MSBuildProjectName) + .elf + $(MSBuildProjectDirectory)\$(Configuration) + Distancer + Distancer + Distancer + Native + true + false + true + true + + + true + + 2 + 0 + + + + + -mmcu=attiny24 -B "%24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\gcc\dev\attiny24" + True + True + True + True + False + True + True + + + NDEBUG + + + + + %24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\include + + + Optimize for size (-Os) + True + True + True + True + True + + + NDEBUG + + + + + %24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\include + + + Optimize for size (-Os) + True + True + True + + + libm + + + + + %24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\include + + + + + + + + + -mmcu=attiny24 -B "%24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\gcc\dev\attiny24" + True + True + True + True + False + True + True + + + DEBUG + + + + + %24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\include + + + Optimize (-O1) + True + True + Default (-g2) + True + True + True + + + DEBUG + + + + + %24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\include + + + Optimize (-O1) + True + True + Default (-g2) + True + + + libm + + + + + %24(PackRepoDir)\Atmel\ATtiny_DFP\1.2.112\include + + + Default (-Wa,-g) + + + + + + compile + + + + \ No newline at end of file