ceedling 0.13.0.rc1 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (426) hide show
  1. data/Gemfile.lock +32 -0
  2. data/README.md +8 -8
  3. data/assets/example_file.c +5 -0
  4. data/assets/example_file.h +6 -0
  5. data/assets/project_as_gem.yml +71 -0
  6. data/assets/{project.yml → project_with_guts.yml} +2 -0
  7. data/assets/rakefile_as_gem.rb +1 -0
  8. data/assets/{rakefile.rb → rakefile_with_guts.rb} +0 -0
  9. data/assets/test_example_file.c +13 -0
  10. data/bin/ceedling +55 -31
  11. data/ceedling-0.13.0.rc4.gem +0 -0
  12. data/ceedling.gemspec +13 -12
  13. data/ceedling.sublime-project +8 -0
  14. data/ceedling.sublime-workspace +365 -0
  15. data/examples/temp_sensor/project.yml +3 -4
  16. data/lib/ceedling.rb +13 -4
  17. data/lib/ceedling/version.rb +3 -3
  18. data/lib/project_file_loader.rb +1 -1
  19. data/lib/rakefile.rb +14 -1
  20. data/lib/target_loader.rb +38 -0
  21. data/plugins/bullseye/{template.erb → assets/template.erb} +0 -0
  22. data/plugins/bullseye/{defaults.yml → config/defaults.yml} +0 -0
  23. data/plugins/bullseye/{bullseye.rb → lib/bullseye.rb} +9 -10
  24. data/spec/spec_system_helper.rb +192 -0
  25. data/spec/system/deployment_spec.rb +116 -0
  26. data/tags +977 -0
  27. data/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  28. data/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  29. data/vendor/c_exception/docs/license.txt +30 -0
  30. data/vendor/c_exception/docs/readme.txt +242 -0
  31. data/vendor/c_exception/makefile +24 -0
  32. data/vendor/c_exception/rakefile.rb +41 -0
  33. data/vendor/c_exception/test/CExceptionConfig.h +44 -0
  34. data/vendor/c_exception/test/TestException.c +328 -0
  35. data/vendor/c_exception/test/TestException_Runner.c +57 -0
  36. data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  37. data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  38. data/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  39. data/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  40. data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +313 -0
  41. data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  42. data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +139 -0
  43. data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  44. data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  45. data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  46. data/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  47. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  48. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  49. data/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  50. data/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  51. data/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +256 -0
  52. data/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  53. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  54. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  55. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  56. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  57. data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  58. data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  59. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  60. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  61. data/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  62. data/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  63. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  64. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  65. data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  66. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  67. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  68. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  69. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  70. data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  71. data/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  72. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  73. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  74. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  75. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  76. data/vendor/c_exception/vendor/unity/makefile +35 -0
  77. data/vendor/c_exception/vendor/unity/rakefile.rb +59 -0
  78. data/vendor/c_exception/vendor/unity/rakefile_helper.rb +240 -0
  79. data/vendor/c_exception/vendor/unity/release/build.info +2 -0
  80. data/vendor/c_exception/vendor/unity/release/version.info +2 -0
  81. data/vendor/c_exception/vendor/unity/src/unity.c +979 -0
  82. data/vendor/c_exception/vendor/unity/src/unity.h +232 -0
  83. data/vendor/c_exception/vendor/unity/src/unity_internals.h +424 -0
  84. data/vendor/c_exception/vendor/unity/targets/gcc.yml +43 -0
  85. data/vendor/c_exception/vendor/unity/targets/gcc_64.yml +44 -0
  86. data/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  87. data/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  88. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  89. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  90. data/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  91. data/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  92. data/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  93. data/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  94. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  95. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  96. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  97. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  98. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  99. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  100. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  101. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  102. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  103. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  104. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  105. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  106. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  107. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  108. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  109. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  110. data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  111. data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  112. data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  113. data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  114. data/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  115. data/vendor/c_exception/vendor/unity/test/testunity.c +2024 -0
  116. data/vendor/cmock/docs/CMock Summary.odt +0 -0
  117. data/vendor/cmock/docs/CMock Summary.pdf +0 -0
  118. data/vendor/cmock/docs/CMock_Summary.md +356 -0
  119. data/vendor/cmock/docs/license.txt +31 -0
  120. data/vendor/cmock/examples/gcc.yml +43 -0
  121. data/vendor/cmock/examples/iar_v4.yml +91 -0
  122. data/vendor/cmock/examples/iar_v5.yml +80 -0
  123. data/vendor/cmock/examples/rakefile.rb +32 -0
  124. data/vendor/cmock/examples/rakefile_helper.rb +270 -0
  125. data/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
  126. data/vendor/cmock/examples/src/AdcConductor.c +42 -0
  127. data/vendor/cmock/examples/src/AdcConductor.h +11 -0
  128. data/vendor/cmock/examples/src/AdcHardware.c +27 -0
  129. data/vendor/cmock/examples/src/AdcHardware.h +9 -0
  130. data/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
  131. data/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
  132. data/vendor/cmock/examples/src/AdcModel.c +33 -0
  133. data/vendor/cmock/examples/src/AdcModel.h +13 -0
  134. data/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
  135. data/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
  136. data/vendor/cmock/examples/src/Executor.c +25 -0
  137. data/vendor/cmock/examples/src/Executor.h +9 -0
  138. data/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
  139. data/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
  140. data/vendor/cmock/examples/src/Main.c +46 -0
  141. data/vendor/cmock/examples/src/Main.h +7 -0
  142. data/vendor/cmock/examples/src/Model.c +10 -0
  143. data/vendor/cmock/examples/src/Model.h +8 -0
  144. data/vendor/cmock/examples/src/ModelConfig.h +7 -0
  145. data/vendor/cmock/examples/src/TaskScheduler.c +72 -0
  146. data/vendor/cmock/examples/src/TaskScheduler.h +11 -0
  147. data/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
  148. data/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
  149. data/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
  150. data/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
  151. data/vendor/cmock/examples/src/TimerConductor.c +15 -0
  152. data/vendor/cmock/examples/src/TimerConductor.h +9 -0
  153. data/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
  154. data/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
  155. data/vendor/cmock/examples/src/TimerHardware.c +15 -0
  156. data/vendor/cmock/examples/src/TimerHardware.h +8 -0
  157. data/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
  158. data/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
  159. data/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
  160. data/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
  161. data/vendor/cmock/examples/src/TimerModel.c +9 -0
  162. data/vendor/cmock/examples/src/TimerModel.h +8 -0
  163. data/vendor/cmock/examples/src/Types.h +103 -0
  164. data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
  165. data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
  166. data/vendor/cmock/examples/src/UsartConductor.c +21 -0
  167. data/vendor/cmock/examples/src/UsartConductor.h +7 -0
  168. data/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
  169. data/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
  170. data/vendor/cmock/examples/src/UsartHardware.c +22 -0
  171. data/vendor/cmock/examples/src/UsartHardware.h +9 -0
  172. data/vendor/cmock/examples/src/UsartModel.c +34 -0
  173. data/vendor/cmock/examples/src/UsartModel.h +10 -0
  174. data/vendor/cmock/examples/src/UsartPutChar.c +16 -0
  175. data/vendor/cmock/examples/src/UsartPutChar.h +8 -0
  176. data/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
  177. data/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
  178. data/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
  179. data/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
  180. data/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
  181. data/vendor/cmock/examples/test/TestAdcModel.c +33 -0
  182. data/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
  183. data/vendor/cmock/examples/test/TestExecutor.c +36 -0
  184. data/vendor/cmock/examples/test/TestMain.c +24 -0
  185. data/vendor/cmock/examples/test/TestModel.c +20 -0
  186. data/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
  187. data/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
  188. data/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
  189. data/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
  190. data/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
  191. data/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
  192. data/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
  193. data/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
  194. data/vendor/cmock/examples/test/TestTimerModel.c +18 -0
  195. data/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  196. data/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
  197. data/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
  198. data/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
  199. data/vendor/cmock/examples/test/TestUsartModel.c +40 -0
  200. data/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
  201. data/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
  202. data/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
  203. data/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
  204. data/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
  205. data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
  206. data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
  207. data/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
  208. data/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
  209. data/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
  210. data/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
  211. data/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
  212. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
  213. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
  214. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
  215. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
  216. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
  217. data/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
  218. data/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
  219. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
  220. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
  221. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
  222. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
  223. data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
  224. data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
  225. data/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
  226. data/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
  227. data/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
  228. data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
  229. data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
  230. data/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
  231. data/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
  232. data/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
  233. data/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
  234. data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
  235. data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
  236. data/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
  237. data/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
  238. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
  239. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
  240. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
  241. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
  242. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
  243. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
  244. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
  245. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
  246. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
  247. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
  248. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
  249. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
  250. data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
  251. data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
  252. data/vendor/cmock/rakefile.rb +111 -0
  253. data/vendor/cmock/rakefile_helper.rb +381 -0
  254. data/vendor/cmock/targets/gcc.yml +53 -0
  255. data/vendor/cmock/targets/iar_arm_v4.yml +108 -0
  256. data/vendor/cmock/targets/iar_arm_v5.yml +93 -0
  257. data/vendor/cmock/test/c/TestCMockC.c +280 -0
  258. data/vendor/cmock/test/c/TestCMockC.yml +12 -0
  259. data/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
  260. data/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
  261. data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
  262. data/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
  263. data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +25 -0
  264. data/vendor/cmock/test/spec/spec_helper.rb +12 -0
  265. data/vendor/cmock/test/system/systest_generator.rb +178 -0
  266. data/vendor/cmock/test/system/test_compilation/callingconv.h +11 -0
  267. data/vendor/cmock/test/system/test_compilation/config.yml +9 -0
  268. data/vendor/cmock/test/system/test_compilation/const.h +15 -0
  269. data/vendor/cmock/test/system/test_compilation/osek.h +275 -0
  270. data/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
  271. data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +341 -0
  272. data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +382 -0
  273. data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
  274. data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
  275. data/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
  276. data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
  277. data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
  278. data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
  279. data/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
  280. data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
  281. data/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
  282. data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
  283. data/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
  284. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
  285. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
  286. data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
  287. data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
  288. data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
  289. data/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +77 -0
  290. data/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
  291. data/vendor/cmock/test/test_helper.rb +44 -0
  292. data/vendor/cmock/test/unit/cmock_config_test.rb +121 -0
  293. data/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
  294. data/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
  295. data/vendor/cmock/test/unit/cmock_generator_main_test.rb +413 -0
  296. data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
  297. data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
  298. data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
  299. data/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
  300. data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +168 -0
  301. data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
  302. data/vendor/cmock/test/unit/cmock_header_parser_test.rb +1247 -0
  303. data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
  304. data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
  305. data/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
  306. data/vendor/cmock/vendor/behaviors/Rakefile +19 -0
  307. data/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
  308. data/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  309. data/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  310. data/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
  311. data/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  312. data/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  313. data/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  314. data/vendor/cmock/vendor/hardmock/CHANGES +78 -0
  315. data/vendor/cmock/vendor/hardmock/LICENSE +7 -0
  316. data/vendor/cmock/vendor/hardmock/README +70 -0
  317. data/vendor/cmock/vendor/hardmock/Rakefile +8 -0
  318. data/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
  319. data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
  320. data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  321. data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
  322. data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  323. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  324. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  325. data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  326. data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  327. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  328. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  329. data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  330. data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  331. data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  332. data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  333. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  334. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  335. data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
  336. data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  337. data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  338. data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  339. data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  340. data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  341. data/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
  342. data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  343. data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  344. data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
  345. data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  346. data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  347. data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
  348. data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  349. data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  350. data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  351. data/vendor/unity/auto/generate_config.yml +36 -0
  352. data/vendor/unity/auto/unity_test_summary.rb +2 -2
  353. data/vendor/unity/docs/Unity Summary.odt +0 -0
  354. data/vendor/unity/docs/Unity Summary.pdf +0 -0
  355. data/vendor/unity/docs/Unity Summary.txt +216 -0
  356. data/vendor/unity/docs/license.txt +31 -0
  357. data/vendor/unity/examples/helper/UnityHelper.c +10 -0
  358. data/vendor/unity/examples/helper/UnityHelper.h +12 -0
  359. data/vendor/unity/examples/makefile +40 -0
  360. data/vendor/unity/examples/rakefile.rb +32 -0
  361. data/vendor/unity/examples/rakefile_helper.rb +256 -0
  362. data/vendor/unity/examples/readme.txt +18 -0
  363. data/vendor/unity/examples/src/ProductionCode.c +24 -0
  364. data/vendor/unity/examples/src/ProductionCode.h +3 -0
  365. data/vendor/unity/examples/src/ProductionCode2.c +9 -0
  366. data/vendor/unity/examples/src/ProductionCode2.h +2 -0
  367. data/vendor/unity/examples/test/TestProductionCode.c +62 -0
  368. data/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  369. data/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  370. data/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  371. data/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  372. data/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  373. data/vendor/unity/extras/fixture/rakefile.rb +37 -0
  374. data/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  375. data/vendor/unity/extras/fixture/readme.txt +9 -0
  376. data/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  377. data/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  378. data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  379. data/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  380. data/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  381. data/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  382. data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  383. data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  384. data/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  385. data/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  386. data/vendor/unity/makefile +35 -0
  387. data/vendor/unity/rakefile.rb +59 -0
  388. data/vendor/unity/rakefile_helper.rb +240 -0
  389. data/vendor/unity/release/version.info +1 -1
  390. data/vendor/unity/src/unity.c +1 -1
  391. data/vendor/unity/src/unity_internals.h +5 -5
  392. data/vendor/unity/targets/gcc_32.yml +44 -0
  393. data/vendor/unity/targets/hitech_picc18.yml +101 -0
  394. data/vendor/unity/targets/iar_arm_v4.yml +89 -0
  395. data/vendor/unity/targets/iar_arm_v5.yml +79 -0
  396. data/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  397. data/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  398. data/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  399. data/vendor/unity/targets/iar_msp430.yml +94 -0
  400. data/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  401. data/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  402. data/vendor/unity/test/expectdata/testsample_def.c +50 -0
  403. data/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  404. data/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  405. data/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  406. data/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  407. data/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  408. data/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  409. data/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  410. data/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  411. data/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  412. data/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  413. data/vendor/unity/test/expectdata/testsample_param.c +51 -0
  414. data/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  415. data/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  416. data/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  417. data/vendor/unity/test/test_generate_test_runner.rb +94 -0
  418. data/vendor/unity/test/testdata/mocksample.c +51 -0
  419. data/vendor/unity/test/testdata/sample.yml +9 -0
  420. data/vendor/unity/test/testdata/testsample.c +51 -0
  421. data/vendor/unity/test/testparameterized.c +101 -0
  422. data/vendor/unity/test/testunity.c +2559 -0
  423. metadata +464 -53
  424. data/.gitignore +0 -6
  425. data/.gitmodules +0 -9
  426. data/.rspec +0 -1
