ceedling 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (991) hide show
  1. data/.gitignore +4 -0
  2. data/.vim +1 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE +19 -0
  5. data/Rakefile +18 -0
  6. data/bin/ceedling +39 -0
  7. data/ceedling.gemspec +23 -0
  8. data/lib/ceedling/version.rb +10 -0
  9. data/lib/ceedling/version.rb.erb +10 -0
  10. data/lib/ceedling.rb +5 -0
  11. data/new_project_template/build/.gitkeep +0 -0
  12. data/new_project_template/project.yml +65 -0
  13. data/new_project_template/rakefile.rb +4 -0
  14. data/new_project_template/src/.gitkeep +0 -0
  15. data/new_project_template/test/.gitkeep +0 -0
  16. data/new_project_template/test/support/.gitkeep +0 -0
  17. data/new_project_template/vendor/ceedling/config/test_environment.rb +12 -0
  18. data/new_project_template/vendor/ceedling/docs/Ceedling Packet.odt +0 -0
  19. data/new_project_template/vendor/ceedling/docs/Ceedling Packet.pdf +0 -0
  20. data/new_project_template/vendor/ceedling/docs/CeedlingLogo.png +0 -0
  21. data/new_project_template/vendor/ceedling/examples/temp_sensor/gcc.yml +42 -0
  22. data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v4.yml +91 -0
  23. data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v5.yml +80 -0
  24. data/new_project_template/vendor/ceedling/examples/temp_sensor/project.yml +65 -0
  25. data/new_project_template/vendor/ceedling/examples/temp_sensor/rakefile.rb +5 -0
  26. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.c +42 -0
  27. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.h +13 -0
  28. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardware.c +27 -0
  29. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardware.h +11 -0
  30. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardwareConfigurator.c +18 -0
  31. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardwareConfigurator.h +10 -0
  32. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcModel.c +33 -0
  33. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcModel.h +13 -0
  34. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcTemperatureSensor.c +51 -0
  35. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcTemperatureSensor.h +10 -0
  36. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Executor.c +25 -0
  37. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Executor.h +9 -0
  38. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/IntrinsicsWrapper.c +18 -0
  39. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/IntrinsicsWrapper.h +7 -0
  40. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Main.c +46 -0
  41. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Main.h +7 -0
  42. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Model.c +10 -0
  43. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Model.h +8 -0
  44. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/ModelConfig.h +7 -0
  45. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TaskScheduler.c +72 -0
  46. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TaskScheduler.h +11 -0
  47. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.c +27 -0
  48. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.h +8 -0
  49. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureFilter.c +39 -0
  50. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureFilter.h +10 -0
  51. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConductor.c +15 -0
  52. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConductor.h +9 -0
  53. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConfigurator.c +51 -0
  54. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConfigurator.h +15 -0
  55. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerHardware.c +15 -0
  56. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerHardware.h +8 -0
  57. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptConfigurator.c +55 -0
  58. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptConfigurator.h +13 -0
  59. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptHandler.c +25 -0
  60. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptHandler.h +10 -0
  61. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerModel.c +9 -0
  62. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerModel.h +8 -0
  63. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Types.h +90 -0
  64. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c +18 -0
  65. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +8 -0
  66. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConductor.c +21 -0
  67. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConductor.h +7 -0
  68. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConfigurator.c +39 -0
  69. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConfigurator.h +13 -0
  70. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartHardware.c +22 -0
  71. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartHardware.h +9 -0
  72. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartModel.c +34 -0
  73. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartModel.h +10 -0
  74. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartPutChar.c +16 -0
  75. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartPutChar.h +8 -0
  76. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartTransmitBufferStatus.c +7 -0
  77. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartTransmitBufferStatus.h +8 -0
  78. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcConductor.c +121 -0
  79. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcHardware.c +44 -0
  80. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcModel.c +33 -0
  81. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestExecutor.c +36 -0
  82. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestMain.c +24 -0
  83. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestModel.c +20 -0
  84. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTaskScheduler.c +104 -0
  85. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureCalculator.c +33 -0
  86. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureFilter.c +69 -0
  87. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerConductor.c +32 -0
  88. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerHardware.c +26 -0
  89. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerModel.c +18 -0
  90. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  91. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartConductor.c +40 -0
  92. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartHardware.c +36 -0
  93. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartModel.c +40 -0
  94. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.c +12 -0
  95. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.h +8 -0
  96. data/new_project_template/vendor/ceedling/lib/cacheinator.rb +42 -0
  97. data/new_project_template/vendor/ceedling/lib/cacheinator_helper.rb +12 -0
  98. data/new_project_template/vendor/ceedling/lib/cmock_builder.rb +15 -0
  99. data/new_project_template/vendor/ceedling/lib/configurator.rb +254 -0
  100. data/new_project_template/vendor/ceedling/lib/configurator_builder.rb +408 -0
  101. data/new_project_template/vendor/ceedling/lib/configurator_plugins.rb +96 -0
  102. data/new_project_template/vendor/ceedling/lib/configurator_setup.rb +114 -0
  103. data/new_project_template/vendor/ceedling/lib/configurator_validator.rb +154 -0
  104. data/new_project_template/vendor/ceedling/lib/constants.rb +66 -0
  105. data/new_project_template/vendor/ceedling/lib/defaults.rb +349 -0
  106. data/new_project_template/vendor/ceedling/lib/dependinator.rb +92 -0
  107. data/new_project_template/vendor/ceedling/lib/file_finder.rb +132 -0
  108. data/new_project_template/vendor/ceedling/lib/file_finder_helper.rb +54 -0
  109. data/new_project_template/vendor/ceedling/lib/file_path_utils.rb +177 -0
  110. data/new_project_template/vendor/ceedling/lib/file_system_utils.rb +59 -0
  111. data/new_project_template/vendor/ceedling/lib/file_wrapper.rb +74 -0
  112. data/new_project_template/vendor/ceedling/lib/generator.rb +131 -0
  113. data/new_project_template/vendor/ceedling/lib/generator_test_results.rb +90 -0
  114. data/new_project_template/vendor/ceedling/lib/generator_test_results_sanity_checker.rb +62 -0
  115. data/new_project_template/vendor/ceedling/lib/generator_test_runner.rb +206 -0
  116. data/new_project_template/vendor/ceedling/lib/loginator.rb +31 -0
  117. data/new_project_template/vendor/ceedling/lib/makefile.rb +46 -0
  118. data/new_project_template/vendor/ceedling/lib/objects.yml +278 -0
  119. data/new_project_template/vendor/ceedling/lib/plugin.rb +63 -0
  120. data/new_project_template/vendor/ceedling/lib/plugin_manager.rb +85 -0
  121. data/new_project_template/vendor/ceedling/lib/plugin_manager_helper.rb +19 -0
  122. data/new_project_template/vendor/ceedling/lib/plugin_reportinator.rb +75 -0
  123. data/new_project_template/vendor/ceedling/lib/plugin_reportinator_helper.rb +52 -0
  124. data/new_project_template/vendor/ceedling/lib/preprocessinator.rb +43 -0
  125. data/new_project_template/vendor/ceedling/lib/preprocessinator_extractor.rb +27 -0
  126. data/new_project_template/vendor/ceedling/lib/preprocessinator_file_handler.rb +21 -0
  127. data/new_project_template/vendor/ceedling/lib/preprocessinator_helper.rb +46 -0
  128. data/new_project_template/vendor/ceedling/lib/preprocessinator_includes_handler.rb +55 -0
  129. data/new_project_template/vendor/ceedling/lib/project_config_manager.rb +38 -0
  130. data/new_project_template/vendor/ceedling/lib/project_file_loader.rb +64 -0
  131. data/new_project_template/vendor/ceedling/lib/rake_utils.rb +17 -0
  132. data/new_project_template/vendor/ceedling/lib/rake_wrapper.rb +31 -0
  133. data/new_project_template/vendor/ceedling/lib/rakefile.rb +60 -0
  134. data/new_project_template/vendor/ceedling/lib/release_invoker.rb +29 -0
  135. data/new_project_template/vendor/ceedling/lib/release_invoker_helper.rb +16 -0
  136. data/new_project_template/vendor/ceedling/lib/reportinator.rb +9 -0
  137. data/new_project_template/vendor/ceedling/lib/rules_cmock.rake +9 -0
  138. data/new_project_template/vendor/ceedling/lib/rules_preprocess.rake +26 -0
  139. data/new_project_template/vendor/ceedling/lib/rules_release.rake +63 -0
  140. data/new_project_template/vendor/ceedling/lib/rules_release_aux_dependencies.rake +15 -0
  141. data/new_project_template/vendor/ceedling/lib/rules_tests.rake +49 -0
  142. data/new_project_template/vendor/ceedling/lib/rules_tests_aux_dependencies.rake +15 -0
  143. data/new_project_template/vendor/ceedling/lib/setupinator.rb +45 -0
  144. data/new_project_template/vendor/ceedling/lib/stream_wrapper.rb +20 -0
  145. data/new_project_template/vendor/ceedling/lib/streaminator.rb +41 -0
  146. data/new_project_template/vendor/ceedling/lib/streaminator_helper.rb +15 -0
  147. data/new_project_template/vendor/ceedling/lib/system_wrapper.rb +67 -0
  148. data/new_project_template/vendor/ceedling/lib/task_invoker.rb +85 -0
  149. data/new_project_template/vendor/ceedling/lib/tasks_base.rake +104 -0
  150. data/new_project_template/vendor/ceedling/lib/tasks_filesystem.rake +89 -0
  151. data/new_project_template/vendor/ceedling/lib/tasks_release.rake +22 -0
  152. data/new_project_template/vendor/ceedling/lib/tasks_tests.rake +49 -0
  153. data/new_project_template/vendor/ceedling/lib/tasks_vendor.rake +36 -0
  154. data/new_project_template/vendor/ceedling/lib/test_includes_extractor.rb +81 -0
  155. data/new_project_template/vendor/ceedling/lib/test_invoker.rb +72 -0
  156. data/new_project_template/vendor/ceedling/lib/test_invoker_helper.rb +41 -0
  157. data/new_project_template/vendor/ceedling/lib/tool_executor.rb +178 -0
  158. data/new_project_template/vendor/ceedling/lib/tool_executor_helper.rb +57 -0
  159. data/new_project_template/vendor/ceedling/lib/verbosinator.rb +10 -0
  160. data/new_project_template/vendor/ceedling/lib/yaml_wrapper.rb +16 -0
  161. data/new_project_template/vendor/ceedling/plugins/stdout_ide_tests_report/stdout_ide_tests_report.rb +44 -0
  162. data/new_project_template/vendor/ceedling/plugins/stdout_ide_tests_report/stdout_ide_tests_report.yml +4 -0
  163. data/new_project_template/vendor/ceedling/plugins/stdout_pretty_tests_report/stdout_pretty_tests_report.rb +108 -0
  164. data/new_project_template/vendor/ceedling/plugins/stdout_pretty_tests_report/stdout_pretty_tests_report.yml +4 -0
  165. data/new_project_template/vendor/ceedling/plugins/xml_tests_report/xml_tests_report.rb +106 -0
  166. data/new_project_template/vendor/ceedling/rakefile.rb +59 -0
  167. data/new_project_template/vendor/ceedling/rakefile_helper.rb +23 -0
  168. data/new_project_template/vendor/ceedling/release/build.info +1 -0
  169. data/new_project_template/vendor/ceedling/release/version.info +1 -0
  170. data/new_project_template/vendor/ceedling/test/integration/paths.yml +17 -0
  171. data/new_project_template/vendor/ceedling/test/integration/paths_test.rb +80 -0
  172. data/new_project_template/vendor/ceedling/test/integration/rake_rules_aux_dependencies_test.rb +75 -0
  173. data/new_project_template/vendor/ceedling/test/integration/rake_rules_cmock_test.rb +74 -0
  174. data/new_project_template/vendor/ceedling/test/integration/rake_rules_preprocess_test.rb +178 -0
  175. data/new_project_template/vendor/ceedling/test/integration/rake_rules_test.rb +268 -0
  176. data/new_project_template/vendor/ceedling/test/integration/rake_tasks_test.rb +103 -0
  177. data/new_project_template/vendor/ceedling/test/integration_test_helper.rb +34 -0
  178. data/new_project_template/vendor/ceedling/test/rakefile_rules.rb +10 -0
  179. data/new_project_template/vendor/ceedling/test/rakefile_rules_aux_dependencies.rb +10 -0
  180. data/new_project_template/vendor/ceedling/test/rakefile_rules_cmock.rb +10 -0
  181. data/new_project_template/vendor/ceedling/test/rakefile_rules_preprocess.rb +10 -0
  182. data/new_project_template/vendor/ceedling/test/rakefile_tasks.rb +10 -0
  183. data/new_project_template/vendor/ceedling/test/system/file_system_dependencies.yml +20 -0
  184. data/new_project_template/vendor/ceedling/test/system/file_system_kitchen_sink.yml +20 -0
  185. data/new_project_template/vendor/ceedling/test/system/file_system_mocks.yml +20 -0
  186. data/new_project_template/vendor/ceedling/test/system/file_system_preprocess.yml +20 -0
  187. data/new_project_template/vendor/ceedling/test/system/file_system_simple.yml +20 -0
  188. data/new_project_template/vendor/ceedling/test/system/file_system_test.rb +78 -0
  189. data/new_project_template/vendor/ceedling/test/system/mocks/include/a_file.h +2 -0
  190. data/new_project_template/vendor/ceedling/test/system/mocks/include/other_stuff.h +2 -0
  191. data/new_project_template/vendor/ceedling/test/system/mocks/include/stuff.h +3 -0
  192. data/new_project_template/vendor/ceedling/test/system/mocks/source/a_file.c +9 -0
  193. data/new_project_template/vendor/ceedling/test/system/mocks/test/test_a_file.c +41 -0
  194. data/new_project_template/vendor/ceedling/test/system/mocks/test/test_no_file.c +14 -0
  195. data/new_project_template/vendor/ceedling/test/system/project_mocks.yml +43 -0
  196. data/new_project_template/vendor/ceedling/test/system/project_mocks_test.rb +38 -0
  197. data/new_project_template/vendor/ceedling/test/system/project_simple.yml +36 -0
  198. data/new_project_template/vendor/ceedling/test/system/project_simple_test.rb +39 -0
  199. data/new_project_template/vendor/ceedling/test/system/rule_mocks_test.rb +44 -0
  200. data/new_project_template/vendor/ceedling/test/system/rule_runners_test.rb +44 -0
  201. data/new_project_template/vendor/ceedling/test/system/simple/include/other_stuff.h +2 -0
  202. data/new_project_template/vendor/ceedling/test/system/simple/include/stuff.h +3 -0
  203. data/new_project_template/vendor/ceedling/test/system/simple/source/other_stuff.c +6 -0
  204. data/new_project_template/vendor/ceedling/test/system/simple/source/stuff.c +7 -0
  205. data/new_project_template/vendor/ceedling/test/system/simple/test/test_other_stuff.c +30 -0
  206. data/new_project_template/vendor/ceedling/test/system/simple/test/test_stuff.c +51 -0
  207. data/new_project_template/vendor/ceedling/test/system_test_helper.rb +73 -0
  208. data/new_project_template/vendor/ceedling/test/test_helper.rb +93 -0
  209. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_builder_test.rb +571 -0
  210. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_helper_test.rb +234 -0
  211. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_test.rb +232 -0
  212. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_validator_test.rb +169 -0
  213. data/new_project_template/vendor/ceedling/test/unit/busted/deep_merge_fix_test.rb +55 -0
  214. data/new_project_template/vendor/ceedling/test/unit/busted/dependinator_test.rb +129 -0
  215. data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_helper_test.rb +45 -0
  216. data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_test.rb +114 -0
  217. data/new_project_template/vendor/ceedling/test/unit/busted/file_path_utils_test.rb +97 -0
  218. data/new_project_template/vendor/ceedling/test/unit/busted/file_system_utils_test.rb +21 -0
  219. data/new_project_template/vendor/ceedling/test/unit/busted/generator_test.rb +187 -0
  220. data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_results_test.rb +129 -0
  221. data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_runner_test.rb +478 -0
  222. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_extractor_test.rb +729 -0
  223. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_file_handler_test.rb +38 -0
  224. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_helper_test.rb +156 -0
  225. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_includes_handler_test.rb +93 -0
  226. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_test.rb +57 -0
  227. data/new_project_template/vendor/ceedling/test/unit/busted/project_file_loader_test.rb +142 -0
  228. data/new_project_template/vendor/ceedling/test/unit/busted/setupinator_test.rb +45 -0
  229. data/new_project_template/vendor/ceedling/test/unit/busted/streaminator_test.rb +49 -0
  230. data/new_project_template/vendor/ceedling/test/unit/busted/task_invoker_test.rb +69 -0
  231. data/new_project_template/vendor/ceedling/test/unit/busted/test_includes_extractor_test.rb +111 -0
  232. data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_helper_test.rb +62 -0
  233. data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_test.rb +47 -0
  234. data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_helper_test.rb +100 -0
  235. data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_test.rb +351 -0
  236. data/new_project_template/vendor/ceedling/test/unit/busted/verbosinator_test.rb +65 -0
  237. data/new_project_template/vendor/ceedling/test/unit_test_helper.rb +16 -0
  238. data/new_project_template/vendor/ceedling/vendor/behaviors/Manifest.txt +9 -0
  239. data/new_project_template/vendor/ceedling/vendor/behaviors/Rakefile +19 -0
  240. data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  241. data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors.rb +76 -0
  242. data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  243. data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_test.rb +50 -0
  244. data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  245. data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  246. data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  247. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  248. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  249. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/license.txt +30 -0
  250. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/readme.txt +236 -0
  251. data/new_project_template/vendor/ceedling/vendor/c_exception/lib/CException.c +39 -0
  252. data/new_project_template/vendor/ceedling/vendor/c_exception/lib/CException.h +70 -0
  253. data/new_project_template/vendor/ceedling/vendor/c_exception/makefile +24 -0
  254. data/new_project_template/vendor/ceedling/vendor/c_exception/rakefile.rb +41 -0
  255. data/new_project_template/vendor/ceedling/vendor/c_exception/release/build.info +2 -0
  256. data/new_project_template/vendor/ceedling/vendor/c_exception/release/version.info +2 -0
  257. data/new_project_template/vendor/ceedling/vendor/c_exception/test/CExceptionConfig.h +27 -0
  258. data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException.c +291 -0
  259. data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException_Runner.c +62 -0
  260. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  261. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  262. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  263. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  264. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +303 -0
  265. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  266. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +126 -0
  267. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  268. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  269. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  270. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  271. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  272. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  273. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  274. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  275. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +260 -0
  276. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  277. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  278. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  279. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  280. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  281. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  282. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  283. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  284. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  285. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  286. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  287. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  288. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  289. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  290. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  291. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  292. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  293. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  294. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  295. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  296. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  297. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  298. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  299. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  300. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/makefile +35 -0
  301. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile.rb +48 -0
  302. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile_helper.rb +243 -0
  303. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/build.info +2 -0
  304. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/version.info +2 -0
  305. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.c +856 -0
  306. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.h +213 -0
  307. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity_internals.h +355 -0
  308. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc.yml +42 -0
  309. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc_64.yml +43 -0
  310. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  311. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  312. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  313. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  314. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  315. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  316. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  317. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  318. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  319. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  320. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  321. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  322. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  323. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  324. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  325. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  326. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  327. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  328. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  329. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  330. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  331. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  332. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  333. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  334. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  335. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  336. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  337. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  338. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  339. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testunity.c +1510 -0
  340. data/new_project_template/vendor/ceedling/vendor/cmock/config/production_environment.rb +14 -0
  341. data/new_project_template/vendor/ceedling/vendor/cmock/config/test_environment.rb +16 -0
  342. data/new_project_template/vendor/ceedling/vendor/cmock/docs/CMock Summary.odt +0 -0
  343. data/new_project_template/vendor/ceedling/vendor/cmock/docs/CMock Summary.pdf +0 -0
  344. data/new_project_template/vendor/ceedling/vendor/cmock/docs/license.txt +31 -0
  345. data/new_project_template/vendor/ceedling/vendor/cmock/examples/gcc.yml +43 -0
  346. data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v4.yml +91 -0
  347. data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v5.yml +80 -0
  348. data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile.rb +32 -0
  349. data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile_helper.rb +274 -0
  350. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
  351. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.c +42 -0
  352. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.h +11 -0
  353. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.c +27 -0
  354. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.h +9 -0
  355. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
  356. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
  357. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.c +33 -0
  358. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.h +13 -0
  359. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
  360. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
  361. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.c +25 -0
  362. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.h +9 -0
  363. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
  364. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
  365. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.c +46 -0
  366. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.h +7 -0
  367. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.c +10 -0
  368. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.h +8 -0
  369. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/ModelConfig.h +7 -0
  370. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.c +72 -0
  371. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.h +11 -0
  372. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
  373. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
  374. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
  375. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
  376. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.c +15 -0
  377. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.h +9 -0
  378. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
  379. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
  380. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.c +15 -0
  381. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.h +8 -0
  382. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
  383. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
  384. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
  385. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
  386. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.c +9 -0
  387. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.h +8 -0
  388. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Types.h +103 -0
  389. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
  390. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
  391. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.c +21 -0
  392. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.h +7 -0
  393. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
  394. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
  395. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.c +22 -0
  396. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.h +9 -0
  397. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.c +34 -0
  398. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.h +10 -0
  399. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.c +16 -0
  400. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.h +8 -0
  401. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
  402. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
  403. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
  404. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
  405. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
  406. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcModel.c +33 -0
  407. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
  408. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestExecutor.c +36 -0
  409. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestMain.c +24 -0
  410. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestModel.c +20 -0
  411. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
  412. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
  413. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
  414. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
  415. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
  416. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
  417. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
  418. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
  419. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerModel.c +18 -0
  420. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  421. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
  422. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
  423. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
  424. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartModel.c +40 -0
  425. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
  426. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
  427. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
  428. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
  429. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
  430. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
  431. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
  432. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
  433. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
  434. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
  435. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
  436. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
  437. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
  438. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
  439. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
  440. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
  441. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
  442. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
  443. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
  444. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
  445. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
  446. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
  447. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
  448. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
  449. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
  450. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
  451. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
  452. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
  453. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
  454. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
  455. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
  456. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
  457. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
  458. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
  459. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
  460. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
  461. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
  462. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
  463. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
  464. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
  465. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
  466. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
  467. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
  468. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
  469. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
  470. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
  471. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
  472. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
  473. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
  474. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
  475. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
  476. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
  477. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock.rb +65 -0
  478. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_config.rb +123 -0
  479. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_file_writer.rb +33 -0
  480. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator.rb +196 -0
  481. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_array.rb +57 -0
  482. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_callback.rb +78 -0
  483. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +51 -0
  484. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_expect.rb +86 -0
  485. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +85 -0
  486. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_utils.rb +177 -0
  487. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_header_parser.rb +270 -0
  488. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_plugin_manager.rb +40 -0
  489. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_unityhelper_parser.rb +74 -0
  490. data/new_project_template/vendor/ceedling/vendor/cmock/rakefile.rb +89 -0
  491. data/new_project_template/vendor/ceedling/vendor/cmock/rakefile_helper.rb +383 -0
  492. data/new_project_template/vendor/ceedling/vendor/cmock/release/build.info +2 -0
  493. data/new_project_template/vendor/ceedling/vendor/cmock/release/version.info +2 -0
  494. data/new_project_template/vendor/ceedling/vendor/cmock/src/cmock.c +186 -0
  495. data/new_project_template/vendor/ceedling/vendor/cmock/src/cmock.h +30 -0
  496. data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc.yml +50 -0
  497. data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_32_with_64_support.yml +52 -0
  498. data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_64.yml +53 -0
  499. data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v4.yml +107 -0
  500. data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v5.yml +92 -0
  501. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.c +280 -0
  502. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.yml +12 -0
  503. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
  504. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
  505. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
  506. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
  507. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/systest_generator.rb +178 -0
  508. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/config.yml +9 -0
  509. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/const.h +15 -0
  510. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/osek.h +275 -0
  511. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
  512. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +340 -0
  513. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +381 -0
  514. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
  515. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
  516. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
  517. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
  518. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
  519. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
  520. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
  521. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
  522. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
  523. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
  524. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
  525. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
  526. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
  527. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
  528. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
  529. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
  530. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +82 -0
  531. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
  532. data/new_project_template/vendor/ceedling/vendor/cmock/test/test_helper.rb +44 -0
  533. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.rb +45 -0
  534. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
  535. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
  536. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_main_test.rb +412 -0
  537. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
  538. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
  539. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
  540. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
  541. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +159 -0
  542. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
  543. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_header_parser_test.rb +1170 -0
  544. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
  545. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
  546. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
  547. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Rakefile +19 -0
  548. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  549. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
  550. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  551. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
  552. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  553. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  554. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  555. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  556. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  557. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/license.txt +30 -0
  558. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/readme.txt +236 -0
  559. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.c +39 -0
  560. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.h +70 -0
  561. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/makefile +24 -0
  562. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/rakefile.rb +41 -0
  563. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/build.info +2 -0
  564. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/version.info +2 -0
  565. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +27 -0
  566. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException.c +291 -0
  567. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +62 -0
  568. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  569. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  570. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  571. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  572. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +303 -0
  573. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  574. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +126 -0
  575. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  576. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  577. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  578. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  579. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  580. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  581. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  582. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  583. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +260 -0
  584. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  585. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  586. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  587. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  588. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  589. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  590. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  591. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  592. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  593. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  594. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  595. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  596. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  597. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  598. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  599. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  600. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  601. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  602. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  603. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  604. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  605. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  606. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  607. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  608. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/makefile +35 -0
  609. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile.rb +48 -0
  610. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile_helper.rb +243 -0
  611. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +2 -0
  612. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +2 -0
  613. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +856 -0
  614. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +213 -0
  615. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +355 -0
  616. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc.yml +42 -0
  617. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_64.yml +43 -0
  618. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  619. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  620. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  621. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  622. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  623. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  624. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  625. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  626. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  627. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  628. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  629. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  630. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  631. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  632. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  633. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  634. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  635. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  636. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  637. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  638. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  639. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  640. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  641. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  642. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  643. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  644. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  645. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  646. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  647. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testunity.c +1510 -0
  648. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/CHANGES +78 -0
  649. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/LICENSE +7 -0
  650. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/README +70 -0
  651. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/Rakefile +8 -0
  652. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
  653. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
  654. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  655. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  656. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  657. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  658. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  659. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  660. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  661. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  662. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  663. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  664. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  665. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
  666. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  667. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  668. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  669. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
  670. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  671. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  672. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  673. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  674. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  675. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
  676. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  677. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  678. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
  679. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  680. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  681. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
  682. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  683. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  684. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  685. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_prompt.rb +94 -0
  686. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
  687. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
  688. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_module.rb +202 -0
  689. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +303 -0
  690. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/test_file_filter.rb +23 -0
  691. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +126 -0
  692. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
  693. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
  694. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.txt +217 -0
  695. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/license.txt +31 -0
  696. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +10 -0
  697. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +12 -0
  698. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/makefile +40 -0
  699. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile.rb +32 -0
  700. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +260 -0
  701. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/readme.txt +18 -0
  702. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +24 -0
  703. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +3 -0
  704. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +9 -0
  705. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +2 -0
  706. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +62 -0
  707. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  708. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  709. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  710. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  711. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  712. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +37 -0
  713. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  714. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
  715. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  716. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  717. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  718. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  719. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  720. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  721. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  722. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  723. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  724. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  725. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/makefile +35 -0
  726. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile.rb +48 -0
  727. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile_helper.rb +243 -0
  728. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/build.info +2 -0
  729. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/version.info +2 -0
  730. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.c +856 -0
  731. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.h +213 -0
  732. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity_internals.h +355 -0
  733. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc.yml +42 -0
  734. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc_64.yml +43 -0
  735. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +101 -0
  736. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +89 -0
  737. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +79 -0
  738. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  739. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  740. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  741. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_msp430.yml +94 -0
  742. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  743. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  744. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +50 -0
  745. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  746. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  747. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  748. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  749. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  750. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  751. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  752. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  753. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  754. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  755. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +51 -0
  756. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  757. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  758. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  759. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +94 -0
  760. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/mocksample.c +51 -0
  761. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/sample.yml +9 -0
  762. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/testsample.c +51 -0
  763. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testparameterized.c +101 -0
  764. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testunity.c +1510 -0
  765. data/new_project_template/vendor/ceedling/vendor/constructor/History.rdoc +19 -0
  766. data/new_project_template/vendor/ceedling/vendor/constructor/README.rdoc +72 -0
  767. data/new_project_template/vendor/ceedling/vendor/constructor/Rakefile +33 -0
  768. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Notes.txt +27 -0
  769. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Rakefile +15 -0
  770. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.erb +27 -0
  771. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.html +36 -0
  772. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.graffle +0 -0
  773. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.html +9 -0
  774. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.png +0 -0
  775. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.png +0 -0
  776. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.rb +12 -0
  777. data/new_project_template/vendor/ceedling/vendor/constructor/lib/constructor.rb +127 -0
  778. data/new_project_template/vendor/ceedling/vendor/constructor/lib/constructor_struct.rb +33 -0
  779. data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_spec.rb +407 -0
  780. data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_struct_spec.rb +84 -0
  781. data/new_project_template/vendor/ceedling/vendor/deep_merge/MIT-LICENSE +20 -0
  782. data/new_project_template/vendor/ceedling/vendor/deep_merge/README +94 -0
  783. data/new_project_template/vendor/ceedling/vendor/deep_merge/Rakefile +28 -0
  784. data/new_project_template/vendor/ceedling/vendor/deep_merge/lib/deep_merge.rb +211 -0
  785. data/new_project_template/vendor/ceedling/vendor/deep_merge/test/test_deep_merge.rb +553 -0
  786. data/new_project_template/vendor/ceedling/vendor/diy/History.txt +28 -0
  787. data/new_project_template/vendor/ceedling/vendor/diy/README.rdoc +233 -0
  788. data/new_project_template/vendor/ceedling/vendor/diy/Rakefile +33 -0
  789. data/new_project_template/vendor/ceedling/vendor/diy/TODO.txt +9 -0
  790. data/new_project_template/vendor/ceedling/vendor/diy/diy.gemspec +131 -0
  791. data/new_project_template/vendor/ceedling/vendor/diy/lib/diy/factory.rb +36 -0
  792. data/new_project_template/vendor/ceedling/vendor/diy/lib/diy.rb +403 -0
  793. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/car.rb +7 -0
  794. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/chassis.rb +5 -0
  795. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/diy_example.rb +26 -0
  796. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/engine.rb +5 -0
  797. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/objects.yml +10 -0
  798. data/new_project_template/vendor/ceedling/vendor/diy/test/constructor.rb +119 -0
  799. data/new_project_template/vendor/ceedling/vendor/diy/test/diy_test.rb +608 -0
  800. data/new_project_template/vendor/ceedling/vendor/diy/test/factory_test.rb +79 -0
  801. data/new_project_template/vendor/ceedling/vendor/diy/test/files/broken_construction.yml +7 -0
  802. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/cat.rb +3 -0
  803. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/extra_conflict.yml +5 -0
  804. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/heritage.rb +2 -0
  805. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/needs_input.yml +3 -0
  806. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/the_cat_lineage.rb +1 -0
  807. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_model.rb +3 -0
  808. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_presenter.rb +3 -0
  809. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_view.rb +2 -0
  810. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/file_resolver.rb +2 -0
  811. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/other_thing.rb +2 -0
  812. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/simple.yml +11 -0
  813. data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo/bar/qux.rb +7 -0
  814. data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo.rb +8 -0
  815. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/beef.rb +5 -0
  816. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/dog.rb +6 -0
  817. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/factory.yml +19 -0
  818. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/llama.rb +7 -0
  819. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/pork.rb +7 -0
  820. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/kitten.rb +13 -0
  821. data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/objects.yml +13 -0
  822. data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/toy.rb +14 -0
  823. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/attached_things_builder.rb +2 -0
  824. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/invalid_method.yml +5 -0
  825. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/method_extractor.rb +3 -0
  826. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/nonsingleton_objects.yml +6 -0
  827. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/objects.yml +22 -0
  828. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing.rb +3 -0
  829. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing_builder.rb +25 -0
  830. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/things_builder.rb +3 -0
  831. data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/objects.yml +14 -0
  832. data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/thinger.rb +7 -0
  833. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/base.rb +8 -0
  834. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/can.rb +6 -0
  835. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/goat.rb +6 -0
  836. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/objects.yml +12 -0
  837. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/paper.rb +6 -0
  838. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/plane.rb +7 -0
  839. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/shirt.rb +6 -0
  840. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/wings.rb +8 -0
  841. data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/holder_thing.rb +3 -0
  842. data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/objects.yml +7 -0
  843. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/bird.rb +5 -0
  844. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/cat.rb +5 -0
  845. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb +8 -0
  846. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/lizard.rb +7 -0
  847. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/bad_module_specified.yml +8 -0
  848. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/class_name_combine.yml +8 -0
  849. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/hello.txt +1 -0
  850. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/no_module_specified.yml +8 -0
  851. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/objects.yml +21 -0
  852. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/road.rb +2 -0
  853. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/sky.rb +2 -0
  854. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/subcontext.yml +22 -0
  855. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/air.rb +2 -0
  856. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/fat_cat.rb +3 -0
  857. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/objects.yml +19 -0
  858. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/pig.rb +3 -0
  859. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/thread_spinner.rb +3 -0
  860. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/tick.rb +3 -0
  861. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/yard.rb +2 -0
  862. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_model.rb +3 -0
  863. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_presenter.rb +3 -0
  864. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_view.rb +1 -0
  865. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/data_source.rb +1 -0
  866. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_model.rb +3 -0
  867. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_presenter.rb +3 -0
  868. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_view.rb +1 -0
  869. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/giant_squid.rb +3 -0
  870. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/krill.rb +2 -0
  871. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/my_objects.yml +21 -0
  872. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/sub_sub_context_test.yml +27 -0
  873. data/new_project_template/vendor/ceedling/vendor/diy/test/test_helper.rb +55 -0
  874. data/new_project_template/vendor/ceedling/vendor/hardmock/CHANGES +78 -0
  875. data/new_project_template/vendor/ceedling/vendor/hardmock/LICENSE +7 -0
  876. data/new_project_template/vendor/ceedling/vendor/hardmock/README +70 -0
  877. data/new_project_template/vendor/ceedling/vendor/hardmock/Rakefile +8 -0
  878. data/new_project_template/vendor/ceedling/vendor/hardmock/config/environment.rb +12 -0
  879. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/assert_error.rb +23 -0
  880. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  881. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  882. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  883. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  884. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  885. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  886. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  887. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  888. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  889. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  890. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  891. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock.rb +86 -0
  892. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  893. data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  894. data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  895. data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/test.rake +22 -0
  896. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  897. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  898. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  899. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  900. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  901. data/new_project_template/vendor/ceedling/vendor/hardmock/test/test_helper.rb +43 -0
  902. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  903. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  904. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expector_test.rb +57 -0
  905. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  906. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  907. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_test.rb +279 -0
  908. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  909. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  910. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  911. data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_prompt.rb +94 -0
  912. data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_reporter.rb +39 -0
  913. data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_config.yml +36 -0
  914. data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_module.rb +202 -0
  915. data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_test_runner.rb +303 -0
  916. data/new_project_template/vendor/ceedling/vendor/unity/auto/test_file_filter.rb +23 -0
  917. data/new_project_template/vendor/ceedling/vendor/unity/auto/unity_test_summary.rb +126 -0
  918. data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.odt +0 -0
  919. data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.pdf +0 -0
  920. data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.txt +217 -0
  921. data/new_project_template/vendor/ceedling/vendor/unity/docs/license.txt +31 -0
  922. data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.c +10 -0
  923. data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.h +12 -0
  924. data/new_project_template/vendor/ceedling/vendor/unity/examples/makefile +40 -0
  925. data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile.rb +32 -0
  926. data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile_helper.rb +260 -0
  927. data/new_project_template/vendor/ceedling/vendor/unity/examples/readme.txt +18 -0
  928. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.c +24 -0
  929. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.h +3 -0
  930. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.c +9 -0
  931. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.h +2 -0
  932. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode.c +62 -0
  933. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  934. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  935. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  936. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  937. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  938. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile.rb +37 -0
  939. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  940. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/readme.txt +9 -0
  941. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  942. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  943. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  944. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  945. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  946. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  947. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  948. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  949. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  950. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  951. data/new_project_template/vendor/ceedling/vendor/unity/makefile +35 -0
  952. data/new_project_template/vendor/ceedling/vendor/unity/rakefile.rb +48 -0
  953. data/new_project_template/vendor/ceedling/vendor/unity/rakefile_helper.rb +243 -0
  954. data/new_project_template/vendor/ceedling/vendor/unity/release/build.info +2 -0
  955. data/new_project_template/vendor/ceedling/vendor/unity/release/version.info +2 -0
  956. data/new_project_template/vendor/ceedling/vendor/unity/src/unity.c +856 -0
  957. data/new_project_template/vendor/ceedling/vendor/unity/src/unity.h +213 -0
  958. data/new_project_template/vendor/ceedling/vendor/unity/src/unity_internals.h +355 -0
  959. data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc.yml +42 -0
  960. data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc_64.yml +43 -0
  961. data/new_project_template/vendor/ceedling/vendor/unity/targets/hitech_picc18.yml +101 -0
  962. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v4.yml +89 -0
  963. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5.yml +79 -0
  964. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  965. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  966. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  967. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_msp430.yml +94 -0
  968. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  969. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  970. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_def.c +50 -0
  971. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  972. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  973. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  974. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  975. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  976. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  977. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  978. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  979. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  980. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  981. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_param.c +51 -0
  982. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  983. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  984. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  985. data/new_project_template/vendor/ceedling/vendor/unity/test/test_generate_test_runner.rb +94 -0
  986. data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/mocksample.c +51 -0
  987. data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/sample.yml +9 -0
  988. data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/testsample.c +51 -0
  989. data/new_project_template/vendor/ceedling/vendor/unity/test/testparameterized.c +101 -0
  990. data/new_project_template/vendor/ceedling/vendor/unity/test/testunity.c +1510 -0
  991. metadata +1058 -0
@@ -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
+