@@ -0,0 +1,98 @@
1
+ // ----------------------------------------------------------------------------
2
+ // ATMEL Microcontroller Software Support - ROUSSET -
3
+ // ----------------------------------------------------------------------------
4
+ // DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
5
+ // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
6
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
7
+ // DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
8
+ // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
10
+ // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
11
+ // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
12
+ // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
13
+ // EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
+ // ----------------------------------------------------------------------------
15
+ // File Name : Cstartup_SAM7.c
16
+ // Object : Low level initialisations written in C for IAR Tools
17
+ // Creation : FBr 01-Sep-2005
18
+ // 1.0 08-Sep-2005 JPP : Suppress Reset
19
+ // ----------------------------------------------------------------------------
20
+
21
+ #include "AT91SAM7X256.h"
22
+
23
+ // The following functions must be write in ARM mode this function called directly by exception vector
24
+ extern void AT91F_Spurious_handler(void);
25
+ extern void AT91F_Default_IRQ_handler(void);
26
+ extern void AT91F_Default_FIQ_handler(void);
27
+
28
+ //*----------------------------------------------------------------------------
29
+ //* \fn AT91F_LowLevelInit
30
+ //* \brief This function performs very low level HW initialization
31
+ //* this function can use a Stack, depending the compilation
32
+ //* optimization mode
33
+ //*----------------------------------------------------------------------------
34
+ void AT91F_LowLevelInit(void)
35
+ {
36
+ unsigned char i;
37
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
38
+ // EFC Init
39
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
40
+ AT91C_BASE_MC->MC_FMR = AT91C_MC_FWS_1FWS; // 1 Wait State necessary to work at 48MHz
41
+
42
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
43
+ // Init PMC Step 1. Enable Main Oscillator
44
+ // Main Oscillator startup time is board specific:
45
+ // Main Oscillator Startup Time worst case (3MHz) corresponds to 15ms (0x40 for AT91C_CKGR_OSCOUNT field)
46
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
47
+ AT91C_BASE_PMC->PMC_MOR = (( AT91C_CKGR_OSCOUNT & (0x40 <<8) | AT91C_CKGR_MOSCEN ));
48
+ #ifndef SIMULATE
49
+ // Wait Main Oscillator stabilization
50
+ while(!(AT91C_BASE_PMC->PMC_SR & AT91C_PMC_MOSCS));
51
+ #endif
52
+
53
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
54
+ // Init PMC Step 2.
55
+ // Set PLL to 96MHz (96,109MHz) and UDP Clock to 48MHz
56
+ // PLL Startup time depends on PLL RC filter: worst case is choosen
57
+ // UDP Clock (48,058MHz) is compliant with the Universal Serial Bus Specification (+/- 0.25% for full speed)
58
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
59
+ AT91C_BASE_PMC->PMC_PLLR = AT91C_CKGR_USBDIV_1 | AT91C_CKGR_OUT_0 | AT91C_CKGR_PLLCOUNT |
60
+ (AT91C_CKGR_MUL & (72 << 16)) | (AT91C_CKGR_DIV & 14);
61
+ #ifndef SIMULATE
62
+ // Wait for PLL stabilization
63
+ while( !(AT91C_BASE_PMC->PMC_SR & AT91C_PMC_LOCK) );
64
+ // Wait until the master clock is established for the case we already turn on the PLL
65
+ while( !(AT91C_BASE_PMC->PMC_SR & AT91C_PMC_MCKRDY) );
66
+ #endif
67
+
68
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
69
+ // Init PMC Step 3.
70
+ // Selection of Master Clock MCK (equal to Processor Clock PCK) equal to PLL/2 = 48MHz
71
+ // The PMC_MCKR register must not be programmed in a single write operation (see. Product Errata Sheet)
72
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
73
+ AT91C_BASE_PMC->PMC_MCKR = AT91C_PMC_PRES_CLK_2;
74
+ #ifndef SIMULATE
75
+ // Wait until the master clock is established
76
+ while( !(AT91C_BASE_PMC->PMC_SR & AT91C_PMC_MCKRDY) );
77
+ #endif
78
+
79
+ AT91C_BASE_PMC->PMC_MCKR |= AT91C_PMC_CSS_PLL_CLK;
80
+ #ifndef SIMULATE
81
+ // Wait until the master clock is established
82
+ while( !(AT91C_BASE_PMC->PMC_SR & AT91C_PMC_MCKRDY) );
83
+ #endif
84
+
85
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
86
+ // Disable Watchdog (write once register)
87
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
88
+ AT91C_BASE_WDTC->WDTC_WDMR = AT91C_WDTC_WDDIS;
89
+
90
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
91
+ // Init AIC: assign corresponding handler for each interrupt source
92
+ /////////////////////////////////////////////////////////////////////////////////////////////////////
93
+ AT91C_BASE_AIC->AIC_SVR[0] = (int) AT91F_Default_FIQ_handler ;
94
+ for (i = 1; i < 31; i++) {
95
+ AT91C_BASE_AIC->AIC_SVR[i] = (int) AT91F_Default_IRQ_handler ;
96
+ }
97
+ AT91C_BASE_AIC->AIC_SPU = (unsigned int) AT91F_Spurious_handler;
98
+ }
@@ -0,0 +1,71 @@
1
+ // ----------------------------------------------------------------------------
2
+ // ATMEL Microcontroller Software Support - ROUSSET -
3
+ // ----------------------------------------------------------------------------
4
+ // DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
5
+ // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
6
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
7
+ // DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
8
+ // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
10
+ // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
11
+ // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
12
+ // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
13
+ // EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
+ // ----------------------------------------------------------------------------
15
+ // File Name : SAM7_FLASH.mac
16
+ // Object : Generic Macro File for IAR
17
+ // 1.0 17/Aug/05 FBr : Creation
18
+ // ----------------------------------------------------------------------------
19
+
20
+ /*********************************************************************
21
+ *
22
+ * _InitRSTC()
23
+ *
24
+ * Function description
25
+ * Initializes the RSTC (Reset controller).
26
+ * This makes sense since the default is to not allow user resets, which makes it impossible to
27
+ * apply a second RESET via J-Link
28
+ */
29
+ _InitRSTC() {
30
+ __writeMemory32(0xA5000001, 0xFFFFFD08,"Memory"); // Allow user reset
31
+ }
32
+
33
+ /*********************************************************************
34
+ *
35
+ * _InitPLL()
36
+ * Function description
37
+ * Initializes the PMC.
38
+ * 1. Enable the Main Oscillator
39
+ * 2. Configure PLL to 96MHz
40
+ * 3. Switch Master Clock (MCK) on PLL/2 = 48MHz
41
+ */
42
+ _InitPLL() {
43
+
44
+ __message "Enable Main Oscillator";
45
+ __writeMemory32(0x00000601,0xFFFFFc20,"Memory"); // MOSC
46
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x1) );
47
+
48
+ __message "Set PLL to 96MHz";
49
+ __writeMemory32(0x10191c05,0xFFFFFc2c,"Memory"); // LOCK
50
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x4) );
51
+
52
+ __message "Set Master Clock to 48MHz";
53
+ __writeMemory32(0x00000004,0xFFFFFc30,"Memory"); // MCKRDY
54
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x8) );
55
+ __writeMemory32(0x00000007,0xFFFFFc30,"Memory"); // MCKRDY
56
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x8) );
57
+ }
58
+
59
+ /*********************************************************************
60
+ *
61
+ * execUserReset() : JTAG set initially to Full Speed
62
+ */
63
+ execUserReset() {
64
+ __message "execUserReset()";
65
+ __emulatorSpeed(30000); // Set JTAG speed to 30kHz to make a hardware reset
66
+ __hwReset(0); // Hardware Reset: CPU is automatically halted after the reset (JTAG is already configured to 32kHz)
67
+ _InitPLL(); // Allow to debug at JTAG Full Speed
68
+ _InitRSTC(); // Enable User Reset to allow execUserReset() execution
69
+ __emulatorSpeed(0); // Set JTAG speed to full speed
70
+ }
71
+
@@ -0,0 +1,94 @@
1
+ // ----------------------------------------------------------------------------
2
+ // ATMEL Microcontroller Software Support - ROUSSET -
3
+ // ----------------------------------------------------------------------------
4
+ // DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
5
+ // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
6
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
7
+ // DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
8
+ // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
10
+ // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
11
+ // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
12
+ // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
13
+ // EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
+ // ----------------------------------------------------------------------------
15
+ // File Name : SAM7_RAM.mac
16
+ // Object : Generic Macro File for IAR
17
+ // 1.0 17/Aug/05 FBr : Creation
18
+ // ----------------------------------------------------------------------------
19
+
20
+ /*********************************************************************
21
+ *
22
+ * _MapRAMAt0()
23
+ *
24
+ * Function description
25
+ * Maps RAM at 0.
26
+ */
27
+ _MapRAMAt0(){
28
+ __message "Changing mapping: RAM mapped to 0";
29
+ __writeMemory32(0x00000001,0xFFFFFF00,"Memory");
30
+ }
31
+
32
+ /*********************************************************************
33
+ *
34
+ * _InitRSTC()
35
+ *
36
+ * Function description
37
+ * Initializes the RSTC (Reset controller).
38
+ * This makes sense since the default is to not allow user resets, which makes it impossible to
39
+ * apply a second RESET via J-Link
40
+ */
41
+ _InitRSTC() {
42
+ __writeMemory32(0xA5000001, 0xFFFFFD08,"Memory"); // Allow user reset
43
+ }
44
+
45
+ /*********************************************************************
46
+ *
47
+ * _InitPLL()
48
+ * Function description
49
+ * Initializes the PMC.
50
+ * 1. Enable the Main Oscillator
51
+ * 2. Configure PLL to 96MHz
52
+ * 3. Switch Master Clock (MCK) on PLL/2 = 48MHz
53
+ */
54
+ _InitPLL() {
55
+
56
+ __message "Set Main Oscillator";
57
+ __writeMemory32(0x00004001,0xFFFFFc20,"Memory"); // MOSC
58
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x1) );
59
+
60
+ __message "Set PLL to 96MHz";
61
+ __writeMemory32(0x10483f0e,0xFFFFFc2c,"Memory"); // LOCK
62
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x4) );
63
+
64
+ __message "Set Master Clock to 48MHz";
65
+ __writeMemory32(0x00000004,0xFFFFFc30,"Memory"); // MCKRDY
66
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x8) );
67
+ __writeMemory32(0x00000007,0xFFFFFc30,"Memory"); // MCKRDY
68
+ while( !(__readMemory32(0xFFFFFc68,"Memory") & 0x8) );
69
+ }
70
+
71
+ /*********************************************************************
72
+ *
73
+ * execUserReset() : JTAG set initially to Full Speed
74
+ */
75
+ execUserReset() {
76
+ __message "execUserReset()";
77
+ __emulatorSpeed(30000); // Set JTAG speed to 30kHz to make a hardware reset
78
+ __hwReset(0); // Hardware Reset: CPU is automatically halted after the reset
79
+ _InitPLL(); // Allow to debug at JTAG Full Speed
80
+ _MapRAMAt0(); // Remap RAM to address 0
81
+ __emulatorSpeed(0); // Set JTAG speed to full speed
82
+ }
83
+
84
+ /*********************************************************************
85
+ *
86
+ * execUserPreload() : JTAG set initially to 32kHz
87
+ */
88
+ execUserPreload() {
89
+ __message "execUserPreload()";
90
+ __hwReset(0); // Hardware Reset: CPU is automatically halted after the reset (JTAG is already configured to 32kHz)
91
+ _InitPLL(); // Allow to load Code at JTAG Full Speed
92
+ _MapRAMAt0(); // Remap RAM to address 0
93
+ _InitRSTC(); // Enable User Reset to allow execUserReset() execution
94
+ }
@@ -0,0 +1,67 @@
1
+ //=========================================================
2
+ // Simulation setup file for esc07_demo project
3
+ //=========================================================
4
+
5
+ __var _timer0_interrupt_ID;
6
+
7
+ irqBreak()
8
+ {
9
+ __var __AIC_SMR;
10
+ __var __AIC_IECR;
11
+ __var __AIC_IVR;
12
+
13
+ // read AIC_IECR instead, since not fully supported by simulator
14
+ __AIC_IECR = __readMemory32(0xFFFFF120, "Memory");
15
+ if(__AIC_IECR & 0x1000)
16
+ {
17
+ __AIC_SMR = __readMemory32(0xFFFFF060, "Memory");
18
+ __AIC_IVR = __readMemory32(0xFFFFF0B0, "Memory"); //AIC_IVR = AIC_SVR[x]
19
+ __writeMemory32(__AIC_IVR, 0xFFFFF100, "Memory"); //AIC_IVR
20
+ __writeMemory32(0x1000, 0xFFFFF10C, "Memory"); //AIC_IPR
21
+ __writeMemory32(0x2, 0xFFFFF114, "Memory"); //AIC_CISR
22
+ }
23
+
24
+ return 0;
25
+ }
26
+
27
+ setupProcessorRegisters()
28
+ {
29
+ // Write TC0_SR.CPCS with correct status for ISR (Clock enabled; RC Compare Flag = TRUE)
30
+ __writeMemory32(0x00010010, 0xfffa0020, "Memory");
31
+
32
+ // Set TX ready flag in USART0 status register
33
+ // USART0_BASE->US_CSR = AT91C_US_TXRDY
34
+ __writeMemory32(0x00000002, 0xfffc0014, "Memory");
35
+ }
36
+
37
+ configureTimer0Interrupt()
38
+ {
39
+ __var _master_clock_frequency;
40
+ __var _timer0_period_cycles;
41
+
42
+ // Calculate timer0 frequency in master clock cycles
43
+ _master_clock_frequency = 48054857;
44
+ _timer0_period_cycles = _master_clock_frequency / 100;
45
+ if((_master_clock_frequency % 100) >= 50)
46
+ {
47
+ _timer0_period_cycles++;
48
+ }
49
+
50
+ __cancelAllInterrupts();
51
+ __enableInterrupts();
52
+
53
+ _timer0_interrupt_ID = __orderInterrupt("IRQ", _timer0_period_cycles, _timer0_period_cycles, 0, 0, 0, 100);
54
+
55
+ if(-1 == _timer0_interrupt_ID)
56
+ {
57
+ __message "ERROR: failed to order timer 0 interrupt";
58
+ }
59
+
60
+ __setCodeBreak("0x18", 0, "irqBreak()", "TRUE", "");
61
+ }
62
+
63
+ execUserReset()
64
+ {
65
+ setupProcessorRegisters();
66
+ configureTimer0Interrupt();
67
+ }
@@ -0,0 +1,43 @@
1
+ /*###ICF### Section handled by ICF editor, don't touch! ****/
2
+ /*-Editor annotation file-*/
3
+ /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
4
+ /*-Specials-*/
5
+ define symbol __ICFEDIT_intvec_start__ = 0x00000000;
6
+ /*-Memory Regions-*/
7
+ define symbol __ICFEDIT_region_ROM_start__ = 0x00000100;
8
+ define symbol __ICFEDIT_region_ROM_end__ = 0x0003FFFF;
9
+ define symbol __ICFEDIT_region_RAM_start__ = 0x00200000;
10
+ define symbol __ICFEDIT_region_RAM_end__ = 0x0020FFFF;
11
+ /*-Sizes-*/
12
+ define symbol __ICFEDIT_size_cstack__ = 0x400;
13
+ define symbol __ICFEDIT_size_svcstack__ = 0x100;
14
+ define symbol __ICFEDIT_size_irqstack__ = 0x100;
15
+ define symbol __ICFEDIT_size_fiqstack__ = 0x40;
16
+ define symbol __ICFEDIT_size_undstack__ = 0x40;
17
+ define symbol __ICFEDIT_size_abtstack__ = 0x40;
18
+ define symbol __ICFEDIT_size_heap__ = 0x400;
19
+ /**** End of ICF editor section. ###ICF###*/
20
+
21
+
22
+ define memory mem with size = 4G;
23
+ define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
24
+ define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
25
+
26
+ define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
27
+ define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
28
+ define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
29
+ define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
30
+ define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
31
+ define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
32
+ define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
33
+
34
+ initialize by copy { readwrite };
35
+ do not initialize { section .noinit };
36
+
37
+ place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
38
+
39
+ place in ROM_region { readonly };
40
+ place in RAM_region { readwrite,
41
+ block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
42
+ block UND_STACK, block ABT_STACK, block HEAP };
43
+
@@ -0,0 +1,42 @@
1
+ /*###ICF### Section handled by ICF editor, don't touch! ****/
2
+ /*-Editor annotation file-*/
3
+ /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
4
+ /*-Specials-*/
5
+ define symbol __ICFEDIT_intvec_start__ = 0x00000000;
6
+ /*-Memory Regions-*/
7
+ define symbol __ICFEDIT_region_ROM_start__ = 0x00;
8
+ define symbol __ICFEDIT_region_ROM_end__ = 0x00;
9
+ define symbol __ICFEDIT_region_RAM_start__ = 0x00000100;
10
+ define symbol __ICFEDIT_region_RAM_end__ = 0x0000FFFF;
11
+ /*-Sizes-*/
12
+ define symbol __ICFEDIT_size_cstack__ = 0x400;
13
+ define symbol __ICFEDIT_size_svcstack__ = 0x100;
14
+ define symbol __ICFEDIT_size_irqstack__ = 0x100;
15
+ define symbol __ICFEDIT_size_fiqstack__ = 0x40;
16
+ define symbol __ICFEDIT_size_undstack__ = 0x40;
17
+ define symbol __ICFEDIT_size_abtstack__ = 0x40;
18
+ define symbol __ICFEDIT_size_heap__ = 0x800;
19
+ /**** End of ICF editor section. ###ICF###*/
20
+
21
+
22
+ define memory mem with size = 4G;
23
+ define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
24
+
25
+ define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
26
+ define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
27
+ define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
28
+ define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
29
+ define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
30
+ define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
31
+ define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
32
+
33
+ initialize by copy { readwrite };
34
+ do not initialize { section .noinit };
35
+
36
+ place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
37
+
38
+ place in RAM_region { readonly };
39
+ place in RAM_region { readwrite,
40
+ block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
41
+ block UND_STACK, block ABT_STACK, block HEAP };
42
+
@@ -0,0 +1,4204 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+
3
+ <project>
4
+ <fileVersion>2</fileVersion>
5
+ <fileChecksum>3270150602</fileChecksum>
6
+ <configuration>
7
+ <name>Binary</name>
8
+ <outputs>
9
+ <file>$PROJ_DIR$\Binary\Obj\TimerConductor.o</file>
10
+ <file>$TOOLKIT_DIR$\inc\DLib_Defaults.h</file>
11
+ <file>$TOOLKIT_DIR$\inc\DLib_Threads.h</file>
12
+ <file>$PROJ_DIR$\Binary\Obj\TimerConductor.pbi</file>
13
+ <file>$PROJ_DIR$\Binary\List\TimerInterruptConfigurator.lst</file>
14
+ <file>$PROJ_DIR$\Binary\Obj\AdcTemperatureSensor.o</file>
15
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.h</file>
16
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerModel.h</file>
17
+ <file>$TOOLKIT_DIR$\inc\ymath.h</file>
18
+ <file>$PROJ_DIR$\Binary\Obj\Cstartup_SAM7.o</file>
19
+ <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>
20
+ <file>$TOOLKIT_DIR$\inc\math.h</file>
21
+ <file>$PROJ_DIR$\Binary\Exe\cmock_demo.hex</file>
22
+ <file>$PROJ_DIR$\Binary\Obj\UsartPutChar.pbi</file>
23
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.h</file>
24
+ <file>$PROJ_DIR$\Binary\Obj\AdcConductor.pbi</file>
25
+ <file>$PROJ_DIR$\Binary\List\TimerConfigurator.lst</file>
26
+ <file>$PROJ_DIR$\Binary\List\TaskScheduler.lst</file>
27
+ <file>$PROJ_DIR$\Binary\List\TemperatureCalculator.lst</file>
28
+ <file>$PROJ_DIR$\Binary\List\UsartConductor.lst</file>
29
+ <file>$PROJ_DIR$\Binary\Obj\UsartConductor.o</file>
30
+ <file>$PROJ_DIR$\Binary\Obj\TimerModel.o</file>
31
+ <file>$PROJ_DIR$\Binary\Obj\UsartConfigurator.pbi</file>
32
+ <file>$PROJ_DIR$\Binary\Obj\TimerInterruptConfigurator.o</file>
33
+ <file>$PROJ_DIR$\Binary\List\Cstartup.lst</file>
34
+ <file>$PROJ_DIR$\..\..\test\system\src\Executor.h</file>
35
+ <file>$PROJ_DIR$\incIAR\project.h</file>
36
+ <file>$PROJ_DIR$\Binary\Obj\Executor.pbi</file>
37
+ <file>$PROJ_DIR$\Binary\List\TimerConductor.lst</file>
38
+ <file>$PROJ_DIR$\Binary\Obj\TimerModel.pbi</file>
39
+ <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>
40
+ <file>$PROJ_DIR$\Binary\Obj\Model.pbi</file>
41
+ <file>$PROJ_DIR$\Binary\Obj\UsartBaudRateRegisterCalculator.o</file>
42
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.h</file>
43
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.h</file>
44
+ <file>$PROJ_DIR$\Binary\Obj\TaskScheduler.pbi</file>
45
+ <file>$PROJ_DIR$\Binary\Obj\Executor.o</file>
46
+ <file>$PROJ_DIR$\Binary\Obj\TemperatureCalculator.o</file>
47
+ <file>$PROJ_DIR$\Binary\Obj\Cstartup_SAM7.pbi</file>
48
+ <file>$PROJ_DIR$\..\..\test\system\src\AT91SAM7X256.h</file>
49
+ <file>$PROJ_DIR$\Binary\Obj\IntrinsicsWrapper.pbi</file>
50
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.h</file>
51
+ <file>$PROJ_DIR$\Binary\List\Main.lst</file>
52
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.h</file>
53
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.h</file>
54
+ <file>$PROJ_DIR$\Binary\List\TimerHardware.lst</file>
55
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.h</file>
56
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.h</file>
57
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.h</file>
58
+ <file>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.h</file>
59
+ <file>$PROJ_DIR$\Binary\List\UsartTransmitBufferStatus.lst</file>
60
+ <file>$PROJ_DIR$\Binary\Obj\AdcTemperatureSensor.pbi</file>
61
+ <file>$PROJ_DIR$\Binary\Obj\Main.pbi</file>
62
+ <file>$PROJ_DIR$\Binary\List\UsartModel.lst</file>
63
+ <file>$PROJ_DIR$\Binary\Obj\TemperatureFilter.pbi</file>
64
+ <file>$PROJ_DIR$\Binary\List\AdcHardware.lst</file>
65
+ <file>$PROJ_DIR$\Binary\List\AdcTemperatureSensor.lst</file>
66
+ <file>$PROJ_DIR$\Binary\Obj\UsartTransmitBufferStatus.pbi</file>
67
+ <file>$PROJ_DIR$\Binary\Obj\AdcHardware.pbi</file>
68
+ <file>$PROJ_DIR$\Binary\Obj\TemperatureCalculator.pbi</file>
69
+ <file>$TOOLKIT_DIR$\lib\dl4t_tl_in.a</file>
70
+ <file>$TOOLKIT_DIR$\inc\ycheck.h</file>
71
+ <file>$PROJ_DIR$\..\..\test\system\src\ModelConfig.h</file>
72
+ <file>$PROJ_DIR$\Binary\List\AdcConductor.lst</file>
73
+ <file>$PROJ_DIR$\Binary\List\AdcHardwareConfigurator.lst</file>
74
+ <file>$PROJ_DIR$\Binary\Obj\TimerHardware.o</file>
75
+ <file>$PROJ_DIR$\Binary\Obj\TimerInterruptHandler.o</file>
76
+ <file>$TOOLKIT_DIR$\inc\stdio.h</file>
77
+ <file>$PROJ_DIR$\Binary\Obj\UsartHardware.o</file>
78
+ <file>$PROJ_DIR$\Binary\Obj\TimerInterruptHandler.pbi</file>
79
+ <file>$PROJ_DIR$\Binary\Obj\UsartModel.o</file>
80
+ <file>$TOOLKIT_DIR$\inc\DLib_Config_Normal.h</file>
81
+ <file>$PROJ_DIR$\Binary\List\TemperatureFilter.lst</file>
82
+ <file>$PROJ_DIR$\Binary\List\UsartPutChar.lst</file>
83
+ <file>$PROJ_DIR$\Binary\Obj\UsartConfigurator.o</file>
84
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConductor.h</file>
85
+ <file>$PROJ_DIR$\Binary\List\AdcModel.lst</file>
86
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.h</file>
87
+ <file>$PROJ_DIR$\..\..\test\system\src\Types.h</file>
88
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.h</file>
89
+ <file>$TOOLKIT_DIR$\inc\yvals.h</file>
90
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartModel.h</file>
91
+ <file>$PROJ_DIR$\Binary\Obj\UsartTransmitBufferStatus.o</file>
92
+ <file>$TOOLKIT_DIR$\lib\rt4t_al.a</file>
93
+ <file>$PROJ_DIR$\Binary\List\UsartHardware.lst</file>
94
+ <file>$TOOLKIT_DIR$\inc\ysizet.h</file>
95
+ <file>$PROJ_DIR$\Binary\Obj\AdcModel.o</file>
96
+ <file>$PROJ_DIR$\Binary\Obj\AdcConductor.o</file>
97
+ <file>$PROJ_DIR$\Binary\Exe\cmock_demo.out</file>
98
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcConductor.h</file>
99
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.h</file>
100
+ <file>$PROJ_DIR$\Binary\Obj\UsartModel.pbi</file>
101
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerHardware.h</file>
102
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcModel.h</file>
103
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardware.h</file>
104
+ <file>$PROJ_DIR$\Binary\List\UsartBaudRateRegisterCalculator.lst</file>
105
+ <file>$PROJ_DIR$\..\..\test\system\src\Model.h</file>
106
+ <file>$TOOLKIT_DIR$\lib\shs_l.a</file>
107
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.h</file>
108
+ <file>$PROJ_DIR$\Binary\Obj\TimerInterruptConfigurator.pbi</file>
109
+ <file>$PROJ_DIR$\Binary\List\UsartConfigurator.lst</file>
110
+ <file>$PROJ_DIR$\Binary\List\TimerModel.lst</file>
111
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.h</file>
112
+ <file>$PROJ_DIR$\Binary\Obj\IntrinsicsWrapper.o</file>
113
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.h</file>
114
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.h</file>
115
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.c</file>
116
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.h</file>
117
+ <file>$PROJ_DIR$\Binary\Obj\AdcHardwareConfigurator.o</file>
118
+ <file>$TOOLKIT_DIR$\inc\xencoding_limits.h</file>
119
+ <file>$PROJ_DIR$\..\..\test\system\src\Main.c</file>
120
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.c</file>
121
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcConductor.c</file>
122
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardware.c</file>
123
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.h</file>
124
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcModel.c</file>
125
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.h</file>
126
+ <file>$PROJ_DIR$\..\..\test\system\src\Executor.c</file>
127
+ <file>$PROJ_DIR$\..\..\examples\src\Model.h</file>
128
+ <file>$PROJ_DIR$\..\..\test\system\src\Model.c</file>
129
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.h</file>
130
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.h</file>
131
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.h</file>
132
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.c</file>
133
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.c</file>
134
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.c</file>
135
+ <file>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.c</file>
136
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.c</file>
137
+ <file>$PROJ_DIR$\Binary\Obj\AdcModel.pbi</file>
138
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConductor.c</file>
139
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.c</file>
140
+ <file>$PROJ_DIR$\Binary\Obj\AdcHardware.o</file>
141
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.c</file>
142
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerHardware.c</file>
143
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.c</file>
144
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.h</file>
145
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerModel.c</file>
146
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.c</file>
147
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConductor.c</file>
148
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.h</file>
149
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.h</file>
150
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartHardware.c</file>
151
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartModel.c</file>
152
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.c</file>
153
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.h</file>
154
+ <file>$PROJ_DIR$\..\..\examples\src\ModelConfig.h</file>
155
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.h</file>
156
+ <file>$PROJ_DIR$\..\..\examples\src\Types.h</file>
157
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.h</file>
158
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.h</file>
159
+ <file>$PROJ_DIR$\..\..\examples\src\AT91SAM7X256.h</file>
160
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.h</file>
161
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.h</file>
162
+ <file>$PROJ_DIR$\Binary\Obj\TimerHardware.pbi</file>
163
+ <file>$PROJ_DIR$\Binary\Obj\TimerConfigurator.o</file>
164
+ <file>$PROJ_DIR$\Binary\List\Model.lst</file>
165
+ <file>$PROJ_DIR$\Binary\Obj\Cstartup.o</file>
166
+ <file>$PROJ_DIR$\Binary\Obj\TaskScheduler.o</file>
167
+ <file>$PROJ_DIR$\Binary\Obj\TemperatureFilter.o</file>
168
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConductor.h</file>
169
+ <file>$PROJ_DIR$\Binary\Obj\Model.o</file>
170
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.h</file>
171
+ <file>$PROJ_DIR$\Binary\Obj\UsartHardware.pbi</file>
172
+ <file>$PROJ_DIR$\Binary\List\TimerInterruptHandler.lst</file>
173
+ <file>$PROJ_DIR$\Binary\Obj\cmock_demo.pbd</file>
174
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartHardware.h</file>
175
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.h</file>
176
+ <file>$PROJ_DIR$\Binary\Obj\UsartConductor.pbi</file>
177
+ <file>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</file>
178
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</file>
179
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</file>
180
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</file>
181
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.c</file>
182
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</file>
183
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.c</file>
184
+ <file>$PROJ_DIR$\..\..\examples\src\Main.c</file>
185
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</file>
186
+ <file>$PROJ_DIR$\..\..\examples\src\Model.c</file>
187
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</file>
188
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_FLASH.icf</file>
189
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</file>
190
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</file>
191
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</file>
192
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</file>
193
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</file>
194
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</file>
195
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</file>
196
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.c</file>
197
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.c</file>
198
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</file>
199
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</file>
200
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</file>
201
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</file>
202
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</file>
203
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</file>
204
+ <file>$PROJ_DIR$\srcIAR\Cstartup.s</file>
205
+ <file>$PROJ_DIR$\Binary\Obj\UsartPutChar.o</file>
206
+ <file>$PROJ_DIR$\Binary\Obj\TimerConfigurator.pbi</file>
207
+ <file>$PROJ_DIR$\Binary\Obj\Main.o</file>
208
+ <file>$PROJ_DIR$\Binary\List\Executor.lst</file>
209
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X-EK.h</file>
210
+ <file>$PROJ_DIR$\incIAR\lib_AT91SAM7X256.h</file>
211
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X256_inc.h</file>
212
+ <file>$PROJ_DIR$\Binary\Obj\AdcHardwareConfigurator.pbi</file>
213
+ <file>$PROJ_DIR$\Binary\Obj\UsartBaudRateRegisterCalculator.pbi</file>
214
+ </outputs>
215
+ <file>
216
+ <name>[ROOT_NODE]</name>
217
+ <outputs>
218
+ <tool>
219
+ <name>ILINK</name>
220
+ <file> 88</file>
221
+ </tool>
222
+ </outputs>
223
+ </file>
224
+ <file>
225
+ <name>$PROJ_DIR$\Binary\Exe\cmock_demo.out</name>
226
+ <outputs>
227
+ <tool>
228
+ <name>OBJCOPY</name>
229
+ <file> 12</file>
230
+ </tool>
231
+ </outputs>
232
+ <inputs>
233
+ <tool>
234
+ <name>ILINK</name>
235
+ <file> 179 87 131 108 86 5 156 9 36 103 198 160 157 37 158 0 154 65 23 66 21 32 20 74 68 70 196 82 97 83 60</file>
236
+ </tool>
237
+ </inputs>
238
+ </file>
239
+ <file>
240
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.c</name>
241
+ <outputs>
242
+ <tool>
243
+ <name>BICOMP</name>
244
+ <file> 51</file>
245
+ </tool>
246
+ <tool>
247
+ <name>ICCARM</name>
248
+ <file> 56 5</file>
249
+ </tool>
250
+ </outputs>
251
+ <inputs>
252
+ <tool>
253
+ <name>BICOMP</name>
254
+ <file> 78 39 90</file>
255
+ </tool>
256
+ <tool>
257
+ <name>ICCARM</name>
258
+ <file> 78 39 90</file>
259
+ </tool>
260
+ </inputs>
261
+ </file>
262
+ <file>
263
+ <name>$PROJ_DIR$\..\..\test\system\src\Main.c</name>
264
+ <outputs>
265
+ <tool>
266
+ <name>BICOMP</name>
267
+ <file> 52</file>
268
+ </tool>
269
+ <tool>
270
+ <name>ICCARM</name>
271
+ <file> 42 198</file>
272
+ </tool>
273
+ </outputs>
274
+ <inputs>
275
+ <tool>
276
+ <name>BICOMP</name>
277
+ <file> 78 39 25 96 49 47 77 75 165 98 48 81 46 161 159 92 79 6 14 7 89 94 166 90 93</file>
278
+ </tool>
279
+ <tool>
280
+ <name>ICCARM</name>
281
+ <file> 78 39 25 96 49 47 77 75 165 98 48 81 46 161 159 92 79 6 14 7 89 94 166 90 93</file>
282
+ </tool>
283
+ </inputs>
284
+ </file>
285
+ <file>
286
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.c</name>
287
+ <outputs>
288
+ <tool>
289
+ <name>BICOMP</name>
290
+ <file> 203</file>
291
+ </tool>
292
+ <tool>
293
+ <name>ICCARM</name>
294
+ <file> 64 108</file>
295
+ </tool>
296
+ </outputs>
297
+ <inputs>
298
+ <tool>
299
+ <name>BICOMP</name>
300
+ <file> 78 39 166 62</file>
301
+ </tool>
302
+ <tool>
303
+ <name>ICCARM</name>
304
+ <file> 78 39 166 62</file>
305
+ </tool>
306
+ </inputs>
307
+ </file>
308
+ <file>
309
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcConductor.c</name>
310
+ <outputs>
311
+ <tool>
312
+ <name>BICOMP</name>
313
+ <file> 15</file>
314
+ </tool>
315
+ <tool>
316
+ <name>ICCARM</name>
317
+ <file> 63 87</file>
318
+ </tool>
319
+ </outputs>
320
+ <inputs>
321
+ <tool>
322
+ <name>BICOMP</name>
323
+ <file> 78 39 89 93 94</file>
324
+ </tool>
325
+ <tool>
326
+ <name>ICCARM</name>
327
+ <file> 78 39 89 93 94</file>
328
+ </tool>
329
+ </inputs>
330
+ </file>
331
+ <file>
332
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcHardware.c</name>
333
+ <outputs>
334
+ <tool>
335
+ <name>BICOMP</name>
336
+ <file> 58</file>
337
+ </tool>
338
+ <tool>
339
+ <name>ICCARM</name>
340
+ <file> 55 131</file>
341
+ </tool>
342
+ </outputs>
343
+ <inputs>
344
+ <tool>
345
+ <name>BICOMP</name>
346
+ <file> 78 39 94 166 90</file>
347
+ </tool>
348
+ <tool>
349
+ <name>ICCARM</name>
350
+ <file> 78 39 94 166 90</file>
351
+ </tool>
352
+ </inputs>
353
+ </file>
354
+ <file>
355
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcModel.c</name>
356
+ <outputs>
357
+ <tool>
358
+ <name>BICOMP</name>
359
+ <file> 128</file>
360
+ </tool>
361
+ <tool>
362
+ <name>ICCARM</name>
363
+ <file> 76 86</file>
364
+ </tool>
365
+ </outputs>
366
+ <inputs>
367
+ <tool>
368
+ <name>BICOMP</name>
369
+ <file> 78 39 93 49 47 77</file>
370
+ </tool>
371
+ <tool>
372
+ <name>ICCARM</name>
373
+ <file> 78 39 93 49 47 77</file>
374
+ </tool>
375
+ </inputs>
376
+ </file>
377
+ <file>
378
+ <name>$PROJ_DIR$\..\..\test\system\src\Executor.c</name>
379
+ <outputs>
380
+ <tool>
381
+ <name>BICOMP</name>
382
+ <file> 27</file>
383
+ </tool>
384
+ <tool>
385
+ <name>ICCARM</name>
386
+ <file> 199 36</file>
387
+ </tool>
388
+ </outputs>
389
+ <inputs>
390
+ <tool>
391
+ <name>BICOMP</name>
392
+ <file> 78 39 25 96 75 159 89 30 61</file>
393
+ </tool>
394
+ <tool>
395
+ <name>ICCARM</name>
396
+ <file> 78 39 25 96 75 159 89 30 61</file>
397
+ </tool>
398
+ </inputs>
399
+ </file>
400
+ <file>
401
+ <name>$PROJ_DIR$\..\..\test\system\src\Model.c</name>
402
+ <outputs>
403
+ <tool>
404
+ <name>BICOMP</name>
405
+ <file> 31</file>
406
+ </tool>
407
+ <tool>
408
+ <name>ICCARM</name>
409
+ <file> 155 160</file>
410
+ </tool>
411
+ </outputs>
412
+ <inputs>
413
+ <tool>
414
+ <name>BICOMP</name>
415
+ <file> 96 78 39 49 77</file>
416
+ </tool>
417
+ <tool>
418
+ <name>ICCARM</name>
419
+ <file> 96 78 39 49 77</file>
420
+ </tool>
421
+ </inputs>
422
+ </file>
423
+ <file>
424
+ <name>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.c</name>
425
+ <outputs>
426
+ <tool>
427
+ <name>BICOMP</name>
428
+ <file> 54</file>
429
+ </tool>
430
+ <tool>
431
+ <name>ICCARM</name>
432
+ <file> 72 158</file>
433
+ </tool>
434
+ </outputs>
435
+ <inputs>
436
+ <tool>
437
+ <name>BICOMP</name>
438
+ <file> 78 39 77 11 61 8 80 1 10 109 2</file>
439
+ </tool>
440
+ <tool>
441
+ <name>ICCARM</name>
442
+ <file> 78 39 77 11 61 8 80 1 71 10 109 2</file>
443
+ </tool>
444
+ </inputs>
445
+ </file>
446
+ <file>
447
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.c</name>
448
+ <outputs>
449
+ <tool>
450
+ <name>BICOMP</name>
451
+ <file> 197</file>
452
+ </tool>
453
+ <tool>
454
+ <name>ICCARM</name>
455
+ <file> 16 154</file>
456
+ </tool>
457
+ </outputs>
458
+ <inputs>
459
+ <tool>
460
+ <name>BICOMP</name>
461
+ <file> 78 39 79 6</file>
462
+ </tool>
463
+ <tool>
464
+ <name>ICCARM</name>
465
+ <file> 78 39 79 6</file>
466
+ </tool>
467
+ </inputs>
468
+ </file>
469
+ <file>
470
+ <name>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.c</name>
471
+ <outputs>
472
+ <tool>
473
+ <name>BICOMP</name>
474
+ <file> 59</file>
475
+ </tool>
476
+ <tool>
477
+ <name>ICCARM</name>
478
+ <file> 18 37</file>
479
+ </tool>
480
+ </outputs>
481
+ <inputs>
482
+ <tool>
483
+ <name>BICOMP</name>
484
+ <file> 78 39 47 11 61 8 80 1 10 109 2</file>
485
+ </tool>
486
+ <tool>
487
+ <name>ICCARM</name>
488
+ <file> 78 39 47 11 61 8 80 1 71 10 109 2</file>
489
+ </tool>
490
+ </inputs>
491
+ </file>
492
+ <file>
493
+ <name>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.c</name>
494
+ <outputs>
495
+ <tool>
496
+ <name>BICOMP</name>
497
+ <file> 35</file>
498
+ </tool>
499
+ <tool>
500
+ <name>ICCARM</name>
501
+ <file> 17 157</file>
502
+ </tool>
503
+ </outputs>
504
+ <inputs>
505
+ <tool>
506
+ <name>BICOMP</name>
507
+ <file> 78 39 49</file>
508
+ </tool>
509
+ <tool>
510
+ <name>ICCARM</name>
511
+ <file> 78 39 49</file>
512
+ </tool>
513
+ </inputs>
514
+ </file>
515
+ <file>
516
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.c</name>
517
+ <outputs>
518
+ <tool>
519
+ <name>BICOMP</name>
520
+ <file> 99</file>
521
+ </tool>
522
+ <tool>
523
+ <name>ICCARM</name>
524
+ <file> 4 23</file>
525
+ </tool>
526
+ </outputs>
527
+ <inputs>
528
+ <tool>
529
+ <name>BICOMP</name>
530
+ <file> 78 39 6 14</file>
531
+ </tool>
532
+ <tool>
533
+ <name>ICCARM</name>
534
+ <file> 78 39 6 14</file>
535
+ </tool>
536
+ </inputs>
537
+ </file>
538
+ <file>
539
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerConductor.c</name>
540
+ <outputs>
541
+ <tool>
542
+ <name>BICOMP</name>
543
+ <file> 3</file>
544
+ </tool>
545
+ <tool>
546
+ <name>ICCARM</name>
547
+ <file> 28 0</file>
548
+ </tool>
549
+ </outputs>
550
+ <inputs>
551
+ <tool>
552
+ <name>BICOMP</name>
553
+ <file> 78 39 159 7 92 14</file>
554
+ </tool>
555
+ <tool>
556
+ <name>ICCARM</name>
557
+ <file> 78 39 159 7 92 14</file>
558
+ </tool>
559
+ </inputs>
560
+ </file>
561
+ <file>
562
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.c</name>
563
+ <outputs>
564
+ <tool>
565
+ <name>BICOMP</name>
566
+ <file> 69</file>
567
+ </tool>
568
+ <tool>
569
+ <name>ICCARM</name>
570
+ <file> 163 66</file>
571
+ </tool>
572
+ </outputs>
573
+ <inputs>
574
+ <tool>
575
+ <name>BICOMP</name>
576
+ <file> 78 39 14 6</file>
577
+ </tool>
578
+ <tool>
579
+ <name>ICCARM</name>
580
+ <file> 78 39 14 6</file>
581
+ </tool>
582
+ </inputs>
583
+ </file>
584
+ <file>
585
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.c</name>
586
+ <outputs>
587
+ <tool>
588
+ <name>BICOMP</name>
589
+ <file> 22</file>
590
+ </tool>
591
+ <tool>
592
+ <name>ICCARM</name>
593
+ <file> 100 74</file>
594
+ </tool>
595
+ </outputs>
596
+ <inputs>
597
+ <tool>
598
+ <name>BICOMP</name>
599
+ <file> 78 39 98</file>
600
+ </tool>
601
+ <tool>
602
+ <name>ICCARM</name>
603
+ <file> 78 39 98</file>
604
+ </tool>
605
+ </inputs>
606
+ </file>
607
+ <file>
608
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerHardware.c</name>
609
+ <outputs>
610
+ <tool>
611
+ <name>BICOMP</name>
612
+ <file> 153</file>
613
+ </tool>
614
+ <tool>
615
+ <name>ICCARM</name>
616
+ <file> 45 65</file>
617
+ </tool>
618
+ </outputs>
619
+ <inputs>
620
+ <tool>
621
+ <name>BICOMP</name>
622
+ <file> 78 39 92 79</file>
623
+ </tool>
624
+ <tool>
625
+ <name>ICCARM</name>
626
+ <file> 78 39 92 79</file>
627
+ </tool>
628
+ </inputs>
629
+ </file>
630
+ <file>
631
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.c</name>
632
+ <outputs>
633
+ <tool>
634
+ <name>BICOMP</name>
635
+ <file> 57</file>
636
+ </tool>
637
+ <tool>
638
+ <name>ICCARM</name>
639
+ <file> 50 82</file>
640
+ </tool>
641
+ </outputs>
642
+ <inputs>
643
+ <tool>
644
+ <name>BICOMP</name>
645
+ <file> 78 39 161</file>
646
+ </tool>
647
+ <tool>
648
+ <name>ICCARM</name>
649
+ <file> 78 39 161</file>
650
+ </tool>
651
+ </inputs>
652
+ </file>
653
+ <file>
654
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerModel.c</name>
655
+ <outputs>
656
+ <tool>
657
+ <name>BICOMP</name>
658
+ <file> 29</file>
659
+ </tool>
660
+ <tool>
661
+ <name>ICCARM</name>
662
+ <file> 101 21</file>
663
+ </tool>
664
+ </outputs>
665
+ <inputs>
666
+ <tool>
667
+ <name>BICOMP</name>
668
+ <file> 78 39 7 49</file>
669
+ </tool>
670
+ <tool>
671
+ <name>ICCARM</name>
672
+ <file> 78 39 7 49</file>
673
+ </tool>
674
+ </inputs>
675
+ </file>
676
+ <file>
677
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.c</name>
678
+ <outputs>
679
+ <tool>
680
+ <name>BICOMP</name>
681
+ <file> 204</file>
682
+ </tool>
683
+ <tool>
684
+ <name>ICCARM</name>
685
+ <file> 95 32</file>
686
+ </tool>
687
+ </outputs>
688
+ <inputs>
689
+ <tool>
690
+ <name>BICOMP</name>
691
+ <file> 78 39 46</file>
692
+ </tool>
693
+ <tool>
694
+ <name>ICCARM</name>
695
+ <file> 78 39 46</file>
696
+ </tool>
697
+ </inputs>
698
+ </file>
699
+ <file>
700
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartConductor.c</name>
701
+ <outputs>
702
+ <tool>
703
+ <name>BICOMP</name>
704
+ <file> 167</file>
705
+ </tool>
706
+ <tool>
707
+ <name>ICCARM</name>
708
+ <file> 19 20</file>
709
+ </tool>
710
+ </outputs>
711
+ <inputs>
712
+ <tool>
713
+ <name>BICOMP</name>
714
+ <file> 78 39 75 165 81 49</file>
715
+ </tool>
716
+ <tool>
717
+ <name>ICCARM</name>
718
+ <file> 78 39 75 165 81 49</file>
719
+ </tool>
720
+ </inputs>
721
+ </file>
722
+ <file>
723
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartHardware.c</name>
724
+ <outputs>
725
+ <tool>
726
+ <name>BICOMP</name>
727
+ <file> 162</file>
728
+ </tool>
729
+ <tool>
730
+ <name>ICCARM</name>
731
+ <file> 84 68</file>
732
+ </tool>
733
+ </outputs>
734
+ <inputs>
735
+ <tool>
736
+ <name>BICOMP</name>
737
+ <file> 78 39 165 98 48</file>
738
+ </tool>
739
+ <tool>
740
+ <name>ICCARM</name>
741
+ <file> 78 39 165 98 48</file>
742
+ </tool>
743
+ </inputs>
744
+ </file>
745
+ <file>
746
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartModel.c</name>
747
+ <outputs>
748
+ <tool>
749
+ <name>BICOMP</name>
750
+ <file> 91</file>
751
+ </tool>
752
+ <tool>
753
+ <name>ICCARM</name>
754
+ <file> 53 70</file>
755
+ </tool>
756
+ </outputs>
757
+ <inputs>
758
+ <tool>
759
+ <name>BICOMP</name>
760
+ <file> 78 39 81 62 46 77 67 61 80 1 10 109 2 85 11 8</file>
761
+ </tool>
762
+ <tool>
763
+ <name>ICCARM</name>
764
+ <file> 78 39 81 62 46 77 67 61 80 1 71 10 109 2 85 11 8</file>
765
+ </tool>
766
+ </inputs>
767
+ </file>
768
+ <file>
769
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.c</name>
770
+ <outputs>
771
+ <tool>
772
+ <name>BICOMP</name>
773
+ <file> 13</file>
774
+ </tool>
775
+ <tool>
776
+ <name>ICCARM</name>
777
+ <file> 73 196</file>
778
+ </tool>
779
+ </outputs>
780
+ <inputs>
781
+ <tool>
782
+ <name>BICOMP</name>
783
+ <file> 78 39 48 161</file>
784
+ </tool>
785
+ <tool>
786
+ <name>ICCARM</name>
787
+ <file> 78 39 48 161</file>
788
+ </tool>
789
+ </inputs>
790
+ </file>
791
+ <file>
792
+ <name>$PROJ_DIR$\Binary\Obj\cmock_demo.pbd</name>
793
+ <inputs>
794
+ <tool>
795
+ <name>BILINK</name>
796
+ <file> 15 58 203 128 51 38 27 40 52 31 35 59 54 3 197 153 99 69 29 204 167 22 162 91 13 57</file>
797
+ </tool>
798
+ </inputs>
799
+ </file>
800
+ <file>
801
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
802
+ <outputs>
803
+ <tool>
804
+ <name>BICOMP</name>
805
+ <file> 38</file>
806
+ </tool>
807
+ </outputs>
808
+ <inputs>
809
+ <tool>
810
+ <name>BICOMP</name>
811
+ <file> 26 30 61 200 150 201</file>
812
+ </tool>
813
+ </inputs>
814
+ </file>
815
+ <file>
816
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
817
+ <outputs>
818
+ <tool>
819
+ <name>BICOMP</name>
820
+ <file> 203</file>
821
+ </tool>
822
+ </outputs>
823
+ <inputs>
824
+ <tool>
825
+ <name>BICOMP</name>
826
+ <file> 147 150 146 145</file>
827
+ </tool>
828
+ </inputs>
829
+ </file>
830
+ <file>
831
+ <name>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</name>
832
+ <outputs>
833
+ <tool>
834
+ <name>BICOMP</name>
835
+ <file> 15</file>
836
+ </tool>
837
+ <tool>
838
+ <name>ICCARM</name>
839
+ <file> 63 87 131 108 86 5 36 103 198 160 157 37 158 0 154 65 23 66 21 32 20 74 68 70 196 82 9</file>
840
+ </tool>
841
+ </outputs>
842
+ <inputs>
843
+ <tool>
844
+ <name>BICOMP</name>
845
+ <file> 147 150 149 135 139</file>
846
+ </tool>
847
+ <tool>
848
+ <name>ICCARM</name>
849
+ <file> 147 150 149 135 139 146 144 145 151 148 140 102 118 105 107 120 30 61 41 43 121 34 33 44 152 104 122 116 114 11 8 80 1 71 10 109 2 67 85 26 200 201</file>
850
+ </tool>
851
+ </inputs>
852
+ </file>
853
+ <file>
854
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
855
+ <outputs>
856
+ <tool>
857
+ <name>BICOMP</name>
858
+ <file> 58</file>
859
+ </tool>
860
+ </outputs>
861
+ <inputs>
862
+ <tool>
863
+ <name>BICOMP</name>
864
+ <file> 147 150 139 146 144</file>
865
+ </tool>
866
+ </inputs>
867
+ </file>
868
+ <file>
869
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
870
+ <outputs>
871
+ <tool>
872
+ <name>BICOMP</name>
873
+ <file> 128</file>
874
+ </tool>
875
+ </outputs>
876
+ <inputs>
877
+ <tool>
878
+ <name>BICOMP</name>
879
+ <file> 147 150 135 151 148 140</file>
880
+ </tool>
881
+ </inputs>
882
+ </file>
883
+ <file>
884
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
885
+ <outputs>
886
+ <tool>
887
+ <name>BICOMP</name>
888
+ <file> 51</file>
889
+ </tool>
890
+ </outputs>
891
+ <inputs>
892
+ <tool>
893
+ <name>BICOMP</name>
894
+ <file> 147 150 144</file>
895
+ </tool>
896
+ </inputs>
897
+ </file>
898
+ <file>
899
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
900
+ <outputs>
901
+ <tool>
902
+ <name>BICOMP</name>
903
+ <file> 27</file>
904
+ </tool>
905
+ </outputs>
906
+ <inputs>
907
+ <tool>
908
+ <name>BICOMP</name>
909
+ <file> 147 150 102 118 105 107 149 120</file>
910
+ </tool>
911
+ </inputs>
912
+ </file>
913
+ <file>
914
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
915
+ <outputs>
916
+ <tool>
917
+ <name>BICOMP</name>
918
+ <file> 52</file>
919
+ </tool>
920
+ </outputs>
921
+ <inputs>
922
+ <tool>
923
+ <name>BICOMP</name>
924
+ <file> 147 150 120 102 118 151 148 140 105 41 43 121 34 33 44 107 152 104 122 116 114 149 139 146 144 135</file>
925
+ </tool>
926
+ </inputs>
927
+ </file>
928
+ <file>
929
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
930
+ <outputs>
931
+ <tool>
932
+ <name>BICOMP</name>
933
+ <file> 40</file>
934
+ </tool>
935
+ </outputs>
936
+ <inputs>
937
+ <tool>
938
+ <name>BICOMP</name>
939
+ <file> 120 30 61</file>
940
+ </tool>
941
+ </inputs>
942
+ </file>
943
+ <file>
944
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
945
+ <outputs>
946
+ <tool>
947
+ <name>BICOMP</name>
948
+ <file> 31</file>
949
+ </tool>
950
+ </outputs>
951
+ <inputs>
952
+ <tool>
953
+ <name>BICOMP</name>
954
+ <file> 118 147 150 151 140</file>
955
+ </tool>
956
+ </inputs>
957
+ </file>
958
+ <file>
959
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
960
+ <outputs>
961
+ <tool>
962
+ <name>BICOMP</name>
963
+ <file> 59</file>
964
+ </tool>
965
+ </outputs>
966
+ <inputs>
967
+ <tool>
968
+ <name>BICOMP</name>
969
+ <file> 147 150 148 11 61 8 80 1 10 109 2</file>
970
+ </tool>
971
+ </inputs>
972
+ </file>
973
+ <file>
974
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
975
+ <outputs>
976
+ <tool>
977
+ <name>BICOMP</name>
978
+ <file> 35</file>
979
+ </tool>
980
+ </outputs>
981
+ <inputs>
982
+ <tool>
983
+ <name>BICOMP</name>
984
+ <file> 147 150 151</file>
985
+ </tool>
986
+ </inputs>
987
+ </file>
988
+ <file>
989
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
990
+ <outputs>
991
+ <tool>
992
+ <name>BICOMP</name>
993
+ <file> 99</file>
994
+ </tool>
995
+ </outputs>
996
+ <inputs>
997
+ <tool>
998
+ <name>BICOMP</name>
999
+ <file> 147 150 122 116</file>
1000
+ </tool>
1001
+ </inputs>
1002
+ </file>
1003
+ <file>
1004
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
1005
+ <outputs>
1006
+ <tool>
1007
+ <name>BICOMP</name>
1008
+ <file> 54</file>
1009
+ </tool>
1010
+ </outputs>
1011
+ <inputs>
1012
+ <tool>
1013
+ <name>BICOMP</name>
1014
+ <file> 147 150 140 11 61 8 80 1 10 109 2</file>
1015
+ </tool>
1016
+ </inputs>
1017
+ </file>
1018
+ <file>
1019
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
1020
+ <outputs>
1021
+ <tool>
1022
+ <name>BICOMP</name>
1023
+ <file> 3</file>
1024
+ </tool>
1025
+ </outputs>
1026
+ <inputs>
1027
+ <tool>
1028
+ <name>BICOMP</name>
1029
+ <file> 147 150 107 114 152 116</file>
1030
+ </tool>
1031
+ </inputs>
1032
+ </file>
1033
+ <file>
1034
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
1035
+ <outputs>
1036
+ <tool>
1037
+ <name>BICOMP</name>
1038
+ <file> 197</file>
1039
+ </tool>
1040
+ </outputs>
1041
+ <inputs>
1042
+ <tool>
1043
+ <name>BICOMP</name>
1044
+ <file> 147 150 104 122</file>
1045
+ </tool>
1046
+ </inputs>
1047
+ </file>
1048
+ <file>
1049
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
1050
+ <outputs>
1051
+ <tool>
1052
+ <name>BICOMP</name>
1053
+ <file> 153</file>
1054
+ </tool>
1055
+ </outputs>
1056
+ <inputs>
1057
+ <tool>
1058
+ <name>BICOMP</name>
1059
+ <file> 147 150 152 104</file>
1060
+ </tool>
1061
+ </inputs>
1062
+ </file>
1063
+ <file>
1064
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
1065
+ <outputs>
1066
+ <tool>
1067
+ <name>BICOMP</name>
1068
+ <file> 69</file>
1069
+ </tool>
1070
+ </outputs>
1071
+ <inputs>
1072
+ <tool>
1073
+ <name>BICOMP</name>
1074
+ <file> 147 150 116 122</file>
1075
+ </tool>
1076
+ </inputs>
1077
+ </file>
1078
+ <file>
1079
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
1080
+ <outputs>
1081
+ <tool>
1082
+ <name>BICOMP</name>
1083
+ <file> 29</file>
1084
+ </tool>
1085
+ </outputs>
1086
+ <inputs>
1087
+ <tool>
1088
+ <name>BICOMP</name>
1089
+ <file> 147 150 114 151</file>
1090
+ </tool>
1091
+ </inputs>
1092
+ </file>
1093
+ <file>
1094
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
1095
+ <outputs>
1096
+ <tool>
1097
+ <name>BICOMP</name>
1098
+ <file> 91</file>
1099
+ </tool>
1100
+ </outputs>
1101
+ <inputs>
1102
+ <tool>
1103
+ <name>BICOMP</name>
1104
+ <file> 147 150 34 145 33 140 67 61 80 1 10 109 2 85 11 8</file>
1105
+ </tool>
1106
+ </inputs>
1107
+ </file>
1108
+ <file>
1109
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
1110
+ <outputs>
1111
+ <tool>
1112
+ <name>BICOMP</name>
1113
+ <file> 204</file>
1114
+ </tool>
1115
+ </outputs>
1116
+ <inputs>
1117
+ <tool>
1118
+ <name>BICOMP</name>
1119
+ <file> 147 150 33</file>
1120
+ </tool>
1121
+ </inputs>
1122
+ </file>
1123
+ <file>
1124
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
1125
+ <outputs>
1126
+ <tool>
1127
+ <name>BICOMP</name>
1128
+ <file> 167</file>
1129
+ </tool>
1130
+ </outputs>
1131
+ <inputs>
1132
+ <tool>
1133
+ <name>BICOMP</name>
1134
+ <file> 147 150 105 41 34 151</file>
1135
+ </tool>
1136
+ </inputs>
1137
+ </file>
1138
+ <file>
1139
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
1140
+ <outputs>
1141
+ <tool>
1142
+ <name>BICOMP</name>
1143
+ <file> 22</file>
1144
+ </tool>
1145
+ </outputs>
1146
+ <inputs>
1147
+ <tool>
1148
+ <name>BICOMP</name>
1149
+ <file> 147 150 43</file>
1150
+ </tool>
1151
+ </inputs>
1152
+ </file>
1153
+ <file>
1154
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
1155
+ <outputs>
1156
+ <tool>
1157
+ <name>BICOMP</name>
1158
+ <file> 162</file>
1159
+ </tool>
1160
+ </outputs>
1161
+ <inputs>
1162
+ <tool>
1163
+ <name>BICOMP</name>
1164
+ <file> 147 150 41 43 121</file>
1165
+ </tool>
1166
+ </inputs>
1167
+ </file>
1168
+ <file>
1169
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
1170
+ <outputs>
1171
+ <tool>
1172
+ <name>BICOMP</name>
1173
+ <file> 57</file>
1174
+ </tool>
1175
+ </outputs>
1176
+ <inputs>
1177
+ <tool>
1178
+ <name>BICOMP</name>
1179
+ <file> 147 150 44</file>
1180
+ </tool>
1181
+ </inputs>
1182
+ </file>
1183
+ <file>
1184
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
1185
+ <outputs>
1186
+ <tool>
1187
+ <name>BICOMP</name>
1188
+ <file> 13</file>
1189
+ </tool>
1190
+ </outputs>
1191
+ <inputs>
1192
+ <tool>
1193
+ <name>BICOMP</name>
1194
+ <file> 147 150 121 44</file>
1195
+ </tool>
1196
+ </inputs>
1197
+ </file>
1198
+ <file>
1199
+ <name>$PROJ_DIR$\srcIAR\Cstartup.s</name>
1200
+ <outputs>
1201
+ <tool>
1202
+ <name>AARM</name>
1203
+ <file> 156 24</file>
1204
+ </tool>
1205
+ </outputs>
1206
+ <inputs>
1207
+ <tool>
1208
+ <name>AARM</name>
1209
+ <file> 202</file>
1210
+ </tool>
1211
+ </inputs>
1212
+ </file>
1213
+ <forcedrebuild>
1214
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
1215
+ <tool>ICCARM</tool>
1216
+ </forcedrebuild>
1217
+ <forcedrebuild>
1218
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
1219
+ <tool>ICCARM</tool>
1220
+ </forcedrebuild>
1221
+ <forcedrebuild>
1222
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
1223
+ <tool>ICCARM</tool>
1224
+ </forcedrebuild>
1225
+ <forcedrebuild>
1226
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
1227
+ <tool>ICCARM</tool>
1228
+ </forcedrebuild>
1229
+ <forcedrebuild>
1230
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
1231
+ <tool>ICCARM</tool>
1232
+ </forcedrebuild>
1233
+ <forcedrebuild>
1234
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
1235
+ <tool>ICCARM</tool>
1236
+ </forcedrebuild>
1237
+ <forcedrebuild>
1238
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
1239
+ <tool>ICCARM</tool>
1240
+ </forcedrebuild>
1241
+ <forcedrebuild>
1242
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
1243
+ <tool>ICCARM</tool>
1244
+ </forcedrebuild>
1245
+ <forcedrebuild>
1246
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
1247
+ <tool>ICCARM</tool>
1248
+ </forcedrebuild>
1249
+ <forcedrebuild>
1250
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
1251
+ <tool>ICCARM</tool>
1252
+ </forcedrebuild>
1253
+ <forcedrebuild>
1254
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
1255
+ <tool>ICCARM</tool>
1256
+ </forcedrebuild>
1257
+ <forcedrebuild>
1258
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
1259
+ <tool>ICCARM</tool>
1260
+ </forcedrebuild>
1261
+ <forcedrebuild>
1262
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
1263
+ <tool>ICCARM</tool>
1264
+ </forcedrebuild>
1265
+ <forcedrebuild>
1266
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
1267
+ <tool>ICCARM</tool>
1268
+ </forcedrebuild>
1269
+ <forcedrebuild>
1270
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
1271
+ <tool>ICCARM</tool>
1272
+ </forcedrebuild>
1273
+ <forcedrebuild>
1274
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
1275
+ <tool>ICCARM</tool>
1276
+ </forcedrebuild>
1277
+ <forcedrebuild>
1278
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
1279
+ <tool>ICCARM</tool>
1280
+ </forcedrebuild>
1281
+ <forcedrebuild>
1282
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
1283
+ <tool>ICCARM</tool>
1284
+ </forcedrebuild>
1285
+ <forcedrebuild>
1286
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
1287
+ <tool>ICCARM</tool>
1288
+ </forcedrebuild>
1289
+ <forcedrebuild>
1290
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
1291
+ <tool>ICCARM</tool>
1292
+ </forcedrebuild>
1293
+ <forcedrebuild>
1294
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
1295
+ <tool>ICCARM</tool>
1296
+ </forcedrebuild>
1297
+ <forcedrebuild>
1298
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
1299
+ <tool>ICCARM</tool>
1300
+ </forcedrebuild>
1301
+ <forcedrebuild>
1302
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
1303
+ <tool>ICCARM</tool>
1304
+ </forcedrebuild>
1305
+ <forcedrebuild>
1306
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
1307
+ <tool>ICCARM</tool>
1308
+ </forcedrebuild>
1309
+ <forcedrebuild>
1310
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
1311
+ <tool>ICCARM</tool>
1312
+ </forcedrebuild>
1313
+ </configuration>
1314
+ <configuration>
1315
+ <name>FLASH_Debug</name>
1316
+ <outputs>
1317
+ <file>$TOOLKIT_DIR$\inc\DLib_Defaults.h</file>
1318
+ <file>$TOOLKIT_DIR$\inc\DLib_Threads.h</file>
1319
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.h</file>
1320
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerModel.h</file>
1321
+ <file>$TOOLKIT_DIR$\inc\ymath.h</file>
1322
+ <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>
1323
+ <file>$TOOLKIT_DIR$\inc\math.h</file>
1324
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.h</file>
1325
+ <file>$PROJ_DIR$\..\..\test\system\src\Executor.h</file>
1326
+ <file>$PROJ_DIR$\incIAR\project.h</file>
1327
+ <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>
1328
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.h</file>
1329
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.h</file>
1330
+ <file>$PROJ_DIR$\..\..\test\system\src\AT91SAM7X256.h</file>
1331
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.h</file>
1332
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.h</file>
1333
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.h</file>
1334
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.h</file>
1335
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.h</file>
1336
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.h</file>
1337
+ <file>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.h</file>
1338
+ <file>$TOOLKIT_DIR$\lib\dl4t_tl_in.a</file>
1339
+ <file>$TOOLKIT_DIR$\inc\ycheck.h</file>
1340
+ <file>$PROJ_DIR$\..\..\test\system\src\ModelConfig.h</file>
1341
+ <file>$TOOLKIT_DIR$\inc\stdio.h</file>
1342
+ <file>$TOOLKIT_DIR$\inc\DLib_Config_Normal.h</file>
1343
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConductor.h</file>
1344
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.h</file>
1345
+ <file>$PROJ_DIR$\..\..\test\system\src\Types.h</file>
1346
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.h</file>
1347
+ <file>$TOOLKIT_DIR$\inc\yvals.h</file>
1348
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartModel.h</file>
1349
+ <file>$TOOLKIT_DIR$\lib\rt4t_al.a</file>
1350
+ <file>$TOOLKIT_DIR$\inc\ysizet.h</file>
1351
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcConductor.h</file>
1352
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.h</file>
1353
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerHardware.h</file>
1354
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcModel.h</file>
1355
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardware.h</file>
1356
+ <file>$PROJ_DIR$\..\..\test\system\src\Model.h</file>
1357
+ <file>$TOOLKIT_DIR$\lib\shs_l.a</file>
1358
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.h</file>
1359
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.h</file>
1360
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.h</file>
1361
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.h</file>
1362
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.c</file>
1363
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.h</file>
1364
+ <file>$TOOLKIT_DIR$\inc\xencoding_limits.h</file>
1365
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\cmock_demo.pbd</file>
1366
+ <file>$PROJ_DIR$\..\..\test\system\src\Main.c</file>
1367
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.c</file>
1368
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcConductor.c</file>
1369
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardware.c</file>
1370
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.h</file>
1371
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcModel.c</file>
1372
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.h</file>
1373
+ <file>$PROJ_DIR$\..\..\test\system\src\Executor.c</file>
1374
+ <file>$PROJ_DIR$\..\..\examples\src\Model.h</file>
1375
+ <file>$PROJ_DIR$\..\..\test\system\src\Model.c</file>
1376
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.h</file>
1377
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.h</file>
1378
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.h</file>
1379
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.c</file>
1380
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.c</file>
1381
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.c</file>
1382
+ <file>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.c</file>
1383
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.c</file>
1384
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConductor.c</file>
1385
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.c</file>
1386
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.c</file>
1387
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerHardware.c</file>
1388
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.c</file>
1389
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.h</file>
1390
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerModel.c</file>
1391
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.c</file>
1392
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConductor.c</file>
1393
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.h</file>
1394
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.h</file>
1395
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartHardware.c</file>
1396
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartModel.c</file>
1397
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.c</file>
1398
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.h</file>
1399
+ <file>$PROJ_DIR$\..\..\examples\src\ModelConfig.h</file>
1400
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.h</file>
1401
+ <file>$PROJ_DIR$\..\..\examples\src\Types.h</file>
1402
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.h</file>
1403
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.h</file>
1404
+ <file>$PROJ_DIR$\..\..\examples\src\AT91SAM7X256.h</file>
1405
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.h</file>
1406
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.h</file>
1407
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConductor.h</file>
1408
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.h</file>
1409
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartHardware.h</file>
1410
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Main.o</file>
1411
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.h</file>
1412
+ <file>$PROJ_DIR$\FLASH_Debug\List\TimerHardware.lst</file>
1413
+ <file>$PROJ_DIR$\FLASH_Debug\List\ext_irq.lst</file>
1414
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Cstartup.o</file>
1415
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerConfigurator.pbi</file>
1416
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartHardware.lst</file>
1417
+ <file>$PROJ_DIR$\..\src\ext_irq.c</file>
1418
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\interrupt_Usart.o</file>
1419
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\interrupt_Usart.pbi</file>
1420
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerModel.o</file>
1421
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\main.pbi</file>
1422
+ <file>$PROJ_DIR$\FLASH_Debug\List\Model.lst</file>
1423
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcModel.o</file>
1424
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartHardware.o</file>
1425
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartPutChar.o</file>
1426
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TemperatureCalculator.pbi</file>
1427
+ <file>$PROJ_DIR$\FLASH_Debug\List\AdcConductor.lst</file>
1428
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartTransmitBufferStatus.pbi</file>
1429
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcConductor.pbi</file>
1430
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Model.pbi</file>
1431
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Cstartup_SAM7.o</file>
1432
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\IntrinsicsWrapper.o</file>
1433
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\IntrinsicsWrapper.pbi</file>
1434
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcHardware.o</file>
1435
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartPutChar.pbi</file>
1436
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartBaudRateRegisterCalculator.pbi</file>
1437
+ <file>$PROJ_DIR$\FLASH_Debug\List\interrupt_timer.lst</file>
1438
+ <file>$PROJ_DIR$\FLASH_Debug\List\Cstartup_SAM7.lst</file>
1439
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcHardwareConfigurator.o</file>
1440
+ <file>$PROJ_DIR$\FLASH_Debug\List\AdcHardwareConfigurator.lst</file>
1441
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TemperatureFilter.pbi</file>
1442
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerConductor.pbi</file>
1443
+ <file>$PROJ_DIR$\..\..\include\lib_AT91SAM7X256.h</file>
1444
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TaskScheduler.o</file>
1445
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TemperatureFilter.o</file>
1446
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\ext_irq.pbi</file>
1447
+ <file>$PROJ_DIR$\..\..\include\AT91SAM7X256.h</file>
1448
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcModel.pbi</file>
1449
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerInterruptConfigurator.o</file>
1450
+ <file>$PROJ_DIR$\FLASH_Debug\List\AdcModel.lst</file>
1451
+ <file>$PROJ_DIR$\FLASH_Debug\List\interrupt_Usart.lst</file>
1452
+ <file>$PROJ_DIR$\FLASH_Debug\List\Cstartup.lst</file>
1453
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartHardware.pbi</file>
1454
+ <file>$PROJ_DIR$\FLASH_Debug\List\TimerModel.lst</file>
1455
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartConductor.o</file>
1456
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartConfigurator.o</file>
1457
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartPutChar.lst</file>
1458
+ <file>$PROJ_DIR$\FLASH_Debug\List\TemperatureFilter.lst</file>
1459
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerInterruptHandler.pbi</file>
1460
+ <file>$PROJ_DIR$\FLASH_Debug\List\TemperatureCalculator.lst</file>
1461
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartTransmitBufferStatus.lst</file>
1462
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartModel.pbi</file>
1463
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartConductor.lst</file>
1464
+ <file>$PROJ_DIR$\FLASH_Debug\List\TimerConfigurator.lst</file>
1465
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Model.o</file>
1466
+ <file>$PROJ_DIR$\FLASH_Debug\List\Executor.lst</file>
1467
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartModel.lst</file>
1468
+ <file>$PROJ_DIR$\FLASH_Debug\List\TimerInterruptHandler.lst</file>
1469
+ <file>$PROJ_DIR$\FLASH_Debug\List\Main.lst</file>
1470
+ <file>$PROJ_DIR$\FLASH_Debug\List\TimerInterruptConfigurator.lst</file>
1471
+ <file>$PROJ_DIR$\FLASH_Debug\Exe\cmock_demo.out</file>
1472
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerHardware.pbi</file>
1473
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TaskScheduler.pbi</file>
1474
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerModel.pbi</file>
1475
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcConductor.o</file>
1476
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcTemperatureSensor.o</file>
1477
+ <file>$PROJ_DIR$\..\src\AT91SAM7X-EK.h</file>
1478
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartTransmitBufferStatus.o</file>
1479
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcHardware.pbi</file>
1480
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartBaudRateRegisterCalculator.o</file>
1481
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\ext_irq.o</file>
1482
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcTemperatureSensor.pbi</file>
1483
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TemperatureCalculator.o</file>
1484
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerHardware.o</file>
1485
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartModel.o</file>
1486
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartConfigurator.lst</file>
1487
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerConductor.o</file>
1488
+ <file>$PROJ_DIR$\srcIAR\project.h</file>
1489
+ <file>$PROJ_DIR$\FLASH_Debug\List\UsartBaudRateRegisterCalculator.lst</file>
1490
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\AdcHardwareConfigurator.pbi</file>
1491
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerInterruptHandler.o</file>
1492
+ <file>$PROJ_DIR$\FLASH_Debug\List\TimerConductor.lst</file>
1493
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Cstartup_SAM7.pbi</file>
1494
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartConductor.pbi</file>
1495
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\UsartConfigurator.pbi</file>
1496
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Executor.o</file>
1497
+ <file>$PROJ_DIR$\FLASH_Debug\List\AdcHardware.lst</file>
1498
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\Executor.pbi</file>
1499
+ <file>$PROJ_DIR$\..\src\interrupt_timer.c</file>
1500
+ <file>$PROJ_DIR$\..\src\interrupt_Usart.c</file>
1501
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerInterruptConfigurator.pbi</file>
1502
+ <file>$PROJ_DIR$\..\src\main.c</file>
1503
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\TimerConfigurator.o</file>
1504
+ <file>$PROJ_DIR$\FLASH_Debug\List\AdcTemperatureSensor.lst</file>
1505
+ <file>$PROJ_DIR$\FLASH_Debug\List\TaskScheduler.lst</file>
1506
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\interrupt_timer.o</file>
1507
+ <file>$PROJ_DIR$\FLASH_Debug\List\IntrinsicsWrapper.lst</file>
1508
+ <file>$PROJ_DIR$\FLASH_Debug\Obj\interrupt_timer.pbi</file>
1509
+ <file>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</file>
1510
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</file>
1511
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</file>
1512
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</file>
1513
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.c</file>
1514
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</file>
1515
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.c</file>
1516
+ <file>$PROJ_DIR$\..\..\examples\src\Main.c</file>
1517
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</file>
1518
+ <file>$PROJ_DIR$\..\..\examples\src\Model.c</file>
1519
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</file>
1520
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_FLASH.icf</file>
1521
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</file>
1522
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</file>
1523
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</file>
1524
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</file>
1525
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</file>
1526
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</file>
1527
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</file>
1528
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.c</file>
1529
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.c</file>
1530
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</file>
1531
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</file>
1532
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</file>
1533
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</file>
1534
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</file>
1535
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</file>
1536
+ <file>$PROJ_DIR$\srcIAR\Cstartup.s</file>
1537
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X-EK.h</file>
1538
+ <file>$PROJ_DIR$\incIAR\lib_AT91SAM7X256.h</file>
1539
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X256_inc.h</file>
1540
+ </outputs>
1541
+ <file>
1542
+ <name>[ROOT_NODE]</name>
1543
+ <outputs>
1544
+ <tool>
1545
+ <name>ILINK</name>
1546
+ <file> 154</file>
1547
+ </tool>
1548
+ </outputs>
1549
+ </file>
1550
+ <file>
1551
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.c</name>
1552
+ <outputs>
1553
+ <tool>
1554
+ <name>BICOMP</name>
1555
+ <file> 165</file>
1556
+ </tool>
1557
+ <tool>
1558
+ <name>ICCARM</name>
1559
+ <file> 187 159</file>
1560
+ </tool>
1561
+ </outputs>
1562
+ <inputs>
1563
+ <tool>
1564
+ <name>ICCARM</name>
1565
+ <file> 28 13 35</file>
1566
+ </tool>
1567
+ </inputs>
1568
+ </file>
1569
+ <file>
1570
+ <name>$PROJ_DIR$\FLASH_Debug\Obj\cmock_demo.pbd</name>
1571
+ <inputs>
1572
+ <tool>
1573
+ <name>BILINK</name>
1574
+ <file> 112 162 173 131 165 176 181 116 113 156 109 124 125 98 155 184 142 157 119 177 178 136 145 118 111 104</file>
1575
+ </tool>
1576
+ </inputs>
1577
+ </file>
1578
+ <file>
1579
+ <name>$PROJ_DIR$\..\..\test\system\src\Main.c</name>
1580
+ <outputs>
1581
+ <tool>
1582
+ <name>BICOMP</name>
1583
+ <file> 104</file>
1584
+ </tool>
1585
+ <tool>
1586
+ <name>ICCARM</name>
1587
+ <file> 152 93</file>
1588
+ </tool>
1589
+ </outputs>
1590
+ <inputs>
1591
+ <tool>
1592
+ <name>ICCARM</name>
1593
+ <file> 28 13 8 39 20 18 27 26 92 41 19 31 17 91 90 36 29 2 7 3 34 38 94 35 37</file>
1594
+ </tool>
1595
+ </inputs>
1596
+ </file>
1597
+ <file>
1598
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.c</name>
1599
+ <outputs>
1600
+ <tool>
1601
+ <name>BICOMP</name>
1602
+ <file> 173</file>
1603
+ </tool>
1604
+ <tool>
1605
+ <name>ICCARM</name>
1606
+ <file> 123 122</file>
1607
+ </tool>
1608
+ </outputs>
1609
+ <inputs>
1610
+ <tool>
1611
+ <name>ICCARM</name>
1612
+ <file> 28 13 94 23</file>
1613
+ </tool>
1614
+ </inputs>
1615
+ </file>
1616
+ <file>
1617
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcConductor.c</name>
1618
+ <outputs>
1619
+ <tool>
1620
+ <name>BICOMP</name>
1621
+ <file> 112</file>
1622
+ </tool>
1623
+ <tool>
1624
+ <name>ICCARM</name>
1625
+ <file> 110 158</file>
1626
+ </tool>
1627
+ </outputs>
1628
+ <inputs>
1629
+ <tool>
1630
+ <name>ICCARM</name>
1631
+ <file> 28 13 34 37 38</file>
1632
+ </tool>
1633
+ </inputs>
1634
+ </file>
1635
+ <file>
1636
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcHardware.c</name>
1637
+ <outputs>
1638
+ <tool>
1639
+ <name>BICOMP</name>
1640
+ <file> 162</file>
1641
+ </tool>
1642
+ <tool>
1643
+ <name>ICCARM</name>
1644
+ <file> 180 117</file>
1645
+ </tool>
1646
+ </outputs>
1647
+ <inputs>
1648
+ <tool>
1649
+ <name>ICCARM</name>
1650
+ <file> 28 13 38 94 35</file>
1651
+ </tool>
1652
+ </inputs>
1653
+ </file>
1654
+ <file>
1655
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcModel.c</name>
1656
+ <outputs>
1657
+ <tool>
1658
+ <name>BICOMP</name>
1659
+ <file> 131</file>
1660
+ </tool>
1661
+ <tool>
1662
+ <name>ICCARM</name>
1663
+ <file> 133 106</file>
1664
+ </tool>
1665
+ </outputs>
1666
+ <inputs>
1667
+ <tool>
1668
+ <name>ICCARM</name>
1669
+ <file> 28 13 37 20 18 27</file>
1670
+ </tool>
1671
+ </inputs>
1672
+ </file>
1673
+ <file>
1674
+ <name>$PROJ_DIR$\..\..\test\system\src\Executor.c</name>
1675
+ <outputs>
1676
+ <tool>
1677
+ <name>BICOMP</name>
1678
+ <file> 181</file>
1679
+ </tool>
1680
+ <tool>
1681
+ <name>ICCARM</name>
1682
+ <file> 149 179</file>
1683
+ </tool>
1684
+ </outputs>
1685
+ <inputs>
1686
+ <tool>
1687
+ <name>ICCARM</name>
1688
+ <file> 28 13 8 39 26 90 34 10 22</file>
1689
+ </tool>
1690
+ </inputs>
1691
+ </file>
1692
+ <file>
1693
+ <name>$PROJ_DIR$\..\..\test\system\src\Model.c</name>
1694
+ <outputs>
1695
+ <tool>
1696
+ <name>BICOMP</name>
1697
+ <file> 113</file>
1698
+ </tool>
1699
+ <tool>
1700
+ <name>ICCARM</name>
1701
+ <file> 105 148</file>
1702
+ </tool>
1703
+ </outputs>
1704
+ <inputs>
1705
+ <tool>
1706
+ <name>ICCARM</name>
1707
+ <file> 39 28 13 20 27</file>
1708
+ </tool>
1709
+ </inputs>
1710
+ </file>
1711
+ <file>
1712
+ <name>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.c</name>
1713
+ <outputs>
1714
+ <tool>
1715
+ <name>BICOMP</name>
1716
+ <file> 124</file>
1717
+ </tool>
1718
+ <tool>
1719
+ <name>ICCARM</name>
1720
+ <file> 141 128</file>
1721
+ </tool>
1722
+ </outputs>
1723
+ <inputs>
1724
+ <tool>
1725
+ <name>ICCARM</name>
1726
+ <file> 28 13 27 6 22 4 30 0 25 5 47 1</file>
1727
+ </tool>
1728
+ </inputs>
1729
+ </file>
1730
+ <file>
1731
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.c</name>
1732
+ <outputs>
1733
+ <tool>
1734
+ <name>BICOMP</name>
1735
+ <file> 98</file>
1736
+ </tool>
1737
+ <tool>
1738
+ <name>ICCARM</name>
1739
+ <file> 147 186</file>
1740
+ </tool>
1741
+ </outputs>
1742
+ <inputs>
1743
+ <tool>
1744
+ <name>ICCARM</name>
1745
+ <file> 28 13 29 2</file>
1746
+ </tool>
1747
+ </inputs>
1748
+ </file>
1749
+ <file>
1750
+ <name>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.c</name>
1751
+ <outputs>
1752
+ <tool>
1753
+ <name>BICOMP</name>
1754
+ <file> 109</file>
1755
+ </tool>
1756
+ <tool>
1757
+ <name>ICCARM</name>
1758
+ <file> 143 166</file>
1759
+ </tool>
1760
+ </outputs>
1761
+ <inputs>
1762
+ <tool>
1763
+ <name>ICCARM</name>
1764
+ <file> 28 13 18 6 22 4 30 0 25 5 47 1</file>
1765
+ </tool>
1766
+ </inputs>
1767
+ </file>
1768
+ <file>
1769
+ <name>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.c</name>
1770
+ <outputs>
1771
+ <tool>
1772
+ <name>BICOMP</name>
1773
+ <file> 156</file>
1774
+ </tool>
1775
+ <tool>
1776
+ <name>ICCARM</name>
1777
+ <file> 188 127</file>
1778
+ </tool>
1779
+ </outputs>
1780
+ <inputs>
1781
+ <tool>
1782
+ <name>ICCARM</name>
1783
+ <file> 28 13 20</file>
1784
+ </tool>
1785
+ </inputs>
1786
+ </file>
1787
+ <file>
1788
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.c</name>
1789
+ <outputs>
1790
+ <tool>
1791
+ <name>BICOMP</name>
1792
+ <file> 184</file>
1793
+ </tool>
1794
+ <tool>
1795
+ <name>ICCARM</name>
1796
+ <file> 153 132</file>
1797
+ </tool>
1798
+ </outputs>
1799
+ <inputs>
1800
+ <tool>
1801
+ <name>ICCARM</name>
1802
+ <file> 28 13 2 7</file>
1803
+ </tool>
1804
+ </inputs>
1805
+ </file>
1806
+ <file>
1807
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerConductor.c</name>
1808
+ <outputs>
1809
+ <tool>
1810
+ <name>BICOMP</name>
1811
+ <file> 125</file>
1812
+ </tool>
1813
+ <tool>
1814
+ <name>ICCARM</name>
1815
+ <file> 175 170</file>
1816
+ </tool>
1817
+ </outputs>
1818
+ <inputs>
1819
+ <tool>
1820
+ <name>ICCARM</name>
1821
+ <file> 28 13 90 3 36 7</file>
1822
+ </tool>
1823
+ </inputs>
1824
+ </file>
1825
+ <file>
1826
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.c</name>
1827
+ <outputs>
1828
+ <tool>
1829
+ <name>BICOMP</name>
1830
+ <file> 142</file>
1831
+ </tool>
1832
+ <tool>
1833
+ <name>ICCARM</name>
1834
+ <file> 151 174</file>
1835
+ </tool>
1836
+ </outputs>
1837
+ <inputs>
1838
+ <tool>
1839
+ <name>ICCARM</name>
1840
+ <file> 28 13 7 2</file>
1841
+ </tool>
1842
+ </inputs>
1843
+ </file>
1844
+ <file>
1845
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.c</name>
1846
+ <outputs>
1847
+ <tool>
1848
+ <name>BICOMP</name>
1849
+ <file> 178</file>
1850
+ </tool>
1851
+ <tool>
1852
+ <name>ICCARM</name>
1853
+ <file> 169 139</file>
1854
+ </tool>
1855
+ </outputs>
1856
+ <inputs>
1857
+ <tool>
1858
+ <name>ICCARM</name>
1859
+ <file> 28 13 41</file>
1860
+ </tool>
1861
+ </inputs>
1862
+ </file>
1863
+ <file>
1864
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerHardware.c</name>
1865
+ <outputs>
1866
+ <tool>
1867
+ <name>BICOMP</name>
1868
+ <file> 155</file>
1869
+ </tool>
1870
+ <tool>
1871
+ <name>ICCARM</name>
1872
+ <file> 95 167</file>
1873
+ </tool>
1874
+ </outputs>
1875
+ <inputs>
1876
+ <tool>
1877
+ <name>ICCARM</name>
1878
+ <file> 28 13 36 29</file>
1879
+ </tool>
1880
+ </inputs>
1881
+ </file>
1882
+ <file>
1883
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.c</name>
1884
+ <outputs>
1885
+ <tool>
1886
+ <name>BICOMP</name>
1887
+ <file> 111</file>
1888
+ </tool>
1889
+ <tool>
1890
+ <name>ICCARM</name>
1891
+ <file> 144 161</file>
1892
+ </tool>
1893
+ </outputs>
1894
+ <inputs>
1895
+ <tool>
1896
+ <name>ICCARM</name>
1897
+ <file> 28 13 91</file>
1898
+ </tool>
1899
+ </inputs>
1900
+ </file>
1901
+ <file>
1902
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerModel.c</name>
1903
+ <outputs>
1904
+ <tool>
1905
+ <name>BICOMP</name>
1906
+ <file> 157</file>
1907
+ </tool>
1908
+ <tool>
1909
+ <name>ICCARM</name>
1910
+ <file> 137 103</file>
1911
+ </tool>
1912
+ </outputs>
1913
+ <inputs>
1914
+ <tool>
1915
+ <name>ICCARM</name>
1916
+ <file> 28 13 3 20</file>
1917
+ </tool>
1918
+ </inputs>
1919
+ </file>
1920
+ <file>
1921
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.c</name>
1922
+ <outputs>
1923
+ <tool>
1924
+ <name>BICOMP</name>
1925
+ <file> 119</file>
1926
+ </tool>
1927
+ <tool>
1928
+ <name>ICCARM</name>
1929
+ <file> 172 163</file>
1930
+ </tool>
1931
+ </outputs>
1932
+ <inputs>
1933
+ <tool>
1934
+ <name>ICCARM</name>
1935
+ <file> 28 13 17</file>
1936
+ </tool>
1937
+ </inputs>
1938
+ </file>
1939
+ <file>
1940
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartConductor.c</name>
1941
+ <outputs>
1942
+ <tool>
1943
+ <name>BICOMP</name>
1944
+ <file> 177</file>
1945
+ </tool>
1946
+ <tool>
1947
+ <name>ICCARM</name>
1948
+ <file> 146 138</file>
1949
+ </tool>
1950
+ </outputs>
1951
+ <inputs>
1952
+ <tool>
1953
+ <name>ICCARM</name>
1954
+ <file> 28 13 26 92 31 20</file>
1955
+ </tool>
1956
+ </inputs>
1957
+ </file>
1958
+ <file>
1959
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartHardware.c</name>
1960
+ <outputs>
1961
+ <tool>
1962
+ <name>BICOMP</name>
1963
+ <file> 136</file>
1964
+ </tool>
1965
+ <tool>
1966
+ <name>ICCARM</name>
1967
+ <file> 99 107</file>
1968
+ </tool>
1969
+ </outputs>
1970
+ <inputs>
1971
+ <tool>
1972
+ <name>ICCARM</name>
1973
+ <file> 28 13 92 41 19</file>
1974
+ </tool>
1975
+ </inputs>
1976
+ </file>
1977
+ <file>
1978
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartModel.c</name>
1979
+ <outputs>
1980
+ <tool>
1981
+ <name>BICOMP</name>
1982
+ <file> 145</file>
1983
+ </tool>
1984
+ <tool>
1985
+ <name>ICCARM</name>
1986
+ <file> 150 168</file>
1987
+ </tool>
1988
+ </outputs>
1989
+ <inputs>
1990
+ <tool>
1991
+ <name>ICCARM</name>
1992
+ <file> 28 13 31 23 17 27 24 22 30 0 25 5 47 1 33 6 4</file>
1993
+ </tool>
1994
+ </inputs>
1995
+ </file>
1996
+ <file>
1997
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.c</name>
1998
+ <outputs>
1999
+ <tool>
2000
+ <name>BICOMP</name>
2001
+ <file> 118</file>
2002
+ </tool>
2003
+ <tool>
2004
+ <name>ICCARM</name>
2005
+ <file> 140 108</file>
2006
+ </tool>
2007
+ </outputs>
2008
+ <inputs>
2009
+ <tool>
2010
+ <name>ICCARM</name>
2011
+ <file> 28 13 19 91</file>
2012
+ </tool>
2013
+ </inputs>
2014
+ </file>
2015
+ <file>
2016
+ <name>$PROJ_DIR$\..\src\ext_irq.c</name>
2017
+ <outputs>
2018
+ <tool>
2019
+ <name>BICOMP</name>
2020
+ <file> 129</file>
2021
+ </tool>
2022
+ <tool>
2023
+ <name>ICCARM</name>
2024
+ <file> 96 164</file>
2025
+ </tool>
2026
+ </outputs>
2027
+ <inputs>
2028
+ <tool>
2029
+ <name>BICOMP</name>
2030
+ <file> 171 10 22 160 130 126</file>
2031
+ </tool>
2032
+ <tool>
2033
+ <name>ICCARM</name>
2034
+ <file> 171 10 22 160 130 126</file>
2035
+ </tool>
2036
+ </inputs>
2037
+ </file>
2038
+ <file>
2039
+ <name>$PROJ_DIR$\FLASH_Debug\Exe\cmock_demo.out</name>
2040
+ <inputs>
2041
+ <tool>
2042
+ <name>ILINK</name>
2043
+ <file> 203 158 117 122 106 159 97 114 179 115 93 148 127 166 128 170 186 167 132 174 103 163 138 139 107 168 108 161 40 32 21</file>
2044
+ </tool>
2045
+ </inputs>
2046
+ </file>
2047
+ <file>
2048
+ <name>$PROJ_DIR$\..\src\interrupt_timer.c</name>
2049
+ <outputs>
2050
+ <tool>
2051
+ <name>BICOMP</name>
2052
+ <file> 191</file>
2053
+ </tool>
2054
+ <tool>
2055
+ <name>ICCARM</name>
2056
+ <file> 120 189</file>
2057
+ </tool>
2058
+ </outputs>
2059
+ <inputs>
2060
+ <tool>
2061
+ <name>BICOMP</name>
2062
+ <file> 171 10 22 160 130 126</file>
2063
+ </tool>
2064
+ <tool>
2065
+ <name>ICCARM</name>
2066
+ <file> 171 10 22 160 130 126</file>
2067
+ </tool>
2068
+ </inputs>
2069
+ </file>
2070
+ <file>
2071
+ <name>$PROJ_DIR$\..\src\interrupt_Usart.c</name>
2072
+ <outputs>
2073
+ <tool>
2074
+ <name>BICOMP</name>
2075
+ <file> 102</file>
2076
+ </tool>
2077
+ <tool>
2078
+ <name>ICCARM</name>
2079
+ <file> 134 101</file>
2080
+ </tool>
2081
+ </outputs>
2082
+ <inputs>
2083
+ <tool>
2084
+ <name>BICOMP</name>
2085
+ <file> 171 10 22 160 130 126</file>
2086
+ </tool>
2087
+ <tool>
2088
+ <name>ICCARM</name>
2089
+ <file> 171 10 22 160 130 126</file>
2090
+ </tool>
2091
+ </inputs>
2092
+ </file>
2093
+ <file>
2094
+ <name>$PROJ_DIR$\..\src\main.c</name>
2095
+ <outputs>
2096
+ <tool>
2097
+ <name>BICOMP</name>
2098
+ <file> 104</file>
2099
+ </tool>
2100
+ <tool>
2101
+ <name>ICCARM</name>
2102
+ <file> 152 93</file>
2103
+ </tool>
2104
+ </outputs>
2105
+ <inputs>
2106
+ <tool>
2107
+ <name>BICOMP</name>
2108
+ <file> 171 10 22 160 130 126</file>
2109
+ </tool>
2110
+ <tool>
2111
+ <name>ICCARM</name>
2112
+ <file> 171 10 22 160 130 126</file>
2113
+ </tool>
2114
+ </inputs>
2115
+ </file>
2116
+ <file>
2117
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
2118
+ <outputs>
2119
+ <tool>
2120
+ <name>BICOMP</name>
2121
+ <file> 176</file>
2122
+ </tool>
2123
+ <tool>
2124
+ <name>ICCARM</name>
2125
+ <file> 121 114</file>
2126
+ </tool>
2127
+ </outputs>
2128
+ <inputs>
2129
+ <tool>
2130
+ <name>BICOMP</name>
2131
+ <file> 9 10 22 220 221</file>
2132
+ </tool>
2133
+ <tool>
2134
+ <name>ICCARM</name>
2135
+ <file> 9 10 22 220 87 221</file>
2136
+ </tool>
2137
+ </inputs>
2138
+ </file>
2139
+ <file>
2140
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
2141
+ <outputs>
2142
+ <tool>
2143
+ <name>BICOMP</name>
2144
+ <file> 173</file>
2145
+ </tool>
2146
+ <tool>
2147
+ <name>ICCARM</name>
2148
+ <file> 123 122</file>
2149
+ </tool>
2150
+ </outputs>
2151
+ <inputs>
2152
+ <tool>
2153
+ <name>BICOMP</name>
2154
+ <file> 84 87 83 82</file>
2155
+ </tool>
2156
+ <tool>
2157
+ <name>ICCARM</name>
2158
+ <file> 84 87 83 82</file>
2159
+ </tool>
2160
+ </inputs>
2161
+ </file>
2162
+ <file>
2163
+ <name>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</name>
2164
+ <outputs>
2165
+ <tool>
2166
+ <name>BICOMP</name>
2167
+ <file> 112</file>
2168
+ </tool>
2169
+ <tool>
2170
+ <name>ICCARM</name>
2171
+ <file> 110 158</file>
2172
+ </tool>
2173
+ </outputs>
2174
+ <inputs>
2175
+ <tool>
2176
+ <name>BICOMP</name>
2177
+ <file> 84 87 86 72 76</file>
2178
+ </tool>
2179
+ <tool>
2180
+ <name>ICCARM</name>
2181
+ <file> 84 87 86 72 76</file>
2182
+ </tool>
2183
+ </inputs>
2184
+ </file>
2185
+ <file>
2186
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
2187
+ <outputs>
2188
+ <tool>
2189
+ <name>BICOMP</name>
2190
+ <file> 162</file>
2191
+ </tool>
2192
+ <tool>
2193
+ <name>ICCARM</name>
2194
+ <file> 180 117</file>
2195
+ </tool>
2196
+ </outputs>
2197
+ <inputs>
2198
+ <tool>
2199
+ <name>BICOMP</name>
2200
+ <file> 84 87 76 83 81</file>
2201
+ </tool>
2202
+ <tool>
2203
+ <name>ICCARM</name>
2204
+ <file> 84 87 76 83 81</file>
2205
+ </tool>
2206
+ </inputs>
2207
+ </file>
2208
+ <file>
2209
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
2210
+ <outputs>
2211
+ <tool>
2212
+ <name>BICOMP</name>
2213
+ <file> 131</file>
2214
+ </tool>
2215
+ <tool>
2216
+ <name>ICCARM</name>
2217
+ <file> 133 106</file>
2218
+ </tool>
2219
+ </outputs>
2220
+ <inputs>
2221
+ <tool>
2222
+ <name>BICOMP</name>
2223
+ <file> 84 87 72 88 85 77</file>
2224
+ </tool>
2225
+ <tool>
2226
+ <name>ICCARM</name>
2227
+ <file> 84 87 72 88 85 77</file>
2228
+ </tool>
2229
+ </inputs>
2230
+ </file>
2231
+ <file>
2232
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
2233
+ <outputs>
2234
+ <tool>
2235
+ <name>BICOMP</name>
2236
+ <file> 165</file>
2237
+ </tool>
2238
+ <tool>
2239
+ <name>ICCARM</name>
2240
+ <file> 187 159</file>
2241
+ </tool>
2242
+ </outputs>
2243
+ <inputs>
2244
+ <tool>
2245
+ <name>BICOMP</name>
2246
+ <file> 84 87 81</file>
2247
+ </tool>
2248
+ <tool>
2249
+ <name>ICCARM</name>
2250
+ <file> 84 87 81</file>
2251
+ </tool>
2252
+ </inputs>
2253
+ </file>
2254
+ <file>
2255
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
2256
+ <outputs>
2257
+ <tool>
2258
+ <name>BICOMP</name>
2259
+ <file> 181</file>
2260
+ </tool>
2261
+ <tool>
2262
+ <name>ICCARM</name>
2263
+ <file> 149 179</file>
2264
+ </tool>
2265
+ </outputs>
2266
+ <inputs>
2267
+ <tool>
2268
+ <name>BICOMP</name>
2269
+ <file> 84 87 42 57 44 46 86 59</file>
2270
+ </tool>
2271
+ <tool>
2272
+ <name>ICCARM</name>
2273
+ <file> 84 87 42 57 44 46 86 59</file>
2274
+ </tool>
2275
+ </inputs>
2276
+ </file>
2277
+ <file>
2278
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
2279
+ <outputs>
2280
+ <tool>
2281
+ <name>BICOMP</name>
2282
+ <file> 104</file>
2283
+ </tool>
2284
+ <tool>
2285
+ <name>ICCARM</name>
2286
+ <file> 152 93</file>
2287
+ </tool>
2288
+ </outputs>
2289
+ <inputs>
2290
+ <tool>
2291
+ <name>BICOMP</name>
2292
+ <file> 84 87 59 42 57 88 85 77 44 14 15 60 12 11 16 46 89 43 61 55 53 86 76 83 81 72</file>
2293
+ </tool>
2294
+ <tool>
2295
+ <name>ICCARM</name>
2296
+ <file> 84 87 59 42 57 88 85 77 44 14 15 60 12 11 16 46 89 43 61 55 53 86 76 83 81 72</file>
2297
+ </tool>
2298
+ </inputs>
2299
+ </file>
2300
+ <file>
2301
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
2302
+ <outputs>
2303
+ <tool>
2304
+ <name>BICOMP</name>
2305
+ <file> 116</file>
2306
+ </tool>
2307
+ <tool>
2308
+ <name>ICCARM</name>
2309
+ <file> 190 115</file>
2310
+ </tool>
2311
+ </outputs>
2312
+ <inputs>
2313
+ <tool>
2314
+ <name>BICOMP</name>
2315
+ <file> 59 10 22</file>
2316
+ </tool>
2317
+ <tool>
2318
+ <name>ICCARM</name>
2319
+ <file> 59 10 22</file>
2320
+ </tool>
2321
+ </inputs>
2322
+ </file>
2323
+ <file>
2324
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
2325
+ <outputs>
2326
+ <tool>
2327
+ <name>BICOMP</name>
2328
+ <file> 113</file>
2329
+ </tool>
2330
+ <tool>
2331
+ <name>ICCARM</name>
2332
+ <file> 105 148</file>
2333
+ </tool>
2334
+ </outputs>
2335
+ <inputs>
2336
+ <tool>
2337
+ <name>BICOMP</name>
2338
+ <file> 57 84 87 88 77</file>
2339
+ </tool>
2340
+ <tool>
2341
+ <name>ICCARM</name>
2342
+ <file> 57 84 87 88 77</file>
2343
+ </tool>
2344
+ </inputs>
2345
+ </file>
2346
+ <file>
2347
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
2348
+ <outputs>
2349
+ <tool>
2350
+ <name>BICOMP</name>
2351
+ <file> 109</file>
2352
+ </tool>
2353
+ <tool>
2354
+ <name>ICCARM</name>
2355
+ <file> 143 166</file>
2356
+ </tool>
2357
+ </outputs>
2358
+ <inputs>
2359
+ <tool>
2360
+ <name>BICOMP</name>
2361
+ <file> 84 87 85 6 22 4 30 0 5 47 1</file>
2362
+ </tool>
2363
+ <tool>
2364
+ <name>ICCARM</name>
2365
+ <file> 84 87 85 6 22 4 30 0 25 5 47 1</file>
2366
+ </tool>
2367
+ </inputs>
2368
+ </file>
2369
+ <file>
2370
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
2371
+ <outputs>
2372
+ <tool>
2373
+ <name>BICOMP</name>
2374
+ <file> 156</file>
2375
+ </tool>
2376
+ <tool>
2377
+ <name>ICCARM</name>
2378
+ <file> 188 127</file>
2379
+ </tool>
2380
+ </outputs>
2381
+ <inputs>
2382
+ <tool>
2383
+ <name>BICOMP</name>
2384
+ <file> 84 87 88</file>
2385
+ </tool>
2386
+ <tool>
2387
+ <name>ICCARM</name>
2388
+ <file> 84 87 88</file>
2389
+ </tool>
2390
+ </inputs>
2391
+ </file>
2392
+ <file>
2393
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
2394
+ <outputs>
2395
+ <tool>
2396
+ <name>BICOMP</name>
2397
+ <file> 184</file>
2398
+ </tool>
2399
+ <tool>
2400
+ <name>ICCARM</name>
2401
+ <file> 153 132</file>
2402
+ </tool>
2403
+ </outputs>
2404
+ <inputs>
2405
+ <tool>
2406
+ <name>BICOMP</name>
2407
+ <file> 84 87 61 55</file>
2408
+ </tool>
2409
+ <tool>
2410
+ <name>ICCARM</name>
2411
+ <file> 84 87 61 55</file>
2412
+ </tool>
2413
+ </inputs>
2414
+ </file>
2415
+ <file>
2416
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
2417
+ <outputs>
2418
+ <tool>
2419
+ <name>BICOMP</name>
2420
+ <file> 124</file>
2421
+ </tool>
2422
+ <tool>
2423
+ <name>ICCARM</name>
2424
+ <file> 141 128</file>
2425
+ </tool>
2426
+ </outputs>
2427
+ <inputs>
2428
+ <tool>
2429
+ <name>BICOMP</name>
2430
+ <file> 84 87 77 6 22 4 30 0 5 47 1</file>
2431
+ </tool>
2432
+ <tool>
2433
+ <name>ICCARM</name>
2434
+ <file> 84 87 77 6 22 4 30 0 25 5 47 1</file>
2435
+ </tool>
2436
+ </inputs>
2437
+ </file>
2438
+ <file>
2439
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
2440
+ <outputs>
2441
+ <tool>
2442
+ <name>BICOMP</name>
2443
+ <file> 125</file>
2444
+ </tool>
2445
+ <tool>
2446
+ <name>ICCARM</name>
2447
+ <file> 175 170</file>
2448
+ </tool>
2449
+ </outputs>
2450
+ <inputs>
2451
+ <tool>
2452
+ <name>BICOMP</name>
2453
+ <file> 84 87 46 53 89 55</file>
2454
+ </tool>
2455
+ <tool>
2456
+ <name>ICCARM</name>
2457
+ <file> 84 87 46 53 89 55</file>
2458
+ </tool>
2459
+ </inputs>
2460
+ </file>
2461
+ <file>
2462
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
2463
+ <outputs>
2464
+ <tool>
2465
+ <name>BICOMP</name>
2466
+ <file> 98</file>
2467
+ </tool>
2468
+ <tool>
2469
+ <name>ICCARM</name>
2470
+ <file> 147 186</file>
2471
+ </tool>
2472
+ </outputs>
2473
+ <inputs>
2474
+ <tool>
2475
+ <name>BICOMP</name>
2476
+ <file> 84 87 43 61</file>
2477
+ </tool>
2478
+ <tool>
2479
+ <name>ICCARM</name>
2480
+ <file> 84 87 43 61</file>
2481
+ </tool>
2482
+ </inputs>
2483
+ </file>
2484
+ <file>
2485
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
2486
+ <outputs>
2487
+ <tool>
2488
+ <name>BICOMP</name>
2489
+ <file> 155</file>
2490
+ </tool>
2491
+ <tool>
2492
+ <name>ICCARM</name>
2493
+ <file> 95 167</file>
2494
+ </tool>
2495
+ </outputs>
2496
+ <inputs>
2497
+ <tool>
2498
+ <name>BICOMP</name>
2499
+ <file> 84 87 89 43</file>
2500
+ </tool>
2501
+ <tool>
2502
+ <name>ICCARM</name>
2503
+ <file> 84 87 89 43</file>
2504
+ </tool>
2505
+ </inputs>
2506
+ </file>
2507
+ <file>
2508
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
2509
+ <outputs>
2510
+ <tool>
2511
+ <name>BICOMP</name>
2512
+ <file> 142</file>
2513
+ </tool>
2514
+ <tool>
2515
+ <name>ICCARM</name>
2516
+ <file> 151 174</file>
2517
+ </tool>
2518
+ </outputs>
2519
+ <inputs>
2520
+ <tool>
2521
+ <name>BICOMP</name>
2522
+ <file> 84 87 55 61</file>
2523
+ </tool>
2524
+ <tool>
2525
+ <name>ICCARM</name>
2526
+ <file> 84 87 55 61</file>
2527
+ </tool>
2528
+ </inputs>
2529
+ </file>
2530
+ <file>
2531
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
2532
+ <outputs>
2533
+ <tool>
2534
+ <name>BICOMP</name>
2535
+ <file> 157</file>
2536
+ </tool>
2537
+ <tool>
2538
+ <name>ICCARM</name>
2539
+ <file> 137 103</file>
2540
+ </tool>
2541
+ </outputs>
2542
+ <inputs>
2543
+ <tool>
2544
+ <name>BICOMP</name>
2545
+ <file> 84 87 53 88</file>
2546
+ </tool>
2547
+ <tool>
2548
+ <name>ICCARM</name>
2549
+ <file> 84 87 53 88</file>
2550
+ </tool>
2551
+ </inputs>
2552
+ </file>
2553
+ <file>
2554
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
2555
+ <outputs>
2556
+ <tool>
2557
+ <name>BICOMP</name>
2558
+ <file> 145</file>
2559
+ </tool>
2560
+ <tool>
2561
+ <name>ICCARM</name>
2562
+ <file> 150 168</file>
2563
+ </tool>
2564
+ </outputs>
2565
+ <inputs>
2566
+ <tool>
2567
+ <name>ICCARM</name>
2568
+ <file> 84 87 12 82 11 77 24 22 30 0 25 5 47 1 33 6 4</file>
2569
+ </tool>
2570
+ </inputs>
2571
+ </file>
2572
+ <file>
2573
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
2574
+ <outputs>
2575
+ <tool>
2576
+ <name>BICOMP</name>
2577
+ <file> 119</file>
2578
+ </tool>
2579
+ <tool>
2580
+ <name>ICCARM</name>
2581
+ <file> 172 163</file>
2582
+ </tool>
2583
+ </outputs>
2584
+ <inputs>
2585
+ <tool>
2586
+ <name>BICOMP</name>
2587
+ <file> 84 87 11</file>
2588
+ </tool>
2589
+ <tool>
2590
+ <name>ICCARM</name>
2591
+ <file> 84 87 11</file>
2592
+ </tool>
2593
+ </inputs>
2594
+ </file>
2595
+ <file>
2596
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
2597
+ <outputs>
2598
+ <tool>
2599
+ <name>BICOMP</name>
2600
+ <file> 177</file>
2601
+ </tool>
2602
+ <tool>
2603
+ <name>ICCARM</name>
2604
+ <file> 146 138</file>
2605
+ </tool>
2606
+ </outputs>
2607
+ <inputs>
2608
+ <tool>
2609
+ <name>BICOMP</name>
2610
+ <file> 84 87 44 14 12 88</file>
2611
+ </tool>
2612
+ <tool>
2613
+ <name>ICCARM</name>
2614
+ <file> 84 87 44 14 12 88</file>
2615
+ </tool>
2616
+ </inputs>
2617
+ </file>
2618
+ <file>
2619
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
2620
+ <outputs>
2621
+ <tool>
2622
+ <name>BICOMP</name>
2623
+ <file> 178</file>
2624
+ </tool>
2625
+ <tool>
2626
+ <name>ICCARM</name>
2627
+ <file> 169 139</file>
2628
+ </tool>
2629
+ </outputs>
2630
+ <inputs>
2631
+ <tool>
2632
+ <name>BICOMP</name>
2633
+ <file> 84 87 15</file>
2634
+ </tool>
2635
+ <tool>
2636
+ <name>ICCARM</name>
2637
+ <file> 84 87 15</file>
2638
+ </tool>
2639
+ </inputs>
2640
+ </file>
2641
+ <file>
2642
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
2643
+ <outputs>
2644
+ <tool>
2645
+ <name>BICOMP</name>
2646
+ <file> 136</file>
2647
+ </tool>
2648
+ <tool>
2649
+ <name>ICCARM</name>
2650
+ <file> 99 107</file>
2651
+ </tool>
2652
+ </outputs>
2653
+ <inputs>
2654
+ <tool>
2655
+ <name>BICOMP</name>
2656
+ <file> 84 87 14 15 60</file>
2657
+ </tool>
2658
+ <tool>
2659
+ <name>ICCARM</name>
2660
+ <file> 84 87 14 15 60</file>
2661
+ </tool>
2662
+ </inputs>
2663
+ </file>
2664
+ <file>
2665
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
2666
+ <outputs>
2667
+ <tool>
2668
+ <name>BICOMP</name>
2669
+ <file> 111</file>
2670
+ </tool>
2671
+ <tool>
2672
+ <name>ICCARM</name>
2673
+ <file> 144 161</file>
2674
+ </tool>
2675
+ </outputs>
2676
+ <inputs>
2677
+ <tool>
2678
+ <name>ICCARM</name>
2679
+ <file> 84 87 16</file>
2680
+ </tool>
2681
+ </inputs>
2682
+ </file>
2683
+ <file>
2684
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
2685
+ <outputs>
2686
+ <tool>
2687
+ <name>BICOMP</name>
2688
+ <file> 118</file>
2689
+ </tool>
2690
+ <tool>
2691
+ <name>ICCARM</name>
2692
+ <file> 140 108</file>
2693
+ </tool>
2694
+ </outputs>
2695
+ <inputs>
2696
+ <tool>
2697
+ <name>ICCARM</name>
2698
+ <file> 84 87 60 16</file>
2699
+ </tool>
2700
+ </inputs>
2701
+ </file>
2702
+ <file>
2703
+ <name>$PROJ_DIR$\srcIAR\Cstartup.s</name>
2704
+ <outputs>
2705
+ <tool>
2706
+ <name>AARM</name>
2707
+ <file> 97 135</file>
2708
+ </tool>
2709
+ </outputs>
2710
+ <inputs>
2711
+ <tool>
2712
+ <name>AARM</name>
2713
+ <file> 222</file>
2714
+ </tool>
2715
+ </inputs>
2716
+ </file>
2717
+ </configuration>
2718
+ <configuration>
2719
+ <name>RAM_Debug</name>
2720
+ <outputs>
2721
+ <file>$PROJ_DIR$\Resource\SAM7_FLASH.mac</file>
2722
+ <file>$TOOLKIT_DIR$\inc\DLib_Defaults.h</file>
2723
+ <file>$TOOLKIT_DIR$\inc\DLib_Threads.h</file>
2724
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.h</file>
2725
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerModel.h</file>
2726
+ <file>$TOOLKIT_DIR$\inc\ymath.h</file>
2727
+ <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>
2728
+ <file>$TOOLKIT_DIR$\inc\math.h</file>
2729
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.h</file>
2730
+ <file>$PROJ_DIR$\..\..\test\system\src\Executor.h</file>
2731
+ <file>$PROJ_DIR$\incIAR\project.h</file>
2732
+ <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>
2733
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.h</file>
2734
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.h</file>
2735
+ <file>$PROJ_DIR$\..\..\test\system\src\AT91SAM7X256.h</file>
2736
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.h</file>
2737
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.h</file>
2738
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.h</file>
2739
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.h</file>
2740
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.h</file>
2741
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.h</file>
2742
+ <file>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.h</file>
2743
+ <file>$TOOLKIT_DIR$\lib\dl4t_tl_in.a</file>
2744
+ <file>$TOOLKIT_DIR$\inc\ycheck.h</file>
2745
+ <file>$PROJ_DIR$\..\..\test\system\src\ModelConfig.h</file>
2746
+ <file>$TOOLKIT_DIR$\inc\stdio.h</file>
2747
+ <file>$TOOLKIT_DIR$\inc\DLib_Config_Normal.h</file>
2748
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConductor.h</file>
2749
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.h</file>
2750
+ <file>$PROJ_DIR$\..\..\test\system\src\Types.h</file>
2751
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.h</file>
2752
+ <file>$TOOLKIT_DIR$\inc\yvals.h</file>
2753
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartModel.h</file>
2754
+ <file>$TOOLKIT_DIR$\lib\rt4t_al.a</file>
2755
+ <file>$TOOLKIT_DIR$\inc\ysizet.h</file>
2756
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcConductor.h</file>
2757
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.h</file>
2758
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerHardware.h</file>
2759
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcModel.h</file>
2760
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardware.h</file>
2761
+ <file>$PROJ_DIR$\..\..\test\system\src\Model.h</file>
2762
+ <file>$TOOLKIT_DIR$\lib\shs_l.a</file>
2763
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.h</file>
2764
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.h</file>
2765
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.h</file>
2766
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.h</file>
2767
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.c</file>
2768
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.h</file>
2769
+ <file>$TOOLKIT_DIR$\inc\xencoding_limits.h</file>
2770
+ <file>$PROJ_DIR$\..\..\test\system\src\Main.c</file>
2771
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.c</file>
2772
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcConductor.c</file>
2773
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardware.c</file>
2774
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.h</file>
2775
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcModel.c</file>
2776
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.h</file>
2777
+ <file>$PROJ_DIR$\..\..\test\system\src\Executor.c</file>
2778
+ <file>$PROJ_DIR$\..\..\examples\src\Model.h</file>
2779
+ <file>$PROJ_DIR$\..\..\test\system\src\Model.c</file>
2780
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.h</file>
2781
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.h</file>
2782
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.h</file>
2783
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.c</file>
2784
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.c</file>
2785
+ <file>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.c</file>
2786
+ <file>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.c</file>
2787
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.c</file>
2788
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConductor.c</file>
2789
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.c</file>
2790
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.c</file>
2791
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerHardware.c</file>
2792
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.c</file>
2793
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.h</file>
2794
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerModel.c</file>
2795
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.c</file>
2796
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartConductor.c</file>
2797
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.h</file>
2798
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.h</file>
2799
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartHardware.c</file>
2800
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartModel.c</file>
2801
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.c</file>
2802
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.h</file>
2803
+ <file>$PROJ_DIR$\..\..\examples\src\ModelConfig.h</file>
2804
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.h</file>
2805
+ <file>$PROJ_DIR$\..\..\examples\src\Types.h</file>
2806
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.h</file>
2807
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.h</file>
2808
+ <file>$PROJ_DIR$\..\..\examples\src\AT91SAM7X256.h</file>
2809
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.h</file>
2810
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.h</file>
2811
+ <file>$PROJ_DIR$\..\..\test\system\src\TimerConductor.h</file>
2812
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.h</file>
2813
+ <file>$PROJ_DIR$\..\..\test\system\src\UsartHardware.h</file>
2814
+ <file>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.h</file>
2815
+ <file>$PROJ_DIR$\..\src\ext_irq.c</file>
2816
+ <file>$PROJ_DIR$\..\src\interrupt_timer.c</file>
2817
+ <file>$PROJ_DIR$\..\src\interrupt_Usart.c</file>
2818
+ <file>$PROJ_DIR$\..\src\main.c</file>
2819
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartConductor.o</file>
2820
+ <file>$PROJ_DIR$\RAM_Debug\List\AdcConductor.lst</file>
2821
+ <file>$PROJ_DIR$\RAM_Debug\List\TimerInterruptHandler.lst</file>
2822
+ <file>$PROJ_DIR$\RAM_Debug\List\AdcHardwareConfigurator.lst</file>
2823
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerHardware.pbi</file>
2824
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartHardware.pbi</file>
2825
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartConductor.pbi</file>
2826
+ <file>$PROJ_DIR$\RAM_Debug\List\TimerConfigurator.lst</file>
2827
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartPutChar.lst</file>
2828
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerConductor.o</file>
2829
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerConfigurator.o</file>
2830
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartBaudRateRegisterCalculator.pbi</file>
2831
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcHardwareConfigurator.o</file>
2832
+ <file>$PROJ_DIR$\RAM_Debug\List\AdcModel.lst</file>
2833
+ <file>$PROJ_DIR$\RAM_Debug\List\TimerConductor.lst</file>
2834
+ <file>$PROJ_DIR$\RAM_Debug\List\TimerHardware.lst</file>
2835
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcHardware.o</file>
2836
+ <file>$PROJ_DIR$\RAM_Debug\List\TemperatureFilter.lst</file>
2837
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcModel.pbi</file>
2838
+ <file>$PROJ_DIR$\RAM_Debug\List\IntrinsicsWrapper.lst</file>
2839
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Cstartup.o</file>
2840
+ <file>$PROJ_DIR$\RAM_Debug\Obj\interrupt_Usart.o</file>
2841
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcHardwareConfigurator.pbi</file>
2842
+ <file>$PROJ_DIR$\RAM_Debug\Obj\main.pbi</file>
2843
+ <file>$PROJ_DIR$\RAM_Debug\List\AdcTemperatureSensor.lst</file>
2844
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerInterruptHandler.pbi</file>
2845
+ <file>$PROJ_DIR$\RAM_Debug\List\Model.lst</file>
2846
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Model.pbi</file>
2847
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcHardware.pbi</file>
2848
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartBaudRateRegisterCalculator.lst</file>
2849
+ <file>$PROJ_DIR$\RAM_Debug\Obj\ext_irq.o</file>
2850
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerInterruptHandler.o</file>
2851
+ <file>$PROJ_DIR$\RAM_Debug\List\Cstartup.lst</file>
2852
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerConfigurator.pbi</file>
2853
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.o</file>
2854
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcTemperatureSensor.pbi</file>
2855
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartConfigurator.lst</file>
2856
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartTransmitBufferStatus.lst</file>
2857
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartPutChar.pbi</file>
2858
+ <file>$PROJ_DIR$\RAM_Debug\List\TaskScheduler.lst</file>
2859
+ <file>$PROJ_DIR$\RAM_Debug\Obj\interrupt_timer.pbi</file>
2860
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartHardware.lst</file>
2861
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TaskScheduler.pbi</file>
2862
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.pbi</file>
2863
+ <file>$PROJ_DIR$\RAM_Debug\List\Cstartup_SAM7.lst</file>
2864
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartTransmitBufferStatus.o</file>
2865
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerModel.pbi</file>
2866
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartConductor.lst</file>
2867
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartPutChar.o</file>
2868
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerInterruptConfigurator.pbi</file>
2869
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerHardware.o</file>
2870
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcTemperatureSensor.o</file>
2871
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcModel.o</file>
2872
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Executor.pbi</file>
2873
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TemperatureFilter.o</file>
2874
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcConductor.pbi</file>
2875
+ <file>$PROJ_DIR$\RAM_Debug\List\TimerInterruptConfigurator.lst</file>
2876
+ <file>$PROJ_DIR$\RAM_Debug\List\UsartModel.lst</file>
2877
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartConfigurator.o</file>
2878
+ <file>$PROJ_DIR$\RAM_Debug\Obj\cmock_demo.pbd</file>
2879
+ <file>$PROJ_DIR$\RAM_Debug\Exe\cmock_demo.out</file>
2880
+ <file>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</file>
2881
+ <file>$PROJ_DIR$\RAM_Debug\List\TemperatureCalculator.lst</file>
2882
+ <file>$PROJ_DIR$\RAM_Debug\List\AdcHardware.lst</file>
2883
+ <file>$PROJ_DIR$\RAM_Debug\List\Executor.lst</file>
2884
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartModel.pbi</file>
2885
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerConductor.pbi</file>
2886
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartConfigurator.pbi</file>
2887
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartHardware.o</file>
2888
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TemperatureCalculator.o</file>
2889
+ <file>$PROJ_DIR$\RAM_Debug\Obj\AdcConductor.o</file>
2890
+ <file>$PROJ_DIR$\RAM_Debug\Obj\IntrinsicsWrapper.o</file>
2891
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Model.o</file>
2892
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartTransmitBufferStatus.pbi</file>
2893
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerModel.o</file>
2894
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Executor.o</file>
2895
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TemperatureCalculator.pbi</file>
2896
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartBaudRateRegisterCalculator.o</file>
2897
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TimerInterruptConfigurator.o</file>
2898
+ <file>$PROJ_DIR$\RAM_Debug\Obj\interrupt_Usart.pbi</file>
2899
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TaskScheduler.o</file>
2900
+ <file>$PROJ_DIR$\RAM_Debug\Obj\Main.o</file>
2901
+ <file>$PROJ_DIR$\RAM_Debug\Obj\ext_irq.pbi</file>
2902
+ <file>$PROJ_DIR$\RAM_Debug\List\Main.lst</file>
2903
+ <file>$PROJ_DIR$\RAM_Debug\List\TimerModel.lst</file>
2904
+ <file>$PROJ_DIR$\RAM_Debug\Obj\interrupt_timer.o</file>
2905
+ <file>$PROJ_DIR$\RAM_Debug\Obj\UsartModel.o</file>
2906
+ <file>$PROJ_DIR$\RAM_Debug\Obj\TemperatureFilter.pbi</file>
2907
+ <file>$PROJ_DIR$\RAM_Debug\Obj\IntrinsicsWrapper.pbi</file>
2908
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_RAM.icf</file>
2909
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</file>
2910
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</file>
2911
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</file>
2912
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.c</file>
2913
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</file>
2914
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.c</file>
2915
+ <file>$PROJ_DIR$\..\..\examples\src\Main.c</file>
2916
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</file>
2917
+ <file>$PROJ_DIR$\..\..\examples\src\Model.c</file>
2918
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</file>
2919
+ <file>$PROJ_DIR$\Resource\SAM7_RAM.mac</file>
2920
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_FLASH.icf</file>
2921
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</file>
2922
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</file>
2923
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</file>
2924
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</file>
2925
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</file>
2926
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</file>
2927
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</file>
2928
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.c</file>
2929
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.c</file>
2930
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</file>
2931
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</file>
2932
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</file>
2933
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</file>
2934
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</file>
2935
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</file>
2936
+ <file>$PROJ_DIR$\srcIAR\Cstartup.s</file>
2937
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X-EK.h</file>
2938
+ <file>$PROJ_DIR$\incIAR\lib_AT91SAM7X256.h</file>
2939
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X256_inc.h</file>
2940
+ </outputs>
2941
+ <file>
2942
+ <name>[ROOT_NODE]</name>
2943
+ <outputs>
2944
+ <tool>
2945
+ <name>ILINK</name>
2946
+ <file> 158</file>
2947
+ </tool>
2948
+ </outputs>
2949
+ </file>
2950
+ <file>
2951
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcTemperatureSensor.c</name>
2952
+ <outputs>
2953
+ <tool>
2954
+ <name>BICOMP</name>
2955
+ <file> 133</file>
2956
+ </tool>
2957
+ <tool>
2958
+ <name>ICCARM</name>
2959
+ <file> 122 149</file>
2960
+ </tool>
2961
+ </outputs>
2962
+ <inputs>
2963
+ <tool>
2964
+ <name>BICOMP</name>
2965
+ <file> 29 14 36</file>
2966
+ </tool>
2967
+ <tool>
2968
+ <name>ICCARM</name>
2969
+ <file> 29 14 36</file>
2970
+ </tool>
2971
+ </inputs>
2972
+ </file>
2973
+ <file>
2974
+ <name>$PROJ_DIR$\..\..\test\system\src\Main.c</name>
2975
+ <outputs>
2976
+ <tool>
2977
+ <name>BICOMP</name>
2978
+ <file> 121</file>
2979
+ </tool>
2980
+ <tool>
2981
+ <name>ICCARM</name>
2982
+ <file> 181 179</file>
2983
+ </tool>
2984
+ </outputs>
2985
+ <inputs>
2986
+ <tool>
2987
+ <name>BICOMP</name>
2988
+ <file> 29 14 9 40 21 19 28 27 92 42 20 32 18 91 90 37 30 3 8 4 35 39 93 36 38</file>
2989
+ </tool>
2990
+ <tool>
2991
+ <name>ICCARM</name>
2992
+ <file> 29 14 9 40 21 19 28 27 92 42 20 32 18 91 90 37 30 3 8 4 35 39 93 36 38</file>
2993
+ </tool>
2994
+ </inputs>
2995
+ </file>
2996
+ <file>
2997
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcHardwareConfigurator.c</name>
2998
+ <outputs>
2999
+ <tool>
3000
+ <name>BICOMP</name>
3001
+ <file> 120</file>
3002
+ </tool>
3003
+ <tool>
3004
+ <name>ICCARM</name>
3005
+ <file> 101 110</file>
3006
+ </tool>
3007
+ </outputs>
3008
+ <inputs>
3009
+ <tool>
3010
+ <name>BICOMP</name>
3011
+ <file> 29 14 93 24</file>
3012
+ </tool>
3013
+ <tool>
3014
+ <name>ICCARM</name>
3015
+ <file> 29 14 93 24</file>
3016
+ </tool>
3017
+ </inputs>
3018
+ </file>
3019
+ <file>
3020
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcConductor.c</name>
3021
+ <outputs>
3022
+ <tool>
3023
+ <name>BICOMP</name>
3024
+ <file> 153</file>
3025
+ </tool>
3026
+ <tool>
3027
+ <name>ICCARM</name>
3028
+ <file> 99 168</file>
3029
+ </tool>
3030
+ </outputs>
3031
+ <inputs>
3032
+ <tool>
3033
+ <name>BICOMP</name>
3034
+ <file> 29 14 35 38 39</file>
3035
+ </tool>
3036
+ <tool>
3037
+ <name>ICCARM</name>
3038
+ <file> 29 14 35 38 39</file>
3039
+ </tool>
3040
+ </inputs>
3041
+ </file>
3042
+ <file>
3043
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcHardware.c</name>
3044
+ <outputs>
3045
+ <tool>
3046
+ <name>BICOMP</name>
3047
+ <file> 126</file>
3048
+ </tool>
3049
+ <tool>
3050
+ <name>ICCARM</name>
3051
+ <file> 161 114</file>
3052
+ </tool>
3053
+ </outputs>
3054
+ <inputs>
3055
+ <tool>
3056
+ <name>BICOMP</name>
3057
+ <file> 29 14 39 93 36</file>
3058
+ </tool>
3059
+ <tool>
3060
+ <name>ICCARM</name>
3061
+ <file> 29 14 39 93 36</file>
3062
+ </tool>
3063
+ </inputs>
3064
+ </file>
3065
+ <file>
3066
+ <name>$PROJ_DIR$\..\..\test\system\src\AdcModel.c</name>
3067
+ <outputs>
3068
+ <tool>
3069
+ <name>BICOMP</name>
3070
+ <file> 116</file>
3071
+ </tool>
3072
+ <tool>
3073
+ <name>ICCARM</name>
3074
+ <file> 111 150</file>
3075
+ </tool>
3076
+ </outputs>
3077
+ <inputs>
3078
+ <tool>
3079
+ <name>BICOMP</name>
3080
+ <file> 29 14 38 21 19 28</file>
3081
+ </tool>
3082
+ <tool>
3083
+ <name>ICCARM</name>
3084
+ <file> 29 14 38 21 19 28</file>
3085
+ </tool>
3086
+ </inputs>
3087
+ </file>
3088
+ <file>
3089
+ <name>$PROJ_DIR$\..\..\test\system\src\Executor.c</name>
3090
+ <outputs>
3091
+ <tool>
3092
+ <name>BICOMP</name>
3093
+ <file> 151</file>
3094
+ </tool>
3095
+ <tool>
3096
+ <name>ICCARM</name>
3097
+ <file> 162 173</file>
3098
+ </tool>
3099
+ </outputs>
3100
+ <inputs>
3101
+ <tool>
3102
+ <name>BICOMP</name>
3103
+ <file> 29 14 9 40 27 90 35 11 23</file>
3104
+ </tool>
3105
+ <tool>
3106
+ <name>ICCARM</name>
3107
+ <file> 29 14 9 40 27 90 35 11 23</file>
3108
+ </tool>
3109
+ </inputs>
3110
+ </file>
3111
+ <file>
3112
+ <name>$PROJ_DIR$\..\..\test\system\src\Model.c</name>
3113
+ <outputs>
3114
+ <tool>
3115
+ <name>BICOMP</name>
3116
+ <file> 125</file>
3117
+ </tool>
3118
+ <tool>
3119
+ <name>ICCARM</name>
3120
+ <file> 124 170</file>
3121
+ </tool>
3122
+ </outputs>
3123
+ <inputs>
3124
+ <tool>
3125
+ <name>BICOMP</name>
3126
+ <file> 40 29 14 21 28</file>
3127
+ </tool>
3128
+ <tool>
3129
+ <name>ICCARM</name>
3130
+ <file> 40 29 14 21 28</file>
3131
+ </tool>
3132
+ </inputs>
3133
+ </file>
3134
+ <file>
3135
+ <name>$PROJ_DIR$\..\..\test\system\src\TemperatureFilter.c</name>
3136
+ <outputs>
3137
+ <tool>
3138
+ <name>BICOMP</name>
3139
+ <file> 185</file>
3140
+ </tool>
3141
+ <tool>
3142
+ <name>ICCARM</name>
3143
+ <file> 115 152</file>
3144
+ </tool>
3145
+ </outputs>
3146
+ <inputs>
3147
+ <tool>
3148
+ <name>BICOMP</name>
3149
+ <file> 29 14 28 7 23 5 31 1 6 48 2</file>
3150
+ </tool>
3151
+ <tool>
3152
+ <name>ICCARM</name>
3153
+ <file> 29 14 28 7 23 5 31 1 26 6 48 2</file>
3154
+ </tool>
3155
+ </inputs>
3156
+ </file>
3157
+ <file>
3158
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerConfigurator.c</name>
3159
+ <outputs>
3160
+ <tool>
3161
+ <name>BICOMP</name>
3162
+ <file> 131</file>
3163
+ </tool>
3164
+ <tool>
3165
+ <name>ICCARM</name>
3166
+ <file> 105 108</file>
3167
+ </tool>
3168
+ </outputs>
3169
+ <inputs>
3170
+ <tool>
3171
+ <name>BICOMP</name>
3172
+ <file> 29 14 30 3</file>
3173
+ </tool>
3174
+ <tool>
3175
+ <name>ICCARM</name>
3176
+ <file> 29 14 30 3</file>
3177
+ </tool>
3178
+ </inputs>
3179
+ </file>
3180
+ <file>
3181
+ <name>$PROJ_DIR$\..\..\test\system\src\TemperatureCalculator.c</name>
3182
+ <outputs>
3183
+ <tool>
3184
+ <name>BICOMP</name>
3185
+ <file> 174</file>
3186
+ </tool>
3187
+ <tool>
3188
+ <name>ICCARM</name>
3189
+ <file> 160 167</file>
3190
+ </tool>
3191
+ </outputs>
3192
+ <inputs>
3193
+ <tool>
3194
+ <name>BICOMP</name>
3195
+ <file> 29 14 19 7 23 5 31 1 6 48 2</file>
3196
+ </tool>
3197
+ <tool>
3198
+ <name>ICCARM</name>
3199
+ <file> 29 14 19 7 23 5 31 1 26 6 48 2</file>
3200
+ </tool>
3201
+ </inputs>
3202
+ </file>
3203
+ <file>
3204
+ <name>$PROJ_DIR$\..\..\test\system\src\TaskScheduler.c</name>
3205
+ <outputs>
3206
+ <tool>
3207
+ <name>BICOMP</name>
3208
+ <file> 140</file>
3209
+ </tool>
3210
+ <tool>
3211
+ <name>ICCARM</name>
3212
+ <file> 137 178</file>
3213
+ </tool>
3214
+ </outputs>
3215
+ <inputs>
3216
+ <tool>
3217
+ <name>BICOMP</name>
3218
+ <file> 29 14 21</file>
3219
+ </tool>
3220
+ <tool>
3221
+ <name>ICCARM</name>
3222
+ <file> 29 14 21</file>
3223
+ </tool>
3224
+ </inputs>
3225
+ </file>
3226
+ <file>
3227
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerInterruptConfigurator.c</name>
3228
+ <outputs>
3229
+ <tool>
3230
+ <name>BICOMP</name>
3231
+ <file> 147</file>
3232
+ </tool>
3233
+ <tool>
3234
+ <name>ICCARM</name>
3235
+ <file> 154 176</file>
3236
+ </tool>
3237
+ </outputs>
3238
+ <inputs>
3239
+ <tool>
3240
+ <name>BICOMP</name>
3241
+ <file> 29 14 3 8</file>
3242
+ </tool>
3243
+ <tool>
3244
+ <name>ICCARM</name>
3245
+ <file> 29 14 3 8</file>
3246
+ </tool>
3247
+ </inputs>
3248
+ </file>
3249
+ <file>
3250
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerConductor.c</name>
3251
+ <outputs>
3252
+ <tool>
3253
+ <name>BICOMP</name>
3254
+ <file> 164</file>
3255
+ </tool>
3256
+ <tool>
3257
+ <name>ICCARM</name>
3258
+ <file> 112 107</file>
3259
+ </tool>
3260
+ </outputs>
3261
+ <inputs>
3262
+ <tool>
3263
+ <name>BICOMP</name>
3264
+ <file> 29 14 90 4 37 8</file>
3265
+ </tool>
3266
+ <tool>
3267
+ <name>ICCARM</name>
3268
+ <file> 29 14 90 4 37 8</file>
3269
+ </tool>
3270
+ </inputs>
3271
+ </file>
3272
+ <file>
3273
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerInterruptHandler.c</name>
3274
+ <outputs>
3275
+ <tool>
3276
+ <name>BICOMP</name>
3277
+ <file> 123</file>
3278
+ </tool>
3279
+ <tool>
3280
+ <name>ICCARM</name>
3281
+ <file> 100 129</file>
3282
+ </tool>
3283
+ </outputs>
3284
+ <inputs>
3285
+ <tool>
3286
+ <name>BICOMP</name>
3287
+ <file> 29 14 8 3</file>
3288
+ </tool>
3289
+ <tool>
3290
+ <name>ICCARM</name>
3291
+ <file> 29 14 8 3</file>
3292
+ </tool>
3293
+ </inputs>
3294
+ </file>
3295
+ <file>
3296
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartConfigurator.c</name>
3297
+ <outputs>
3298
+ <tool>
3299
+ <name>BICOMP</name>
3300
+ <file> 165</file>
3301
+ </tool>
3302
+ <tool>
3303
+ <name>ICCARM</name>
3304
+ <file> 134 156</file>
3305
+ </tool>
3306
+ </outputs>
3307
+ <inputs>
3308
+ <tool>
3309
+ <name>BICOMP</name>
3310
+ <file> 29 14 42</file>
3311
+ </tool>
3312
+ <tool>
3313
+ <name>ICCARM</name>
3314
+ <file> 29 14 42</file>
3315
+ </tool>
3316
+ </inputs>
3317
+ </file>
3318
+ <file>
3319
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerHardware.c</name>
3320
+ <outputs>
3321
+ <tool>
3322
+ <name>BICOMP</name>
3323
+ <file> 102</file>
3324
+ </tool>
3325
+ <tool>
3326
+ <name>ICCARM</name>
3327
+ <file> 113 148</file>
3328
+ </tool>
3329
+ </outputs>
3330
+ <inputs>
3331
+ <tool>
3332
+ <name>BICOMP</name>
3333
+ <file> 29 14 37 30</file>
3334
+ </tool>
3335
+ <tool>
3336
+ <name>ICCARM</name>
3337
+ <file> 29 14 37 30</file>
3338
+ </tool>
3339
+ </inputs>
3340
+ </file>
3341
+ <file>
3342
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartTransmitBufferStatus.c</name>
3343
+ <outputs>
3344
+ <tool>
3345
+ <name>BICOMP</name>
3346
+ <file> 171</file>
3347
+ </tool>
3348
+ <tool>
3349
+ <name>ICCARM</name>
3350
+ <file> 135 143</file>
3351
+ </tool>
3352
+ </outputs>
3353
+ <inputs>
3354
+ <tool>
3355
+ <name>BICOMP</name>
3356
+ <file> 29 14 91</file>
3357
+ </tool>
3358
+ <tool>
3359
+ <name>ICCARM</name>
3360
+ <file> 29 14 91</file>
3361
+ </tool>
3362
+ </inputs>
3363
+ </file>
3364
+ <file>
3365
+ <name>$PROJ_DIR$\..\..\test\system\src\TimerModel.c</name>
3366
+ <outputs>
3367
+ <tool>
3368
+ <name>BICOMP</name>
3369
+ <file> 144</file>
3370
+ </tool>
3371
+ <tool>
3372
+ <name>ICCARM</name>
3373
+ <file> 182 172</file>
3374
+ </tool>
3375
+ </outputs>
3376
+ <inputs>
3377
+ <tool>
3378
+ <name>BICOMP</name>
3379
+ <file> 29 14 4 21</file>
3380
+ </tool>
3381
+ <tool>
3382
+ <name>ICCARM</name>
3383
+ <file> 29 14 4 21</file>
3384
+ </tool>
3385
+ </inputs>
3386
+ </file>
3387
+ <file>
3388
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartBaudRateRegisterCalculator.c</name>
3389
+ <outputs>
3390
+ <tool>
3391
+ <name>BICOMP</name>
3392
+ <file> 109</file>
3393
+ </tool>
3394
+ <tool>
3395
+ <name>ICCARM</name>
3396
+ <file> 127 175</file>
3397
+ </tool>
3398
+ </outputs>
3399
+ <inputs>
3400
+ <tool>
3401
+ <name>BICOMP</name>
3402
+ <file> 29 14 18</file>
3403
+ </tool>
3404
+ <tool>
3405
+ <name>ICCARM</name>
3406
+ <file> 29 14 18</file>
3407
+ </tool>
3408
+ </inputs>
3409
+ </file>
3410
+ <file>
3411
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartConductor.c</name>
3412
+ <outputs>
3413
+ <tool>
3414
+ <name>BICOMP</name>
3415
+ <file> 104</file>
3416
+ </tool>
3417
+ <tool>
3418
+ <name>ICCARM</name>
3419
+ <file> 145 98</file>
3420
+ </tool>
3421
+ </outputs>
3422
+ <inputs>
3423
+ <tool>
3424
+ <name>BICOMP</name>
3425
+ <file> 29 14 27 92 32 21</file>
3426
+ </tool>
3427
+ <tool>
3428
+ <name>ICCARM</name>
3429
+ <file> 29 14 27 92 32 21</file>
3430
+ </tool>
3431
+ </inputs>
3432
+ </file>
3433
+ <file>
3434
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartHardware.c</name>
3435
+ <outputs>
3436
+ <tool>
3437
+ <name>BICOMP</name>
3438
+ <file> 103</file>
3439
+ </tool>
3440
+ <tool>
3441
+ <name>ICCARM</name>
3442
+ <file> 139 166</file>
3443
+ </tool>
3444
+ </outputs>
3445
+ <inputs>
3446
+ <tool>
3447
+ <name>BICOMP</name>
3448
+ <file> 29 14 92 42 20</file>
3449
+ </tool>
3450
+ <tool>
3451
+ <name>ICCARM</name>
3452
+ <file> 29 14 92 42 20</file>
3453
+ </tool>
3454
+ </inputs>
3455
+ </file>
3456
+ <file>
3457
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartModel.c</name>
3458
+ <outputs>
3459
+ <tool>
3460
+ <name>BICOMP</name>
3461
+ <file> 163</file>
3462
+ </tool>
3463
+ <tool>
3464
+ <name>ICCARM</name>
3465
+ <file> 155 184</file>
3466
+ </tool>
3467
+ </outputs>
3468
+ <inputs>
3469
+ <tool>
3470
+ <name>BICOMP</name>
3471
+ <file> 29 14 32 24 18 28 25 23 31 1 6 48 2 34 7 5</file>
3472
+ </tool>
3473
+ <tool>
3474
+ <name>ICCARM</name>
3475
+ <file> 29 14 32 24 18 28 25 23 31 1 26 6 48 2 34 7 5</file>
3476
+ </tool>
3477
+ </inputs>
3478
+ </file>
3479
+ <file>
3480
+ <name>$PROJ_DIR$\..\..\test\system\src\UsartPutChar.c</name>
3481
+ <outputs>
3482
+ <tool>
3483
+ <name>BICOMP</name>
3484
+ <file> 136</file>
3485
+ </tool>
3486
+ <tool>
3487
+ <name>ICCARM</name>
3488
+ <file> 106 146</file>
3489
+ </tool>
3490
+ </outputs>
3491
+ <inputs>
3492
+ <tool>
3493
+ <name>BICOMP</name>
3494
+ <file> 29 14 20 91</file>
3495
+ </tool>
3496
+ <tool>
3497
+ <name>ICCARM</name>
3498
+ <file> 29 14 20 91</file>
3499
+ </tool>
3500
+ </inputs>
3501
+ </file>
3502
+ <file>
3503
+ <name>$PROJ_DIR$\..\src\ext_irq.c</name>
3504
+ <outputs>
3505
+ <tool>
3506
+ <name>BICOMP</name>
3507
+ <file> 180</file>
3508
+ </tool>
3509
+ <tool>
3510
+ <name>ICCARM</name>
3511
+ <file> 128</file>
3512
+ </tool>
3513
+ </outputs>
3514
+ </file>
3515
+ <file>
3516
+ <name>$PROJ_DIR$\..\src\interrupt_timer.c</name>
3517
+ <outputs>
3518
+ <tool>
3519
+ <name>BICOMP</name>
3520
+ <file> 138</file>
3521
+ </tool>
3522
+ <tool>
3523
+ <name>ICCARM</name>
3524
+ <file> 183</file>
3525
+ </tool>
3526
+ </outputs>
3527
+ </file>
3528
+ <file>
3529
+ <name>$PROJ_DIR$\..\src\interrupt_Usart.c</name>
3530
+ <outputs>
3531
+ <tool>
3532
+ <name>BICOMP</name>
3533
+ <file> 177</file>
3534
+ </tool>
3535
+ <tool>
3536
+ <name>ICCARM</name>
3537
+ <file> 119</file>
3538
+ </tool>
3539
+ </outputs>
3540
+ </file>
3541
+ <file>
3542
+ <name>$PROJ_DIR$\..\src\main.c</name>
3543
+ <outputs>
3544
+ <tool>
3545
+ <name>BICOMP</name>
3546
+ <file> 121</file>
3547
+ </tool>
3548
+ <tool>
3549
+ <name>ICCARM</name>
3550
+ <file> 179</file>
3551
+ </tool>
3552
+ </outputs>
3553
+ </file>
3554
+ <file>
3555
+ <name>$PROJ_DIR$\RAM_Debug\Obj\cmock_demo.pbd</name>
3556
+ <inputs>
3557
+ <tool>
3558
+ <name>BILINK</name>
3559
+ <file> 153 126 120 116 133 141 151 186 125 140 174 185 164 131 102 147 123 144 109 104 165 103 163 136 171 121</file>
3560
+ </tool>
3561
+ </inputs>
3562
+ </file>
3563
+ <file>
3564
+ <name>$PROJ_DIR$\RAM_Debug\Exe\cmock_demo.out</name>
3565
+ <inputs>
3566
+ <tool>
3567
+ <name>ILINK</name>
3568
+ <file> 187 168 114 110 150 149 118 132 173 169 179 170 178 167 152 107 108 148 176 129 172 175 98 156 166 184 146 143 41 33 22</file>
3569
+ </tool>
3570
+ </inputs>
3571
+ </file>
3572
+ <file>
3573
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
3574
+ <outputs>
3575
+ <tool>
3576
+ <name>BICOMP</name>
3577
+ <file> 141</file>
3578
+ </tool>
3579
+ <tool>
3580
+ <name>ICCARM</name>
3581
+ <file> 142 132</file>
3582
+ </tool>
3583
+ </outputs>
3584
+ <inputs>
3585
+ <tool>
3586
+ <name>BICOMP</name>
3587
+ <file> 10 11 23 216 87 217</file>
3588
+ </tool>
3589
+ <tool>
3590
+ <name>ICCARM</name>
3591
+ <file> 10 11 23 216 87 217</file>
3592
+ </tool>
3593
+ </inputs>
3594
+ </file>
3595
+ <file>
3596
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
3597
+ <outputs>
3598
+ <tool>
3599
+ <name>BICOMP</name>
3600
+ <file> 120</file>
3601
+ </tool>
3602
+ <tool>
3603
+ <name>ICCARM</name>
3604
+ <file> 101 110</file>
3605
+ </tool>
3606
+ </outputs>
3607
+ <inputs>
3608
+ <tool>
3609
+ <name>BICOMP</name>
3610
+ <file> 84 87 83 82</file>
3611
+ </tool>
3612
+ <tool>
3613
+ <name>ICCARM</name>
3614
+ <file> 84 87 83 82</file>
3615
+ </tool>
3616
+ </inputs>
3617
+ </file>
3618
+ <file>
3619
+ <name>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</name>
3620
+ <outputs>
3621
+ <tool>
3622
+ <name>BICOMP</name>
3623
+ <file> 153</file>
3624
+ </tool>
3625
+ <tool>
3626
+ <name>ICCARM</name>
3627
+ <file> 99 168</file>
3628
+ </tool>
3629
+ </outputs>
3630
+ <inputs>
3631
+ <tool>
3632
+ <name>BICOMP</name>
3633
+ <file> 84 87 86 72 76</file>
3634
+ </tool>
3635
+ <tool>
3636
+ <name>ICCARM</name>
3637
+ <file> 84 87 86 72 76</file>
3638
+ </tool>
3639
+ </inputs>
3640
+ </file>
3641
+ <file>
3642
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
3643
+ <outputs>
3644
+ <tool>
3645
+ <name>BICOMP</name>
3646
+ <file> 126</file>
3647
+ </tool>
3648
+ <tool>
3649
+ <name>ICCARM</name>
3650
+ <file> 161 114</file>
3651
+ </tool>
3652
+ </outputs>
3653
+ <inputs>
3654
+ <tool>
3655
+ <name>BICOMP</name>
3656
+ <file> 84 87 76 83 81</file>
3657
+ </tool>
3658
+ <tool>
3659
+ <name>ICCARM</name>
3660
+ <file> 84 87 76 83 81</file>
3661
+ </tool>
3662
+ </inputs>
3663
+ </file>
3664
+ <file>
3665
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
3666
+ <outputs>
3667
+ <tool>
3668
+ <name>BICOMP</name>
3669
+ <file> 116</file>
3670
+ </tool>
3671
+ <tool>
3672
+ <name>ICCARM</name>
3673
+ <file> 111 150</file>
3674
+ </tool>
3675
+ </outputs>
3676
+ <inputs>
3677
+ <tool>
3678
+ <name>BICOMP</name>
3679
+ <file> 84 87 72 88 85 77</file>
3680
+ </tool>
3681
+ <tool>
3682
+ <name>ICCARM</name>
3683
+ <file> 84 87 72 88 85 77</file>
3684
+ </tool>
3685
+ </inputs>
3686
+ </file>
3687
+ <file>
3688
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
3689
+ <outputs>
3690
+ <tool>
3691
+ <name>BICOMP</name>
3692
+ <file> 133</file>
3693
+ </tool>
3694
+ <tool>
3695
+ <name>ICCARM</name>
3696
+ <file> 122 149</file>
3697
+ </tool>
3698
+ </outputs>
3699
+ <inputs>
3700
+ <tool>
3701
+ <name>BICOMP</name>
3702
+ <file> 84 87 81</file>
3703
+ </tool>
3704
+ <tool>
3705
+ <name>ICCARM</name>
3706
+ <file> 84 87 81</file>
3707
+ </tool>
3708
+ </inputs>
3709
+ </file>
3710
+ <file>
3711
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
3712
+ <outputs>
3713
+ <tool>
3714
+ <name>BICOMP</name>
3715
+ <file> 151</file>
3716
+ </tool>
3717
+ <tool>
3718
+ <name>ICCARM</name>
3719
+ <file> 162 173</file>
3720
+ </tool>
3721
+ </outputs>
3722
+ <inputs>
3723
+ <tool>
3724
+ <name>BICOMP</name>
3725
+ <file> 84 87 43 57 45 47 86 59</file>
3726
+ </tool>
3727
+ <tool>
3728
+ <name>ICCARM</name>
3729
+ <file> 84 87 43 57 45 47 86 59</file>
3730
+ </tool>
3731
+ </inputs>
3732
+ </file>
3733
+ <file>
3734
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
3735
+ <outputs>
3736
+ <tool>
3737
+ <name>BICOMP</name>
3738
+ <file> 121</file>
3739
+ </tool>
3740
+ <tool>
3741
+ <name>ICCARM</name>
3742
+ <file> 181 179</file>
3743
+ </tool>
3744
+ </outputs>
3745
+ <inputs>
3746
+ <tool>
3747
+ <name>BICOMP</name>
3748
+ <file> 84 87 59 43 57 88 85 77 45 15 16 60 13 12 17 47 89 44 61 55 53 86 76 83 81 72</file>
3749
+ </tool>
3750
+ <tool>
3751
+ <name>ICCARM</name>
3752
+ <file> 84 87 59 43 57 88 85 77 45 15 16 60 13 12 17 47 89 44 61 55 53 86 76 83 81 72</file>
3753
+ </tool>
3754
+ </inputs>
3755
+ </file>
3756
+ <file>
3757
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
3758
+ <outputs>
3759
+ <tool>
3760
+ <name>BICOMP</name>
3761
+ <file> 186</file>
3762
+ </tool>
3763
+ <tool>
3764
+ <name>ICCARM</name>
3765
+ <file> 117 169</file>
3766
+ </tool>
3767
+ </outputs>
3768
+ <inputs>
3769
+ <tool>
3770
+ <name>BICOMP</name>
3771
+ <file> 59 11 23</file>
3772
+ </tool>
3773
+ <tool>
3774
+ <name>ICCARM</name>
3775
+ <file> 59 11 23</file>
3776
+ </tool>
3777
+ </inputs>
3778
+ </file>
3779
+ <file>
3780
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
3781
+ <outputs>
3782
+ <tool>
3783
+ <name>BICOMP</name>
3784
+ <file> 125</file>
3785
+ </tool>
3786
+ <tool>
3787
+ <name>ICCARM</name>
3788
+ <file> 124 170</file>
3789
+ </tool>
3790
+ </outputs>
3791
+ <inputs>
3792
+ <tool>
3793
+ <name>BICOMP</name>
3794
+ <file> 57 84 87 88 77</file>
3795
+ </tool>
3796
+ <tool>
3797
+ <name>ICCARM</name>
3798
+ <file> 57 84 87 88 77</file>
3799
+ </tool>
3800
+ </inputs>
3801
+ </file>
3802
+ <file>
3803
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
3804
+ <outputs>
3805
+ <tool>
3806
+ <name>BICOMP</name>
3807
+ <file> 174</file>
3808
+ </tool>
3809
+ <tool>
3810
+ <name>ICCARM</name>
3811
+ <file> 160 167</file>
3812
+ </tool>
3813
+ </outputs>
3814
+ <inputs>
3815
+ <tool>
3816
+ <name>BICOMP</name>
3817
+ <file> 84 87 85 7 23 5 31 1 6 48 2</file>
3818
+ </tool>
3819
+ <tool>
3820
+ <name>ICCARM</name>
3821
+ <file> 84 87 85 7 23 5 31 1 26 6 48 2</file>
3822
+ </tool>
3823
+ </inputs>
3824
+ </file>
3825
+ <file>
3826
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
3827
+ <outputs>
3828
+ <tool>
3829
+ <name>BICOMP</name>
3830
+ <file> 140</file>
3831
+ </tool>
3832
+ <tool>
3833
+ <name>ICCARM</name>
3834
+ <file> 137 178</file>
3835
+ </tool>
3836
+ </outputs>
3837
+ <inputs>
3838
+ <tool>
3839
+ <name>BICOMP</name>
3840
+ <file> 84 87 88</file>
3841
+ </tool>
3842
+ <tool>
3843
+ <name>ICCARM</name>
3844
+ <file> 84 87 88</file>
3845
+ </tool>
3846
+ </inputs>
3847
+ </file>
3848
+ <file>
3849
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
3850
+ <outputs>
3851
+ <tool>
3852
+ <name>BICOMP</name>
3853
+ <file> 147</file>
3854
+ </tool>
3855
+ <tool>
3856
+ <name>ICCARM</name>
3857
+ <file> 154 176</file>
3858
+ </tool>
3859
+ </outputs>
3860
+ <inputs>
3861
+ <tool>
3862
+ <name>BICOMP</name>
3863
+ <file> 84 87 61 55</file>
3864
+ </tool>
3865
+ <tool>
3866
+ <name>ICCARM</name>
3867
+ <file> 84 87 61 55</file>
3868
+ </tool>
3869
+ </inputs>
3870
+ </file>
3871
+ <file>
3872
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
3873
+ <outputs>
3874
+ <tool>
3875
+ <name>BICOMP</name>
3876
+ <file> 185</file>
3877
+ </tool>
3878
+ <tool>
3879
+ <name>ICCARM</name>
3880
+ <file> 115 152</file>
3881
+ </tool>
3882
+ </outputs>
3883
+ <inputs>
3884
+ <tool>
3885
+ <name>BICOMP</name>
3886
+ <file> 84 87 77 7 23 5 31 1 6 48 2</file>
3887
+ </tool>
3888
+ <tool>
3889
+ <name>ICCARM</name>
3890
+ <file> 84 87 77 7 23 5 31 1 26 6 48 2</file>
3891
+ </tool>
3892
+ </inputs>
3893
+ </file>
3894
+ <file>
3895
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
3896
+ <outputs>
3897
+ <tool>
3898
+ <name>BICOMP</name>
3899
+ <file> 164</file>
3900
+ </tool>
3901
+ <tool>
3902
+ <name>ICCARM</name>
3903
+ <file> 112 107</file>
3904
+ </tool>
3905
+ </outputs>
3906
+ <inputs>
3907
+ <tool>
3908
+ <name>BICOMP</name>
3909
+ <file> 84 87 47 53 89 55</file>
3910
+ </tool>
3911
+ <tool>
3912
+ <name>ICCARM</name>
3913
+ <file> 84 87 47 53 89 55</file>
3914
+ </tool>
3915
+ </inputs>
3916
+ </file>
3917
+ <file>
3918
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
3919
+ <outputs>
3920
+ <tool>
3921
+ <name>BICOMP</name>
3922
+ <file> 131</file>
3923
+ </tool>
3924
+ <tool>
3925
+ <name>ICCARM</name>
3926
+ <file> 105 108</file>
3927
+ </tool>
3928
+ </outputs>
3929
+ <inputs>
3930
+ <tool>
3931
+ <name>BICOMP</name>
3932
+ <file> 84 87 44 61</file>
3933
+ </tool>
3934
+ <tool>
3935
+ <name>ICCARM</name>
3936
+ <file> 84 87 44 61</file>
3937
+ </tool>
3938
+ </inputs>
3939
+ </file>
3940
+ <file>
3941
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
3942
+ <outputs>
3943
+ <tool>
3944
+ <name>BICOMP</name>
3945
+ <file> 102</file>
3946
+ </tool>
3947
+ <tool>
3948
+ <name>ICCARM</name>
3949
+ <file> 113 148</file>
3950
+ </tool>
3951
+ </outputs>
3952
+ <inputs>
3953
+ <tool>
3954
+ <name>BICOMP</name>
3955
+ <file> 84 87 89 44</file>
3956
+ </tool>
3957
+ <tool>
3958
+ <name>ICCARM</name>
3959
+ <file> 84 87 89 44</file>
3960
+ </tool>
3961
+ </inputs>
3962
+ </file>
3963
+ <file>
3964
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
3965
+ <outputs>
3966
+ <tool>
3967
+ <name>BICOMP</name>
3968
+ <file> 123</file>
3969
+ </tool>
3970
+ <tool>
3971
+ <name>ICCARM</name>
3972
+ <file> 100 129</file>
3973
+ </tool>
3974
+ </outputs>
3975
+ <inputs>
3976
+ <tool>
3977
+ <name>BICOMP</name>
3978
+ <file> 84 87 55 61</file>
3979
+ </tool>
3980
+ <tool>
3981
+ <name>ICCARM</name>
3982
+ <file> 84 87 55 61</file>
3983
+ </tool>
3984
+ </inputs>
3985
+ </file>
3986
+ <file>
3987
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
3988
+ <outputs>
3989
+ <tool>
3990
+ <name>BICOMP</name>
3991
+ <file> 144</file>
3992
+ </tool>
3993
+ <tool>
3994
+ <name>ICCARM</name>
3995
+ <file> 182 172</file>
3996
+ </tool>
3997
+ </outputs>
3998
+ <inputs>
3999
+ <tool>
4000
+ <name>BICOMP</name>
4001
+ <file> 84 87 53 88</file>
4002
+ </tool>
4003
+ <tool>
4004
+ <name>ICCARM</name>
4005
+ <file> 84 87 53 88</file>
4006
+ </tool>
4007
+ </inputs>
4008
+ </file>
4009
+ <file>
4010
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
4011
+ <outputs>
4012
+ <tool>
4013
+ <name>BICOMP</name>
4014
+ <file> 163</file>
4015
+ </tool>
4016
+ <tool>
4017
+ <name>ICCARM</name>
4018
+ <file> 155 184</file>
4019
+ </tool>
4020
+ </outputs>
4021
+ <inputs>
4022
+ <tool>
4023
+ <name>BICOMP</name>
4024
+ <file> 84 87 13 82 12 77 25 23 31 1 6 48 2 34 7 5</file>
4025
+ </tool>
4026
+ <tool>
4027
+ <name>ICCARM</name>
4028
+ <file> 84 87 13 82 12 77 25 23 31 1 26 6 48 2 34 7 5</file>
4029
+ </tool>
4030
+ </inputs>
4031
+ </file>
4032
+ <file>
4033
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
4034
+ <outputs>
4035
+ <tool>
4036
+ <name>BICOMP</name>
4037
+ <file> 109</file>
4038
+ </tool>
4039
+ <tool>
4040
+ <name>ICCARM</name>
4041
+ <file> 127 175</file>
4042
+ </tool>
4043
+ </outputs>
4044
+ <inputs>
4045
+ <tool>
4046
+ <name>BICOMP</name>
4047
+ <file> 84 87 12</file>
4048
+ </tool>
4049
+ <tool>
4050
+ <name>ICCARM</name>
4051
+ <file> 84 87 12</file>
4052
+ </tool>
4053
+ </inputs>
4054
+ </file>
4055
+ <file>
4056
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
4057
+ <outputs>
4058
+ <tool>
4059
+ <name>BICOMP</name>
4060
+ <file> 104</file>
4061
+ </tool>
4062
+ <tool>
4063
+ <name>ICCARM</name>
4064
+ <file> 145 98</file>
4065
+ </tool>
4066
+ </outputs>
4067
+ <inputs>
4068
+ <tool>
4069
+ <name>BICOMP</name>
4070
+ <file> 84 87 45 15 13 88</file>
4071
+ </tool>
4072
+ <tool>
4073
+ <name>ICCARM</name>
4074
+ <file> 84 87 45 15 13 88</file>
4075
+ </tool>
4076
+ </inputs>
4077
+ </file>
4078
+ <file>
4079
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
4080
+ <outputs>
4081
+ <tool>
4082
+ <name>BICOMP</name>
4083
+ <file> 165</file>
4084
+ </tool>
4085
+ <tool>
4086
+ <name>ICCARM</name>
4087
+ <file> 134 156</file>
4088
+ </tool>
4089
+ </outputs>
4090
+ <inputs>
4091
+ <tool>
4092
+ <name>BICOMP</name>
4093
+ <file> 84 87 16</file>
4094
+ </tool>
4095
+ <tool>
4096
+ <name>ICCARM</name>
4097
+ <file> 84 87 16</file>
4098
+ </tool>
4099
+ </inputs>
4100
+ </file>
4101
+ <file>
4102
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
4103
+ <outputs>
4104
+ <tool>
4105
+ <name>BICOMP</name>
4106
+ <file> 103</file>
4107
+ </tool>
4108
+ <tool>
4109
+ <name>ICCARM</name>
4110
+ <file> 139 166</file>
4111
+ </tool>
4112
+ </outputs>
4113
+ <inputs>
4114
+ <tool>
4115
+ <name>BICOMP</name>
4116
+ <file> 84 87 15 16 60</file>
4117
+ </tool>
4118
+ <tool>
4119
+ <name>ICCARM</name>
4120
+ <file> 84 87 15 16 60</file>
4121
+ </tool>
4122
+ </inputs>
4123
+ </file>
4124
+ <file>
4125
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
4126
+ <outputs>
4127
+ <tool>
4128
+ <name>BICOMP</name>
4129
+ <file> 171</file>
4130
+ </tool>
4131
+ <tool>
4132
+ <name>ICCARM</name>
4133
+ <file> 135 143</file>
4134
+ </tool>
4135
+ </outputs>
4136
+ <inputs>
4137
+ <tool>
4138
+ <name>BICOMP</name>
4139
+ <file> 84 87 17</file>
4140
+ </tool>
4141
+ <tool>
4142
+ <name>ICCARM</name>
4143
+ <file> 84 87 17</file>
4144
+ </tool>
4145
+ </inputs>
4146
+ </file>
4147
+ <file>
4148
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
4149
+ <outputs>
4150
+ <tool>
4151
+ <name>BICOMP</name>
4152
+ <file> 136</file>
4153
+ </tool>
4154
+ <tool>
4155
+ <name>ICCARM</name>
4156
+ <file> 106 146</file>
4157
+ </tool>
4158
+ </outputs>
4159
+ <inputs>
4160
+ <tool>
4161
+ <name>BICOMP</name>
4162
+ <file> 84 87 60 17</file>
4163
+ </tool>
4164
+ <tool>
4165
+ <name>ICCARM</name>
4166
+ <file> 84 87 60 17</file>
4167
+ </tool>
4168
+ </inputs>
4169
+ </file>
4170
+ <file>
4171
+ <name>$PROJ_DIR$\srcIAR\Cstartup.s</name>
4172
+ <outputs>
4173
+ <tool>
4174
+ <name>AARM</name>
4175
+ <file> 118 130</file>
4176
+ </tool>
4177
+ </outputs>
4178
+ <inputs>
4179
+ <tool>
4180
+ <name>AARM</name>
4181
+ <file> 218</file>
4182
+ </tool>
4183
+ </inputs>
4184
+ </file>
4185
+ <forcedrebuild>
4186
+ <name>$PROJ_DIR$\..\src\ext_irq.c</name>
4187
+ <tool>ICCARM</tool>
4188
+ </forcedrebuild>
4189
+ <forcedrebuild>
4190
+ <name>$PROJ_DIR$\..\src\interrupt_timer.c</name>
4191
+ <tool>ICCARM</tool>
4192
+ </forcedrebuild>
4193
+ <forcedrebuild>
4194
+ <name>$PROJ_DIR$\..\src\interrupt_Usart.c</name>
4195
+ <tool>ICCARM</tool>
4196
+ </forcedrebuild>
4197
+ <forcedrebuild>
4198
+ <name>$PROJ_DIR$\..\src\main.c</name>
4199
+ <tool>ICCARM</tool>
4200
+ </forcedrebuild>
4201
+ </configuration>
4202
+ </project>
4203
+
4204
+