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,3691 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+
3
+ <project>
4
+ <fileVersion>2</fileVersion>
5
+ <configuration>
6
+ <name>Debug</name>
7
+ <outputs>
8
+ <file>$PROJ_DIR$\Debug\Obj\Main.r79</file>
9
+ <file>$PROJ_DIR$\Debug\Obj\IntrinsicsWrapper.r79</file>
10
+ <file>$PROJ_DIR$\Debug\Obj\cmock_demo.pbd</file>
11
+ <file>$PROJ_DIR$\Debug\Obj\TimerInterruptConfigurator.r79</file>
12
+ <file>$PROJ_DIR$\Debug\Obj\AdcConductor.r79</file>
13
+ <file>$PROJ_DIR$\Debug\Obj\AdcModel.pbi</file>
14
+ <file>$PROJ_DIR$\Debug\Obj\Model.pbi</file>
15
+ <file>$PROJ_DIR$\Debug\Obj\AdcModel.r79</file>
16
+ <file>$PROJ_DIR$\Debug\Obj\UsartModel.r79</file>
17
+ <file>$PROJ_DIR$\Debug\Obj\TemperatureFilter.pbi</file>
18
+ <file>$PROJ_DIR$\Debug\List\AdcHardwareConfigurator.lst</file>
19
+ <file>$PROJ_DIR$\Debug\Obj\UsartConductor.pbi</file>
20
+ <file>$PROJ_DIR$\..\..\examples\src\Types.h</file>
21
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.h</file>
22
+ <file>$TOOLKIT_DIR$\inc\DLib_Defaults.h</file>
23
+ <file>$PROJ_DIR$\..\..\examples\src\AT91SAM7X256.h</file>
24
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.h</file>
25
+ <file>$PROJ_DIR$\Debug\List\TimerInterruptHandler.lst</file>
26
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.h</file>
27
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.h</file>
28
+ <file>$PROJ_DIR$\..\..\examples\src\Model.h</file>
29
+ <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>
30
+ <file>$PROJ_DIR$\Debug\Obj\UsartHardware.pbi</file>
31
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.h</file>
32
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.h</file>
33
+ <file>$PROJ_DIR$\Debug\Exe\cmock_demo.d79</file>
34
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.h</file>
35
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.h</file>
36
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.h</file>
37
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.h</file>
38
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.h</file>
39
+ <file>$PROJ_DIR$\Debug\Obj\Executor.pbi</file>
40
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.h</file>
41
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.h</file>
42
+ <file>$PROJ_DIR$\Debug\List\UsartBaudRateRegisterCalculator.lst</file>
43
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.h</file>
44
+ <file>$PROJ_DIR$\Debug\List\UsartModel.lst</file>
45
+ <file>$PROJ_DIR$\Debug\List\Executor.lst</file>
46
+ <file>$PROJ_DIR$\Debug\List\UsartTransmitBufferStatus.lst</file>
47
+ <file>$PROJ_DIR$\Debug\Exe\cmock_demo.sim</file>
48
+ <file>$PROJ_DIR$\Debug\List\TimerModel.lst</file>
49
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.h</file>
50
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.h</file>
51
+ <file>$PROJ_DIR$\Debug\List\TimerHardware.lst</file>
52
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.h</file>
53
+ <file>$PROJ_DIR$\Debug\Obj\UsartTransmitBufferStatus.r79</file>
54
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.h</file>
55
+ <file>$PROJ_DIR$\Debug\List\IntrinsicsWrapper.lst</file>
56
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.h</file>
57
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.h</file>
58
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.h</file>
59
+ <file>$PROJ_DIR$\Debug\List\Cstartup_SAM7.lst</file>
60
+ <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>
61
+ <file>$PROJ_DIR$\Debug\Obj\UsartModel.pbi</file>
62
+ <file>$TOOLKIT_DIR$\inc\math.h</file>
63
+ <file>$PROJ_DIR$\Debug\Obj\AdcHardware.r79</file>
64
+ <file>$PROJ_DIR$\Debug\Obj\TimerModel.r79</file>
65
+ <file>$TOOLKIT_DIR$\inc\stdio.h</file>
66
+ <file>$PROJ_DIR$\Debug\Obj\UsartConfigurator.pbi</file>
67
+ <file>$PROJ_DIR$\Debug\List\AdcModel.lst</file>
68
+ <file>$PROJ_DIR$\Debug\List\AdcConductor.lst</file>
69
+ <file>$PROJ_DIR$\Debug\List\UsartConductor.lst</file>
70
+ <file>$PROJ_DIR$\Debug\List\Model.lst</file>
71
+ <file>$PROJ_DIR$\Debug\List\TaskScheduler.lst</file>
72
+ <file>$PROJ_DIR$\Debug\List\UsartHardware.lst</file>
73
+ <file>$PROJ_DIR$\Debug\List\AdcHardware.lst</file>
74
+ <file>$PROJ_DIR$\Debug\List\Main.lst</file>
75
+ <file>$PROJ_DIR$\Debug\Obj\UsartBaudRateRegisterCalculator.r79</file>
76
+ <file>$PROJ_DIR$\Debug\Obj\AdcConductor.pbi</file>
77
+ <file>$PROJ_DIR$\Debug\Obj\TaskScheduler.pbi</file>
78
+ <file>$PROJ_DIR$\Debug\List\UsartConfigurator.lst</file>
79
+ <file>$PROJ_DIR$\Debug\Obj\TaskScheduler.r79</file>
80
+ <file>$TOOLKIT_DIR$\inc\ymath.h</file>
81
+ <file>$PROJ_DIR$\Debug\Obj\TemperatureFilter.r79</file>
82
+ <file>$TOOLKIT_DIR$\inc\ysizet.h</file>
83
+ <file>$PROJ_DIR$\Debug\Obj\TimerHardware.pbi</file>
84
+ <file>$PROJ_DIR$\Debug\Obj\TemperatureCalculator.r79</file>
85
+ <file>$PROJ_DIR$\Debug\Obj\AdcTemperatureSensor.pbi</file>
86
+ <file>$PROJ_DIR$\Debug\List\TemperatureCalculator.lst</file>
87
+ <file>$PROJ_DIR$\Debug\List\AdcTemperatureSensor.lst</file>
88
+ <file>$TOOLKIT_DIR$\lib\dl4tptinl8n.h</file>
89
+ <file>$PROJ_DIR$\Debug\Obj\AdcHardware.pbi</file>
90
+ <file>$PROJ_DIR$\Debug\Obj\UsartConfigurator.r79</file>
91
+ <file>$TOOLKIT_DIR$\inc\xencoding_limits.h</file>
92
+ <file>$PROJ_DIR$\Debug\Obj\TimerConfigurator.r79</file>
93
+ <file>$PROJ_DIR$\Debug\Obj\AdcTemperatureSensor.r79</file>
94
+ <file>$PROJ_DIR$\Debug\Obj\Main.pbi</file>
95
+ <file>$TOOLKIT_DIR$\lib\dl4tptinl8n.r79</file>
96
+ <file>$PROJ_DIR$\Debug\Obj\TimerInterruptHandler.r79</file>
97
+ <file>$PROJ_DIR$\Debug\Obj\UsartHardware.r79</file>
98
+ <file>$PROJ_DIR$\Debug\Obj\UsartPutChar.pbi</file>
99
+ <file>$PROJ_DIR$\Debug\Obj\TimerInterruptConfigurator.pbi</file>
100
+ <file>$TOOLKIT_DIR$\inc\yvals.h</file>
101
+ <file>$PROJ_DIR$\Debug\Obj\UsartTransmitBufferStatus.pbi</file>
102
+ <file>$PROJ_DIR$\Debug\Obj\IntrinsicsWrapper.pbi</file>
103
+ <file>$PROJ_DIR$\Debug\Obj\AdcHardwareConfigurator.r79</file>
104
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X256_inc.h</file>
105
+ <file>$TOOLKIT_DIR$\inc\DLib_Threads.h</file>
106
+ <file>$PROJ_DIR$\Debug\Obj\TimerConfigurator.pbi</file>
107
+ <file>$PROJ_DIR$\Debug\Obj\TimerConductor.pbi</file>
108
+ <file>$PROJ_DIR$\Debug\Obj\TimerInterruptHandler.pbi</file>
109
+ <file>$PROJ_DIR$\Debug\Obj\UsartPutChar.r79</file>
110
+ <file>$PROJ_DIR$\Debug\Obj\UsartConductor.r79</file>
111
+ <file>$PROJ_DIR$\Debug\Obj\TimerHardware.r79</file>
112
+ <file>$PROJ_DIR$\Debug\Obj\Cstartup_SAM7.r79</file>
113
+ <file>$PROJ_DIR$\Debug\List\cmock_demo.map</file>
114
+ <file>$PROJ_DIR$\Debug\List\TimerInterruptConfigurator.lst</file>
115
+ <file>$PROJ_DIR$\Debug\Obj\TimerConductor.r79</file>
116
+ <file>$PROJ_DIR$\Debug\Obj\Model.r79</file>
117
+ <file>$PROJ_DIR$\Debug\Obj\UsartBaudRateRegisterCalculator.pbi</file>
118
+ <file>$PROJ_DIR$\Debug\Obj\AdcHardwareConfigurator.pbi</file>
119
+ <file>$PROJ_DIR$\Debug\Obj\TemperatureCalculator.pbi</file>
120
+ <file>$PROJ_DIR$\Debug\Obj\Cstartup_SAM7.pbi</file>
121
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_FLASH.xcl</file>
122
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</file>
123
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</file>
124
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</file>
125
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</file>
126
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.c</file>
127
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</file>
128
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.c</file>
129
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</file>
130
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</file>
131
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</file>
132
+ <file>$PROJ_DIR$\Cstartup.s79</file>
133
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</file>
134
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</file>
135
+ <file>$PROJ_DIR$\Cstartup_SAM7.c</file>
136
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.c</file>
137
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</file>
138
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.c</file>
139
+ <file>$PROJ_DIR$\..\..\examples\src\Main.c</file>
140
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</file>
141
+ <file>$PROJ_DIR$\..\..\examples\src\Model.c</file>
142
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</file>
143
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</file>
144
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</file>
145
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</file>
146
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</file>
147
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</file>
148
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</file>
149
+ <file>$PROJ_DIR$\Debug\Obj\Cstartup.r79</file>
150
+ <file>$PROJ_DIR$\Debug\List\TimerConfigurator.lst</file>
151
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.h</file>
152
+ <file>$PROJ_DIR$\Debug\List\TimerConductor.lst</file>
153
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.h</file>
154
+ <file>$PROJ_DIR$\..\..\examples\src\ModelConfig.h</file>
155
+ <file>$PROJ_DIR$\Debug\Obj\Executor.r79</file>
156
+ <file>$PROJ_DIR$\Debug\List\UsartPutChar.lst</file>
157
+ <file>$PROJ_DIR$\Debug\List\TemperatureFilter.lst</file>
158
+ <file>$PROJ_DIR$\Debug\Obj\TimerModel.pbi</file>
159
+ <file>$PROJ_DIR$\srcIAR\Cstartup.s79</file>
160
+ <file>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</file>
161
+ </outputs>
162
+ <file>
163
+ <name>[ROOT_NODE]</name>
164
+ <outputs>
165
+ <tool>
166
+ <name>XLINK</name>
167
+ <file> 25 105 39</file>
168
+ </tool>
169
+ </outputs>
170
+ </file>
171
+ <file>
172
+ <name>$PROJ_DIR$\Debug\Obj\cmock_demo.pbd</name>
173
+ <inputs>
174
+ <tool>
175
+ <name>BILINK</name>
176
+ <file> 68 81 110 5 77 112 31 94 86 6 69 111 9 99 98 75 91 100 150 109 11 58 22 53 90 93</file>
177
+ </tool>
178
+ </inputs>
179
+ </file>
180
+ <file>
181
+ <name>$PROJ_DIR$\Debug\Exe\cmock_demo.d79</name>
182
+ <outputs>
183
+ <tool>
184
+ <name>XLINK</name>
185
+ <file> 105 39</file>
186
+ </tool>
187
+ </outputs>
188
+ <inputs>
189
+ <tool>
190
+ <name>XLINK</name>
191
+ <file> 113 4 55 95 7 85 141 104 147 1 0 108 71 76 73 107 84 103 3 88 56 67 102 82 89 8 101 45 87</file>
192
+ </tool>
193
+ </inputs>
194
+ </file>
195
+ <file>
196
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
197
+ <outputs>
198
+ <tool>
199
+ <name>ICCARM</name>
200
+ <file> 107 144</file>
201
+ </tool>
202
+ <tool>
203
+ <name>BICOMP</name>
204
+ <file> 99</file>
205
+ </tool>
206
+ </outputs>
207
+ <inputs>
208
+ <tool>
209
+ <name>ICCARM</name>
210
+ <file> 12 15 29 46 49 44</file>
211
+ </tool>
212
+ <tool>
213
+ <name>BICOMP</name>
214
+ <file> 12 15 29 46 49 44</file>
215
+ </tool>
216
+ </inputs>
217
+ </file>
218
+ <file>
219
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
220
+ <outputs>
221
+ <tool>
222
+ <name>ICCARM</name>
223
+ <file> 84 142</file>
224
+ </tool>
225
+ <tool>
226
+ <name>BICOMP</name>
227
+ <file> 98</file>
228
+ </tool>
229
+ </outputs>
230
+ <inputs>
231
+ <tool>
232
+ <name>ICCARM</name>
233
+ <file> 12 15 48 42</file>
234
+ </tool>
235
+ <tool>
236
+ <name>BICOMP</name>
237
+ <file> 12 15 48 42</file>
238
+ </tool>
239
+ </inputs>
240
+ </file>
241
+ <file>
242
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
243
+ <outputs>
244
+ <tool>
245
+ <name>ICCARM</name>
246
+ <file> 103 43</file>
247
+ </tool>
248
+ <tool>
249
+ <name>BICOMP</name>
250
+ <file> 75</file>
251
+ </tool>
252
+ </outputs>
253
+ <inputs>
254
+ <tool>
255
+ <name>ICCARM</name>
256
+ <file> 12 15 49 48</file>
257
+ </tool>
258
+ <tool>
259
+ <name>BICOMP</name>
260
+ <file> 12 15 49 48</file>
261
+ </tool>
262
+ </inputs>
263
+ </file>
264
+ <file>
265
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
266
+ <outputs>
267
+ <tool>
268
+ <name>ICCARM</name>
269
+ <file> 3 106</file>
270
+ </tool>
271
+ <tool>
272
+ <name>BICOMP</name>
273
+ <file> 91</file>
274
+ </tool>
275
+ </outputs>
276
+ <inputs>
277
+ <tool>
278
+ <name>ICCARM</name>
279
+ <file> 12 15 42 44</file>
280
+ </tool>
281
+ <tool>
282
+ <name>BICOMP</name>
283
+ <file> 12 15 42 44</file>
284
+ </tool>
285
+ </inputs>
286
+ </file>
287
+ <file>
288
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
289
+ <outputs>
290
+ <tool>
291
+ <name>ICCARM</name>
292
+ <file> 56 40</file>
293
+ </tool>
294
+ <tool>
295
+ <name>BICOMP</name>
296
+ <file> 150</file>
297
+ </tool>
298
+ </outputs>
299
+ <inputs>
300
+ <tool>
301
+ <name>ICCARM</name>
302
+ <file> 12 15 46 18</file>
303
+ </tool>
304
+ <tool>
305
+ <name>BICOMP</name>
306
+ <file> 12 15 46 18</file>
307
+ </tool>
308
+ </inputs>
309
+ </file>
310
+ <file>
311
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
312
+ <outputs>
313
+ <tool>
314
+ <name>ICCARM</name>
315
+ <file> 67 34</file>
316
+ </tool>
317
+ <tool>
318
+ <name>BICOMP</name>
319
+ <file> 109</file>
320
+ </tool>
321
+ </outputs>
322
+ <inputs>
323
+ <tool>
324
+ <name>ICCARM</name>
325
+ <file> 12 15 50</file>
326
+ </tool>
327
+ <tool>
328
+ <name>BICOMP</name>
329
+ <file> 12 15 50</file>
330
+ </tool>
331
+ </inputs>
332
+ </file>
333
+ <file>
334
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
335
+ <outputs>
336
+ <tool>
337
+ <name>ICCARM</name>
338
+ <file> 8 36</file>
339
+ </tool>
340
+ <tool>
341
+ <name>BICOMP</name>
342
+ <file> 53</file>
343
+ </tool>
344
+ </outputs>
345
+ <inputs>
346
+ <tool>
347
+ <name>ICCARM</name>
348
+ <file> 12 15 32 146 50 28 57 92 14 80 52 83 97 74 54 72</file>
349
+ </tool>
350
+ <tool>
351
+ <name>BICOMP</name>
352
+ <file> 12 15 32 146 50 28 57 92 14 52 83 97 74 54 72</file>
353
+ </tool>
354
+ </inputs>
355
+ </file>
356
+ <file>
357
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
358
+ <outputs>
359
+ <tool>
360
+ <name>ICCARM</name>
361
+ <file> 102 61</file>
362
+ </tool>
363
+ <tool>
364
+ <name>BICOMP</name>
365
+ <file> 11</file>
366
+ </tool>
367
+ </outputs>
368
+ <inputs>
369
+ <tool>
370
+ <name>ICCARM</name>
371
+ <file> 12 15 19 35 32 18</file>
372
+ </tool>
373
+ <tool>
374
+ <name>BICOMP</name>
375
+ <file> 12 15 19 35 32 18</file>
376
+ </tool>
377
+ </inputs>
378
+ </file>
379
+ <file>
380
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
381
+ <outputs>
382
+ <tool>
383
+ <name>ICCARM</name>
384
+ <file> 82 70</file>
385
+ </tool>
386
+ <tool>
387
+ <name>BICOMP</name>
388
+ <file> 58</file>
389
+ </tool>
390
+ </outputs>
391
+ <inputs>
392
+ <tool>
393
+ <name>ICCARM</name>
394
+ <file> 12 15 26</file>
395
+ </tool>
396
+ <tool>
397
+ <name>BICOMP</name>
398
+ <file> 12 15 26</file>
399
+ </tool>
400
+ </inputs>
401
+ </file>
402
+ <file>
403
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
404
+ <outputs>
405
+ <tool>
406
+ <name>ICCARM</name>
407
+ <file> 89 64</file>
408
+ </tool>
409
+ <tool>
410
+ <name>BICOMP</name>
411
+ <file> 22</file>
412
+ </tool>
413
+ </outputs>
414
+ <inputs>
415
+ <tool>
416
+ <name>ICCARM</name>
417
+ <file> 12 15 35 26 30</file>
418
+ </tool>
419
+ <tool>
420
+ <name>BICOMP</name>
421
+ <file> 12 15 35 26 30</file>
422
+ </tool>
423
+ </inputs>
424
+ </file>
425
+ <file>
426
+ <name>$PROJ_DIR$\Cstartup.s79</name>
427
+ <outputs>
428
+ <tool>
429
+ <name>AARM</name>
430
+ <file> 141</file>
431
+ </tool>
432
+ </outputs>
433
+ </file>
434
+ <file>
435
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
436
+ <outputs>
437
+ <tool>
438
+ <name>ICCARM</name>
439
+ <file> 101 148</file>
440
+ </tool>
441
+ <tool>
442
+ <name>BICOMP</name>
443
+ <file> 90</file>
444
+ </tool>
445
+ </outputs>
446
+ <inputs>
447
+ <tool>
448
+ <name>ICCARM</name>
449
+ <file> 12 15 30 41</file>
450
+ </tool>
451
+ <tool>
452
+ <name>BICOMP</name>
453
+ <file> 12 15 30 41</file>
454
+ </tool>
455
+ </inputs>
456
+ </file>
457
+ <file>
458
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
459
+ <outputs>
460
+ <tool>
461
+ <name>ICCARM</name>
462
+ <file> 45 38</file>
463
+ </tool>
464
+ <tool>
465
+ <name>BICOMP</name>
466
+ <file> 93</file>
467
+ </tool>
468
+ </outputs>
469
+ <inputs>
470
+ <tool>
471
+ <name>ICCARM</name>
472
+ <file> 12 15 41</file>
473
+ </tool>
474
+ <tool>
475
+ <name>BICOMP</name>
476
+ <file> 12 15 41</file>
477
+ </tool>
478
+ </inputs>
479
+ </file>
480
+ <file>
481
+ <name>$PROJ_DIR$\Cstartup_SAM7.c</name>
482
+ <outputs>
483
+ <tool>
484
+ <name>ICCARM</name>
485
+ <file> 104 51</file>
486
+ </tool>
487
+ <tool>
488
+ <name>BICOMP</name>
489
+ <file> 112</file>
490
+ </tool>
491
+ </outputs>
492
+ <inputs>
493
+ <tool>
494
+ <name>ICCARM</name>
495
+ <file> 15</file>
496
+ </tool>
497
+ </inputs>
498
+ </file>
499
+ <file>
500
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
501
+ <outputs>
502
+ <tool>
503
+ <name>ICCARM</name>
504
+ <file> 7 59</file>
505
+ </tool>
506
+ <tool>
507
+ <name>BICOMP</name>
508
+ <file> 5</file>
509
+ </tool>
510
+ </outputs>
511
+ <inputs>
512
+ <tool>
513
+ <name>ICCARM</name>
514
+ <file> 12 15 145 18 23 28</file>
515
+ </tool>
516
+ <tool>
517
+ <name>BICOMP</name>
518
+ <file> 12 15 145 18 23 28</file>
519
+ </tool>
520
+ </inputs>
521
+ </file>
522
+ <file>
523
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
524
+ <outputs>
525
+ <tool>
526
+ <name>ICCARM</name>
527
+ <file> 85 79</file>
528
+ </tool>
529
+ <tool>
530
+ <name>BICOMP</name>
531
+ <file> 77</file>
532
+ </tool>
533
+ </outputs>
534
+ <inputs>
535
+ <tool>
536
+ <name>ICCARM</name>
537
+ <file> 12 15 24</file>
538
+ </tool>
539
+ <tool>
540
+ <name>BICOMP</name>
541
+ <file> 12 15 24</file>
542
+ </tool>
543
+ </inputs>
544
+ </file>
545
+ <file>
546
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
547
+ <outputs>
548
+ <tool>
549
+ <name>ICCARM</name>
550
+ <file> 147 37</file>
551
+ </tool>
552
+ <tool>
553
+ <name>BICOMP</name>
554
+ <file> 31</file>
555
+ </tool>
556
+ </outputs>
557
+ <inputs>
558
+ <tool>
559
+ <name>ICCARM</name>
560
+ <file> 12 15 143 20 19 29 16 33</file>
561
+ </tool>
562
+ <tool>
563
+ <name>BICOMP</name>
564
+ <file> 12 15 143 20 19 29 16 33</file>
565
+ </tool>
566
+ </inputs>
567
+ </file>
568
+ <file>
569
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
570
+ <outputs>
571
+ <tool>
572
+ <name>ICCARM</name>
573
+ <file> 0 66</file>
574
+ </tool>
575
+ <tool>
576
+ <name>BICOMP</name>
577
+ <file> 86</file>
578
+ </tool>
579
+ </outputs>
580
+ <inputs>
581
+ <tool>
582
+ <name>ICCARM</name>
583
+ <file> 12 15 33 143 20 18 23 28 19 35 26 30 32 50 41 29 49 48 42 44 46 16 27 13 24 145</file>
584
+ </tool>
585
+ <tool>
586
+ <name>BICOMP</name>
587
+ <file> 12 15 33 143 20 18 23 28 19 35 26 30 32 50 41 29 49 48 42 44 46 16 27 13 24 145</file>
588
+ </tool>
589
+ </inputs>
590
+ </file>
591
+ <file>
592
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
593
+ <outputs>
594
+ <tool>
595
+ <name>ICCARM</name>
596
+ <file> 1 47</file>
597
+ </tool>
598
+ <tool>
599
+ <name>BICOMP</name>
600
+ <file> 94</file>
601
+ </tool>
602
+ </outputs>
603
+ <inputs>
604
+ <tool>
605
+ <name>ICCARM</name>
606
+ <file> 33 21</file>
607
+ </tool>
608
+ <tool>
609
+ <name>BICOMP</name>
610
+ <file> 33 21</file>
611
+ </tool>
612
+ </inputs>
613
+ </file>
614
+ <file>
615
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
616
+ <outputs>
617
+ <tool>
618
+ <name>ICCARM</name>
619
+ <file> 108 62</file>
620
+ </tool>
621
+ <tool>
622
+ <name>BICOMP</name>
623
+ <file> 6</file>
624
+ </tool>
625
+ </outputs>
626
+ <inputs>
627
+ <tool>
628
+ <name>ICCARM</name>
629
+ <file> 20 12 15 18 28</file>
630
+ </tool>
631
+ <tool>
632
+ <name>BICOMP</name>
633
+ <file> 20 12 15 18 28</file>
634
+ </tool>
635
+ </inputs>
636
+ </file>
637
+ <file>
638
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
639
+ <outputs>
640
+ <tool>
641
+ <name>ICCARM</name>
642
+ <file> 76 78</file>
643
+ </tool>
644
+ <tool>
645
+ <name>BICOMP</name>
646
+ <file> 111</file>
647
+ </tool>
648
+ </outputs>
649
+ <inputs>
650
+ <tool>
651
+ <name>ICCARM</name>
652
+ <file> 12 15 23 54 72 92 14 80 52 83 97</file>
653
+ </tool>
654
+ <tool>
655
+ <name>BICOMP</name>
656
+ <file> 12 15 23 54 72 92 14 52 83 97</file>
657
+ </tool>
658
+ </inputs>
659
+ </file>
660
+ <file>
661
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
662
+ <outputs>
663
+ <tool>
664
+ <name>ICCARM</name>
665
+ <file> 71 63</file>
666
+ </tool>
667
+ <tool>
668
+ <name>BICOMP</name>
669
+ <file> 69</file>
670
+ </tool>
671
+ </outputs>
672
+ <inputs>
673
+ <tool>
674
+ <name>ICCARM</name>
675
+ <file> 12 15 18</file>
676
+ </tool>
677
+ <tool>
678
+ <name>BICOMP</name>
679
+ <file> 12 15 18</file>
680
+ </tool>
681
+ </inputs>
682
+ </file>
683
+ <file>
684
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
685
+ <outputs>
686
+ <tool>
687
+ <name>ICCARM</name>
688
+ <file> 88 17</file>
689
+ </tool>
690
+ <tool>
691
+ <name>BICOMP</name>
692
+ <file> 100</file>
693
+ </tool>
694
+ </outputs>
695
+ <inputs>
696
+ <tool>
697
+ <name>ICCARM</name>
698
+ <file> 12 15 44 42</file>
699
+ </tool>
700
+ <tool>
701
+ <name>BICOMP</name>
702
+ <file> 12 15 44 42</file>
703
+ </tool>
704
+ </inputs>
705
+ </file>
706
+ <file>
707
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
708
+ <outputs>
709
+ <tool>
710
+ <name>ICCARM</name>
711
+ <file> 73 149</file>
712
+ </tool>
713
+ <tool>
714
+ <name>BICOMP</name>
715
+ <file> 9</file>
716
+ </tool>
717
+ </outputs>
718
+ <inputs>
719
+ <tool>
720
+ <name>ICCARM</name>
721
+ <file> 12 15 28 54 72 92 14 80 52 83 97</file>
722
+ </tool>
723
+ <tool>
724
+ <name>BICOMP</name>
725
+ <file> 12 15 28 54 72 92 14 52 83 97</file>
726
+ </tool>
727
+ </inputs>
728
+ </file>
729
+ <file>
730
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
731
+ <outputs>
732
+ <tool>
733
+ <name>ICCARM</name>
734
+ <file> 95 10</file>
735
+ </tool>
736
+ <tool>
737
+ <name>BICOMP</name>
738
+ <file> 110</file>
739
+ </tool>
740
+ </outputs>
741
+ <inputs>
742
+ <tool>
743
+ <name>ICCARM</name>
744
+ <file> 12 15 13 146</file>
745
+ </tool>
746
+ <tool>
747
+ <name>BICOMP</name>
748
+ <file> 12 15 13 146</file>
749
+ </tool>
750
+ </inputs>
751
+ </file>
752
+ <file>
753
+ <name>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</name>
754
+ <outputs>
755
+ <tool>
756
+ <name>ICCARM</name>
757
+ <file> 4 60</file>
758
+ </tool>
759
+ <tool>
760
+ <name>BICOMP</name>
761
+ <file> 68</file>
762
+ </tool>
763
+ </outputs>
764
+ <inputs>
765
+ <tool>
766
+ <name>ICCARM</name>
767
+ <file> 12 15 16 145 27</file>
768
+ </tool>
769
+ <tool>
770
+ <name>BICOMP</name>
771
+ <file> 12 15 16 145 27</file>
772
+ </tool>
773
+ </inputs>
774
+ </file>
775
+ <file>
776
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
777
+ <outputs>
778
+ <tool>
779
+ <name>ICCARM</name>
780
+ <file> 55 65</file>
781
+ </tool>
782
+ <tool>
783
+ <name>BICOMP</name>
784
+ <file> 81</file>
785
+ </tool>
786
+ </outputs>
787
+ <inputs>
788
+ <tool>
789
+ <name>ICCARM</name>
790
+ <file> 12 15 27 13 24</file>
791
+ </tool>
792
+ <tool>
793
+ <name>BICOMP</name>
794
+ <file> 12 15 27 13 24</file>
795
+ </tool>
796
+ </inputs>
797
+ </file>
798
+ <file>
799
+ <name>$PROJ_DIR$\srcIAR\Cstartup.s79</name>
800
+ <outputs>
801
+ <tool>
802
+ <name>AARM</name>
803
+ <file> 141</file>
804
+ </tool>
805
+ </outputs>
806
+ <inputs>
807
+ <tool>
808
+ <name>AARM</name>
809
+ <file> 96</file>
810
+ </tool>
811
+ </inputs>
812
+ </file>
813
+ <file>
814
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
815
+ <outputs>
816
+ <tool>
817
+ <name>ICCARM</name>
818
+ <file> 104 51</file>
819
+ </tool>
820
+ <tool>
821
+ <name>BICOMP</name>
822
+ <file> 112</file>
823
+ </tool>
824
+ </outputs>
825
+ <inputs>
826
+ <tool>
827
+ <name>ICCARM</name>
828
+ <file> 15</file>
829
+ </tool>
830
+ </inputs>
831
+ </file>
832
+ </configuration>
833
+ <configuration>
834
+ <name>Release</name>
835
+ <outputs>
836
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.h</file>
837
+ <file>$PROJ_DIR$\..\..\examples\src\Types.h</file>
838
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.h</file>
839
+ <file>$TOOLKIT_DIR$\inc\DLib_Defaults.h</file>
840
+ <file>$PROJ_DIR$\..\..\examples\src\AT91SAM7X256.h</file>
841
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.h</file>
842
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.h</file>
843
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.h</file>
844
+ <file>$PROJ_DIR$\..\..\examples\src\Model.h</file>
845
+ <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>
846
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.h</file>
847
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.h</file>
848
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.h</file>
849
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.h</file>
850
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.h</file>
851
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.h</file>
852
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.h</file>
853
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.h</file>
854
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.h</file>
855
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.h</file>
856
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.h</file>
857
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.h</file>
858
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.h</file>
859
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.h</file>
860
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.h</file>
861
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.h</file>
862
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.h</file>
863
+ <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>
864
+ <file>$TOOLKIT_DIR$\inc\math.h</file>
865
+ <file>$TOOLKIT_DIR$\inc\stdio.h</file>
866
+ <file>$TOOLKIT_DIR$\inc\ymath.h</file>
867
+ <file>$TOOLKIT_DIR$\inc\ysizet.h</file>
868
+ <file>$TOOLKIT_DIR$\lib\dl4tptinl8n.h</file>
869
+ <file>$PROJ_DIR$\..\test\system\src\UsartPutChar.h</file>
870
+ <file>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.h</file>
871
+ <file>$PROJ_DIR$\..\test\system\src\TaskScheduler.h</file>
872
+ <file>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.h</file>
873
+ <file>$PROJ_DIR$\..\test\system\src\UsartConfigurator.h</file>
874
+ <file>$PROJ_DIR$\..\test\system\src\TimerConfigurator.h</file>
875
+ <file>$PROJ_DIR$\..\test\system\src\AT91SAM7X256.h</file>
876
+ <file>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.h</file>
877
+ <file>$PROJ_DIR$\..\test\system\src\Executor.h</file>
878
+ <file>$PROJ_DIR$\..\test\system\src\ModelConfig.h</file>
879
+ <file>$PROJ_DIR$\..\test\system\src\TimerModel.h</file>
880
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.h</file>
881
+ <file>$PROJ_DIR$\..\test\system\src\Main.c</file>
882
+ <file>$PROJ_DIR$\..\test\system\src\Model.c</file>
883
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.c</file>
884
+ <file>$PROJ_DIR$\..\test\system\src\TimerModel.c</file>
885
+ <file>$PROJ_DIR$\..\test\system\src\UsartModel.c</file>
886
+ <file>$PROJ_DIR$\..\test\system\src\UsartHardware.c</file>
887
+ <file>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.c</file>
888
+ <file>$PROJ_DIR$\..\test\system\src\UsartPutChar.c</file>
889
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.c</file>
890
+ <file>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.c</file>
891
+ <file>$PROJ_DIR$\..\test\system\src\TaskScheduler.c</file>
892
+ <file>$PROJ_DIR$\..\test\system\src\AdcConductor.h</file>
893
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.h</file>
894
+ <file>$PROJ_DIR$\..\test\system\src\Model.h</file>
895
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureFilter.h</file>
896
+ <file>$PROJ_DIR$\..\test\system\src\AdcModel.c</file>
897
+ <file>$PROJ_DIR$\..\test\system\src\TimerHardware.h</file>
898
+ <file>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.c</file>
899
+ <file>$PROJ_DIR$\..\test\system\src\AdcConductor.c</file>
900
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardware.c</file>
901
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardware.h</file>
902
+ <file>$PROJ_DIR$\..\test\system\src\Executor.c</file>
903
+ <file>$TOOLKIT_DIR$\inc\xencoding_limits.h</file>
904
+ <file>$TOOLKIT_DIR$\lib\dl4tptinl8n.r79</file>
905
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.c</file>
906
+ <file>$PROJ_DIR$\..\test\system\src\Types.h</file>
907
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureFilter.c</file>
908
+ <file>$PROJ_DIR$\..\test\system\src\TimerConductor.c</file>
909
+ <file>$PROJ_DIR$\..\test\system\src\TimerConfigurator.c</file>
910
+ <file>$PROJ_DIR$\..\test\system\src\TimerHardware.c</file>
911
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.c</file>
912
+ <file>$PROJ_DIR$\..\test\system\src\UsartConductor.c</file>
913
+ <file>$PROJ_DIR$\..\test\system\src\UsartConfigurator.c</file>
914
+ <file>$PROJ_DIR$\..\test\system\src\UsartHardware.h</file>
915
+ <file>$PROJ_DIR$\..\test\system\src\TimerConductor.h</file>
916
+ <file>$PROJ_DIR$\..\test\system\src\AdcModel.h</file>
917
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.h</file>
918
+ <file>$PROJ_DIR$\..\test\system\src\UsartConductor.h</file>
919
+ <file>$PROJ_DIR$\Release\Obj\Executor.pbi</file>
920
+ <file>$PROJ_DIR$\..\test\system\src\UsartModel.h</file>
921
+ <file>$PROJ_DIR$\Release\Obj\Model.pbi</file>
922
+ <file>$PROJ_DIR$\Release\Obj\Cstartup_SAM7.pbi</file>
923
+ <file>$PROJ_DIR$\Release\Obj\UsartConductor.pbi</file>
924
+ <file>$PROJ_DIR$\Release\Obj\AdcConductor.r79</file>
925
+ <file>$PROJ_DIR$\Release\Obj\AdcHardware.r79</file>
926
+ <file>$PROJ_DIR$\Release\Obj\TimerModel.pbi</file>
927
+ <file>$PROJ_DIR$\Release\Obj\AdcTemperatureSensor.pbi</file>
928
+ <file>$PROJ_DIR$\Release\Obj\UsartHardware.r79</file>
929
+ <file>$PROJ_DIR$\Release\Obj\TemperatureFilter.pbi</file>
930
+ <file>$PROJ_DIR$\Release\Obj\UsartPutChar.pbi</file>
931
+ <file>$PROJ_DIR$\Release\Obj\TemperatureCalculator.r79</file>
932
+ <file>$PROJ_DIR$\Release\Obj\AdcHardwareConfigurator.r79</file>
933
+ <file>$PROJ_DIR$\Release\Obj\cmock_demo.pbd</file>
934
+ <file>$PROJ_DIR$\Release\Obj\UsartModel.r79</file>
935
+ <file>$PROJ_DIR$\Release\Obj\UsartBaudRateRegisterCalculator.r79</file>
936
+ <file>$PROJ_DIR$\Release\Obj\Model.r79</file>
937
+ <file>$PROJ_DIR$\Release\Obj\AdcModel.r79</file>
938
+ <file>$PROJ_DIR$\Release\Obj\AdcHardware.pbi</file>
939
+ <file>$PROJ_DIR$\Release\Obj\TimerModel.r79</file>
940
+ <file>$PROJ_DIR$\Release\Obj\TimerHardware.r79</file>
941
+ <file>$PROJ_DIR$\Release\Obj\UsartPutChar.r79</file>
942
+ <file>$PROJ_DIR$\Release\Obj\AdcHardwareConfigurator.pbi</file>
943
+ <file>$PROJ_DIR$\Release\Obj\TimerInterruptConfigurator.r79</file>
944
+ <file>$PROJ_DIR$\Release\Obj\TaskScheduler.pbi</file>
945
+ <file>$PROJ_DIR$\Release\List\cmock_demo.map</file>
946
+ <file>$PROJ_DIR$\Release\Obj\UsartTransmitBufferStatus.pbi</file>
947
+ <file>$PROJ_DIR$\Release\Exe\cmock_demo.d79</file>
948
+ <file>$PROJ_DIR$\Release\Obj\AdcTemperatureSensor.r79</file>
949
+ <file>$PROJ_DIR$\Release\Obj\TimerConductor.r79</file>
950
+ <file>$PROJ_DIR$\Release\Obj\TimerConfigurator.r79</file>
951
+ <file>$PROJ_DIR$\Release\Obj\Main.pbi</file>
952
+ <file>$PROJ_DIR$\Release\Obj\TimerInterruptConfigurator.pbi</file>
953
+ <file>$PROJ_DIR$\Release\Obj\UsartTransmitBufferStatus.r79</file>
954
+ <file>$PROJ_DIR$\Release\Obj\AdcModel.pbi</file>
955
+ <file>$PROJ_DIR$\Release\Obj\TemperatureFilter.r79</file>
956
+ <file>$PROJ_DIR$\Release\Obj\UsartHardware.pbi</file>
957
+ <file>$PROJ_DIR$\Release\Obj\Cstartup.r79</file>
958
+ <file>$PROJ_DIR$\Release\Obj\UsartConductor.r79</file>
959
+ <file>$PROJ_DIR$\Release\Obj\TimerInterruptHandler.pbi</file>
960
+ <file>$PROJ_DIR$\Release\Obj\TimerConductor.pbi</file>
961
+ <file>$PROJ_DIR$\Release\Obj\Main.r79</file>
962
+ <file>$PROJ_DIR$\Release\Obj\UsartConfigurator.pbi</file>
963
+ <file>$PROJ_DIR$\Release\Obj\Executor.r79</file>
964
+ <file>$PROJ_DIR$\Release\Obj\Cstartup_SAM7.r79</file>
965
+ <file>$PROJ_DIR$\Release\Obj\TemperatureCalculator.pbi</file>
966
+ <file>$PROJ_DIR$\Release\Obj\TimerHardware.pbi</file>
967
+ <file>$PROJ_DIR$\Release\Exe\cmock_demo.sim</file>
968
+ <file>$PROJ_DIR$\Release\Obj\TimerConfigurator.pbi</file>
969
+ <file>$PROJ_DIR$\Release\Obj\UsartModel.pbi</file>
970
+ <file>$PROJ_DIR$\Release\Obj\TaskScheduler.r79</file>
971
+ <file>$PROJ_DIR$\Release\Obj\UsartBaudRateRegisterCalculator.pbi</file>
972
+ <file>$PROJ_DIR$\Release\Obj\AdcConductor.pbi</file>
973
+ <file>$PROJ_DIR$\Release\Obj\TimerInterruptHandler.r79</file>
974
+ <file>$PROJ_DIR$\Release\Obj\UsartConfigurator.r79</file>
975
+ <file>$PROJ_DIR$\Release\Obj\IntrinsicsWrapper.pbi</file>
976
+ <file>$PROJ_DIR$\Release\Obj\IntrinsicsWrapper.r79</file>
977
+ <file>$TOOLKIT_DIR$\inc\yvals.h</file>
978
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X256_inc.h</file>
979
+ <file>$TOOLKIT_DIR$\inc\DLib_Threads.h</file>
980
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_FLASH.xcl</file>
981
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</file>
982
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</file>
983
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</file>
984
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</file>
985
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.c</file>
986
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</file>
987
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.c</file>
988
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</file>
989
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</file>
990
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</file>
991
+ <file>$PROJ_DIR$\Cstartup.s79</file>
992
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</file>
993
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</file>
994
+ <file>$PROJ_DIR$\Cstartup_SAM7.c</file>
995
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.c</file>
996
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</file>
997
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.c</file>
998
+ <file>$PROJ_DIR$\..\..\examples\src\Main.c</file>
999
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</file>
1000
+ <file>$PROJ_DIR$\..\..\examples\src\Model.c</file>
1001
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</file>
1002
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</file>
1003
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</file>
1004
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</file>
1005
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</file>
1006
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</file>
1007
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</file>
1008
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.h</file>
1009
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.h</file>
1010
+ <file>$PROJ_DIR$\..\..\examples\src\ModelConfig.h</file>
1011
+ <file>$PROJ_DIR$\srcIAR\Cstartup.s79</file>
1012
+ <file>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</file>
1013
+ </outputs>
1014
+ <file>
1015
+ <name>[ROOT_NODE]</name>
1016
+ <outputs>
1017
+ <tool>
1018
+ <name>XLINK</name>
1019
+ <file> 111 109 131</file>
1020
+ </tool>
1021
+ </outputs>
1022
+ </file>
1023
+ <file>
1024
+ <name>$PROJ_DIR$\..\test\system\src\Main.c</name>
1025
+ <outputs>
1026
+ <tool>
1027
+ <name>ICCARM</name>
1028
+ <file> 125</file>
1029
+ </tool>
1030
+ <tool>
1031
+ <name>BICOMP</name>
1032
+ <file> 115</file>
1033
+ </tool>
1034
+ </outputs>
1035
+ <inputs>
1036
+ <tool>
1037
+ <name>ICCARM</name>
1038
+ <file> 70 39 41 58 35 0 59 82 78 37 33 84 40 36 79 61 38 57 44 43 56 65 81 34 80</file>
1039
+ </tool>
1040
+ </inputs>
1041
+ </file>
1042
+ <file>
1043
+ <name>$PROJ_DIR$\..\test\system\src\Model.c</name>
1044
+ <outputs>
1045
+ <tool>
1046
+ <name>ICCARM</name>
1047
+ <file> 100</file>
1048
+ </tool>
1049
+ <tool>
1050
+ <name>BICOMP</name>
1051
+ <file> 85</file>
1052
+ </tool>
1053
+ </outputs>
1054
+ <inputs>
1055
+ <tool>
1056
+ <name>ICCARM</name>
1057
+ <file> 58 70 39 35 59</file>
1058
+ </tool>
1059
+ </inputs>
1060
+ </file>
1061
+ <file>
1062
+ <name>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.c</name>
1063
+ <outputs>
1064
+ <tool>
1065
+ <name>ICCARM</name>
1066
+ <file> 96</file>
1067
+ </tool>
1068
+ <tool>
1069
+ <name>BICOMP</name>
1070
+ <file> 106</file>
1071
+ </tool>
1072
+ </outputs>
1073
+ <inputs>
1074
+ <tool>
1075
+ <name>ICCARM</name>
1076
+ <file> 70 39 81 42</file>
1077
+ </tool>
1078
+ </inputs>
1079
+ </file>
1080
+ <file>
1081
+ <name>$PROJ_DIR$\..\test\system\src\TimerModel.c</name>
1082
+ <outputs>
1083
+ <tool>
1084
+ <name>ICCARM</name>
1085
+ <file> 103</file>
1086
+ </tool>
1087
+ <tool>
1088
+ <name>BICOMP</name>
1089
+ <file> 90</file>
1090
+ </tool>
1091
+ </outputs>
1092
+ <inputs>
1093
+ <tool>
1094
+ <name>ICCARM</name>
1095
+ <file> 70 39 43 35</file>
1096
+ </tool>
1097
+ </inputs>
1098
+ </file>
1099
+ <file>
1100
+ <name>$PROJ_DIR$\..\test\system\src\UsartModel.c</name>
1101
+ <outputs>
1102
+ <tool>
1103
+ <name>ICCARM</name>
1104
+ <file> 98</file>
1105
+ </tool>
1106
+ <tool>
1107
+ <name>BICOMP</name>
1108
+ <file> 133</file>
1109
+ </tool>
1110
+ </outputs>
1111
+ <inputs>
1112
+ <tool>
1113
+ <name>ICCARM</name>
1114
+ <file> 70 39 84 42 40 59 29 141 3 32 27 67 143 31 28 30</file>
1115
+ </tool>
1116
+ </inputs>
1117
+ </file>
1118
+ <file>
1119
+ <name>$PROJ_DIR$\..\test\system\src\UsartHardware.c</name>
1120
+ <outputs>
1121
+ <tool>
1122
+ <name>ICCARM</name>
1123
+ <file> 92</file>
1124
+ </tool>
1125
+ <tool>
1126
+ <name>BICOMP</name>
1127
+ <file> 120</file>
1128
+ </tool>
1129
+ </outputs>
1130
+ <inputs>
1131
+ <tool>
1132
+ <name>ICCARM</name>
1133
+ <file> 70 39 78 37 33</file>
1134
+ </tool>
1135
+ </inputs>
1136
+ </file>
1137
+ <file>
1138
+ <name>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.c</name>
1139
+ <outputs>
1140
+ <tool>
1141
+ <name>ICCARM</name>
1142
+ <file> 117</file>
1143
+ </tool>
1144
+ <tool>
1145
+ <name>BICOMP</name>
1146
+ <file> 110</file>
1147
+ </tool>
1148
+ </outputs>
1149
+ <inputs>
1150
+ <tool>
1151
+ <name>ICCARM</name>
1152
+ <file> 70 39 36</file>
1153
+ </tool>
1154
+ </inputs>
1155
+ </file>
1156
+ <file>
1157
+ <name>$PROJ_DIR$\..\test\system\src\UsartPutChar.c</name>
1158
+ <outputs>
1159
+ <tool>
1160
+ <name>ICCARM</name>
1161
+ <file> 105</file>
1162
+ </tool>
1163
+ <tool>
1164
+ <name>BICOMP</name>
1165
+ <file> 94</file>
1166
+ </tool>
1167
+ </outputs>
1168
+ <inputs>
1169
+ <tool>
1170
+ <name>ICCARM</name>
1171
+ <file> 70 39 33 36</file>
1172
+ </tool>
1173
+ </inputs>
1174
+ </file>
1175
+ <file>
1176
+ <name>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.c</name>
1177
+ <outputs>
1178
+ <tool>
1179
+ <name>ICCARM</name>
1180
+ <file> 107</file>
1181
+ </tool>
1182
+ <tool>
1183
+ <name>BICOMP</name>
1184
+ <file> 116</file>
1185
+ </tool>
1186
+ </outputs>
1187
+ <inputs>
1188
+ <tool>
1189
+ <name>ICCARM</name>
1190
+ <file> 70 39 57 44</file>
1191
+ </tool>
1192
+ </inputs>
1193
+ </file>
1194
+ <file>
1195
+ <name>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.c</name>
1196
+ <outputs>
1197
+ <tool>
1198
+ <name>ICCARM</name>
1199
+ <file> 99</file>
1200
+ </tool>
1201
+ <tool>
1202
+ <name>BICOMP</name>
1203
+ <file> 135</file>
1204
+ </tool>
1205
+ </outputs>
1206
+ <inputs>
1207
+ <tool>
1208
+ <name>ICCARM</name>
1209
+ <file> 70 39 40</file>
1210
+ </tool>
1211
+ </inputs>
1212
+ </file>
1213
+ <file>
1214
+ <name>$PROJ_DIR$\..\test\system\src\TaskScheduler.c</name>
1215
+ <outputs>
1216
+ <tool>
1217
+ <name>ICCARM</name>
1218
+ <file> 134</file>
1219
+ </tool>
1220
+ <tool>
1221
+ <name>BICOMP</name>
1222
+ <file> 108</file>
1223
+ </tool>
1224
+ </outputs>
1225
+ <inputs>
1226
+ <tool>
1227
+ <name>ICCARM</name>
1228
+ <file> 70 39 35</file>
1229
+ </tool>
1230
+ </inputs>
1231
+ </file>
1232
+ <file>
1233
+ <name>$PROJ_DIR$\..\test\system\src\AdcModel.c</name>
1234
+ <outputs>
1235
+ <tool>
1236
+ <name>ICCARM</name>
1237
+ <file> 101</file>
1238
+ </tool>
1239
+ <tool>
1240
+ <name>BICOMP</name>
1241
+ <file> 118</file>
1242
+ </tool>
1243
+ </outputs>
1244
+ <inputs>
1245
+ <tool>
1246
+ <name>ICCARM</name>
1247
+ <file> 70 39 80 35 0 59</file>
1248
+ </tool>
1249
+ </inputs>
1250
+ </file>
1251
+ <file>
1252
+ <name>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.c</name>
1253
+ <outputs>
1254
+ <tool>
1255
+ <name>ICCARM</name>
1256
+ <file> 112</file>
1257
+ </tool>
1258
+ <tool>
1259
+ <name>BICOMP</name>
1260
+ <file> 91</file>
1261
+ </tool>
1262
+ </outputs>
1263
+ <inputs>
1264
+ <tool>
1265
+ <name>ICCARM</name>
1266
+ <file> 70 39 34</file>
1267
+ </tool>
1268
+ </inputs>
1269
+ </file>
1270
+ <file>
1271
+ <name>$PROJ_DIR$\..\test\system\src\AdcConductor.c</name>
1272
+ <outputs>
1273
+ <tool>
1274
+ <name>ICCARM</name>
1275
+ <file> 88</file>
1276
+ </tool>
1277
+ <tool>
1278
+ <name>BICOMP</name>
1279
+ <file> 136</file>
1280
+ </tool>
1281
+ </outputs>
1282
+ </file>
1283
+ <file>
1284
+ <name>$PROJ_DIR$\..\test\system\src\AdcHardware.c</name>
1285
+ <outputs>
1286
+ <tool>
1287
+ <name>ICCARM</name>
1288
+ <file> 89</file>
1289
+ </tool>
1290
+ <tool>
1291
+ <name>BICOMP</name>
1292
+ <file> 102</file>
1293
+ </tool>
1294
+ </outputs>
1295
+ <inputs>
1296
+ <tool>
1297
+ <name>ICCARM</name>
1298
+ <file> 70 39 65 81 34</file>
1299
+ </tool>
1300
+ </inputs>
1301
+ </file>
1302
+ <file>
1303
+ <name>$PROJ_DIR$\..\test\system\src\Executor.c</name>
1304
+ <outputs>
1305
+ <tool>
1306
+ <name>ICCARM</name>
1307
+ <file> 127</file>
1308
+ </tool>
1309
+ <tool>
1310
+ <name>BICOMP</name>
1311
+ <file> 83</file>
1312
+ </tool>
1313
+ </outputs>
1314
+ <inputs>
1315
+ <tool>
1316
+ <name>ICCARM</name>
1317
+ <file> 70 39 41 58 82 79 56</file>
1318
+ </tool>
1319
+ </inputs>
1320
+ </file>
1321
+ <file>
1322
+ <name>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.c</name>
1323
+ <outputs>
1324
+ <tool>
1325
+ <name>ICCARM</name>
1326
+ <file> 95</file>
1327
+ </tool>
1328
+ <tool>
1329
+ <name>BICOMP</name>
1330
+ <file> 129</file>
1331
+ </tool>
1332
+ </outputs>
1333
+ <inputs>
1334
+ <tool>
1335
+ <name>ICCARM</name>
1336
+ <file> 70 39 0 28 30 141 3 32 27 67 143</file>
1337
+ </tool>
1338
+ </inputs>
1339
+ </file>
1340
+ <file>
1341
+ <name>$PROJ_DIR$\..\test\system\src\TemperatureFilter.c</name>
1342
+ <outputs>
1343
+ <tool>
1344
+ <name>ICCARM</name>
1345
+ <file> 119</file>
1346
+ </tool>
1347
+ <tool>
1348
+ <name>BICOMP</name>
1349
+ <file> 93</file>
1350
+ </tool>
1351
+ </outputs>
1352
+ <inputs>
1353
+ <tool>
1354
+ <name>ICCARM</name>
1355
+ <file> 70 39 59 28 30 141 3 32 27 67 143</file>
1356
+ </tool>
1357
+ </inputs>
1358
+ </file>
1359
+ <file>
1360
+ <name>$PROJ_DIR$\..\test\system\src\TimerConductor.c</name>
1361
+ <outputs>
1362
+ <tool>
1363
+ <name>ICCARM</name>
1364
+ <file> 113</file>
1365
+ </tool>
1366
+ <tool>
1367
+ <name>BICOMP</name>
1368
+ <file> 124</file>
1369
+ </tool>
1370
+ </outputs>
1371
+ <inputs>
1372
+ <tool>
1373
+ <name>ICCARM</name>
1374
+ <file> 70 39 79 43 61 44</file>
1375
+ </tool>
1376
+ </inputs>
1377
+ </file>
1378
+ <file>
1379
+ <name>$PROJ_DIR$\..\test\system\src\TimerConfigurator.c</name>
1380
+ <outputs>
1381
+ <tool>
1382
+ <name>ICCARM</name>
1383
+ <file> 114</file>
1384
+ </tool>
1385
+ <tool>
1386
+ <name>BICOMP</name>
1387
+ <file> 132</file>
1388
+ </tool>
1389
+ </outputs>
1390
+ <inputs>
1391
+ <tool>
1392
+ <name>ICCARM</name>
1393
+ <file> 70 39 38 57</file>
1394
+ </tool>
1395
+ </inputs>
1396
+ </file>
1397
+ <file>
1398
+ <name>$PROJ_DIR$\..\test\system\src\TimerHardware.c</name>
1399
+ <outputs>
1400
+ <tool>
1401
+ <name>ICCARM</name>
1402
+ <file> 104</file>
1403
+ </tool>
1404
+ <tool>
1405
+ <name>BICOMP</name>
1406
+ <file> 130</file>
1407
+ </tool>
1408
+ </outputs>
1409
+ <inputs>
1410
+ <tool>
1411
+ <name>ICCARM</name>
1412
+ <file> 70 39 61 38</file>
1413
+ </tool>
1414
+ </inputs>
1415
+ </file>
1416
+ <file>
1417
+ <name>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.c</name>
1418
+ <outputs>
1419
+ <tool>
1420
+ <name>ICCARM</name>
1421
+ <file> 137</file>
1422
+ </tool>
1423
+ <tool>
1424
+ <name>BICOMP</name>
1425
+ <file> 123</file>
1426
+ </tool>
1427
+ </outputs>
1428
+ <inputs>
1429
+ <tool>
1430
+ <name>ICCARM</name>
1431
+ <file> 70 39 44 57</file>
1432
+ </tool>
1433
+ </inputs>
1434
+ </file>
1435
+ <file>
1436
+ <name>$PROJ_DIR$\..\test\system\src\UsartConductor.c</name>
1437
+ <outputs>
1438
+ <tool>
1439
+ <name>ICCARM</name>
1440
+ <file> 122</file>
1441
+ </tool>
1442
+ <tool>
1443
+ <name>BICOMP</name>
1444
+ <file> 87</file>
1445
+ </tool>
1446
+ </outputs>
1447
+ <inputs>
1448
+ <tool>
1449
+ <name>ICCARM</name>
1450
+ <file> 70 39 82 78 84 35</file>
1451
+ </tool>
1452
+ </inputs>
1453
+ </file>
1454
+ <file>
1455
+ <name>$PROJ_DIR$\..\test\system\src\UsartConfigurator.c</name>
1456
+ <outputs>
1457
+ <tool>
1458
+ <name>ICCARM</name>
1459
+ <file> 138</file>
1460
+ </tool>
1461
+ <tool>
1462
+ <name>BICOMP</name>
1463
+ <file> 126</file>
1464
+ </tool>
1465
+ </outputs>
1466
+ <inputs>
1467
+ <tool>
1468
+ <name>ICCARM</name>
1469
+ <file> 70 39 37</file>
1470
+ </tool>
1471
+ </inputs>
1472
+ </file>
1473
+ <file>
1474
+ <name>$PROJ_DIR$\Release\Obj\cmock_demo.pbd</name>
1475
+ <inputs>
1476
+ <tool>
1477
+ <name>BILINK</name>
1478
+ <file> 136 102 106 118 91 86 83 139 115 85 108 129 93 124 132 130 116 123 90 135 87 126 120 133 94 110</file>
1479
+ </tool>
1480
+ </inputs>
1481
+ </file>
1482
+ <file>
1483
+ <name>$PROJ_DIR$\Release\Exe\cmock_demo.d79</name>
1484
+ <outputs>
1485
+ <tool>
1486
+ <name>XLINK</name>
1487
+ <file> 109 131</file>
1488
+ </tool>
1489
+ </outputs>
1490
+ <inputs>
1491
+ <tool>
1492
+ <name>XLINK</name>
1493
+ <file> 144 88 89 96 101 112 121 128 127 140 125 100 134 95 119 113 114 104 107 137 103 99 122 138 92 98 105 117 68</file>
1494
+ </tool>
1495
+ </inputs>
1496
+ </file>
1497
+ <file>
1498
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
1499
+ <outputs>
1500
+ <tool>
1501
+ <name>ICCARM</name>
1502
+ <file> 113</file>
1503
+ </tool>
1504
+ <tool>
1505
+ <name>BICOMP</name>
1506
+ <file> 124</file>
1507
+ </tool>
1508
+ </outputs>
1509
+ <inputs>
1510
+ <tool>
1511
+ <name>ICCARM</name>
1512
+ <file> 1 4 15 23 25 22</file>
1513
+ </tool>
1514
+ <tool>
1515
+ <name>BICOMP</name>
1516
+ <file> 1 4 15 23 25 22</file>
1517
+ </tool>
1518
+ </inputs>
1519
+ </file>
1520
+ <file>
1521
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
1522
+ <outputs>
1523
+ <tool>
1524
+ <name>ICCARM</name>
1525
+ <file> 114</file>
1526
+ </tool>
1527
+ <tool>
1528
+ <name>BICOMP</name>
1529
+ <file> 132</file>
1530
+ </tool>
1531
+ </outputs>
1532
+ <inputs>
1533
+ <tool>
1534
+ <name>ICCARM</name>
1535
+ <file> 1 4 24 21</file>
1536
+ </tool>
1537
+ <tool>
1538
+ <name>BICOMP</name>
1539
+ <file> 1 4 24 21</file>
1540
+ </tool>
1541
+ </inputs>
1542
+ </file>
1543
+ <file>
1544
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
1545
+ <outputs>
1546
+ <tool>
1547
+ <name>ICCARM</name>
1548
+ <file> 104</file>
1549
+ </tool>
1550
+ <tool>
1551
+ <name>BICOMP</name>
1552
+ <file> 130</file>
1553
+ </tool>
1554
+ </outputs>
1555
+ <inputs>
1556
+ <tool>
1557
+ <name>ICCARM</name>
1558
+ <file> 1 4 25 24</file>
1559
+ </tool>
1560
+ <tool>
1561
+ <name>BICOMP</name>
1562
+ <file> 1 4 25 24</file>
1563
+ </tool>
1564
+ </inputs>
1565
+ </file>
1566
+ <file>
1567
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
1568
+ <outputs>
1569
+ <tool>
1570
+ <name>ICCARM</name>
1571
+ <file> 107</file>
1572
+ </tool>
1573
+ <tool>
1574
+ <name>BICOMP</name>
1575
+ <file> 116</file>
1576
+ </tool>
1577
+ </outputs>
1578
+ <inputs>
1579
+ <tool>
1580
+ <name>ICCARM</name>
1581
+ <file> 1 4 21 22</file>
1582
+ </tool>
1583
+ <tool>
1584
+ <name>BICOMP</name>
1585
+ <file> 1 4 21 22</file>
1586
+ </tool>
1587
+ </inputs>
1588
+ </file>
1589
+ <file>
1590
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
1591
+ <outputs>
1592
+ <tool>
1593
+ <name>ICCARM</name>
1594
+ <file> 103</file>
1595
+ </tool>
1596
+ <tool>
1597
+ <name>BICOMP</name>
1598
+ <file> 90</file>
1599
+ </tool>
1600
+ </outputs>
1601
+ <inputs>
1602
+ <tool>
1603
+ <name>ICCARM</name>
1604
+ <file> 1 4 23 6</file>
1605
+ </tool>
1606
+ <tool>
1607
+ <name>BICOMP</name>
1608
+ <file> 1 4 23 6</file>
1609
+ </tool>
1610
+ </inputs>
1611
+ </file>
1612
+ <file>
1613
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
1614
+ <outputs>
1615
+ <tool>
1616
+ <name>ICCARM</name>
1617
+ <file> 99</file>
1618
+ </tool>
1619
+ <tool>
1620
+ <name>BICOMP</name>
1621
+ <file> 135</file>
1622
+ </tool>
1623
+ </outputs>
1624
+ <inputs>
1625
+ <tool>
1626
+ <name>ICCARM</name>
1627
+ <file> 1 4 26</file>
1628
+ </tool>
1629
+ <tool>
1630
+ <name>BICOMP</name>
1631
+ <file> 1 4 26</file>
1632
+ </tool>
1633
+ </inputs>
1634
+ </file>
1635
+ <file>
1636
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
1637
+ <outputs>
1638
+ <tool>
1639
+ <name>ICCARM</name>
1640
+ <file> 98</file>
1641
+ </tool>
1642
+ <tool>
1643
+ <name>BICOMP</name>
1644
+ <file> 133</file>
1645
+ </tool>
1646
+ </outputs>
1647
+ <inputs>
1648
+ <tool>
1649
+ <name>ICCARM</name>
1650
+ <file> 1 4 17 174 26 14 29 141 3 32 27 67 143 31 28 30</file>
1651
+ </tool>
1652
+ <tool>
1653
+ <name>BICOMP</name>
1654
+ <file> 1 4 17 174 26 14 29 141 3 27 67 143 31 28 30</file>
1655
+ </tool>
1656
+ </inputs>
1657
+ </file>
1658
+ <file>
1659
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
1660
+ <outputs>
1661
+ <tool>
1662
+ <name>ICCARM</name>
1663
+ <file> 122</file>
1664
+ </tool>
1665
+ <tool>
1666
+ <name>BICOMP</name>
1667
+ <file> 87</file>
1668
+ </tool>
1669
+ </outputs>
1670
+ <inputs>
1671
+ <tool>
1672
+ <name>ICCARM</name>
1673
+ <file> 1 4 7 19 17 6</file>
1674
+ </tool>
1675
+ <tool>
1676
+ <name>BICOMP</name>
1677
+ <file> 1 4 7 19 17 6</file>
1678
+ </tool>
1679
+ </inputs>
1680
+ </file>
1681
+ <file>
1682
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
1683
+ <outputs>
1684
+ <tool>
1685
+ <name>ICCARM</name>
1686
+ <file> 138</file>
1687
+ </tool>
1688
+ <tool>
1689
+ <name>BICOMP</name>
1690
+ <file> 126</file>
1691
+ </tool>
1692
+ </outputs>
1693
+ <inputs>
1694
+ <tool>
1695
+ <name>ICCARM</name>
1696
+ <file> 1 4 12</file>
1697
+ </tool>
1698
+ <tool>
1699
+ <name>BICOMP</name>
1700
+ <file> 1 4 12</file>
1701
+ </tool>
1702
+ </inputs>
1703
+ </file>
1704
+ <file>
1705
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
1706
+ <outputs>
1707
+ <tool>
1708
+ <name>ICCARM</name>
1709
+ <file> 92</file>
1710
+ </tool>
1711
+ <tool>
1712
+ <name>BICOMP</name>
1713
+ <file> 120</file>
1714
+ </tool>
1715
+ </outputs>
1716
+ <inputs>
1717
+ <tool>
1718
+ <name>ICCARM</name>
1719
+ <file> 1 4 19 12 16</file>
1720
+ </tool>
1721
+ <tool>
1722
+ <name>BICOMP</name>
1723
+ <file> 1 4 19 12 16</file>
1724
+ </tool>
1725
+ </inputs>
1726
+ </file>
1727
+ <file>
1728
+ <name>$PROJ_DIR$\Cstartup.s79</name>
1729
+ <outputs>
1730
+ <tool>
1731
+ <name>AARM</name>
1732
+ <file> 121</file>
1733
+ </tool>
1734
+ </outputs>
1735
+ <inputs>
1736
+ <tool>
1737
+ <name>AARM</name>
1738
+ <file> 142</file>
1739
+ </tool>
1740
+ </inputs>
1741
+ </file>
1742
+ <file>
1743
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
1744
+ <outputs>
1745
+ <tool>
1746
+ <name>ICCARM</name>
1747
+ <file> 105</file>
1748
+ </tool>
1749
+ <tool>
1750
+ <name>BICOMP</name>
1751
+ <file> 94</file>
1752
+ </tool>
1753
+ </outputs>
1754
+ <inputs>
1755
+ <tool>
1756
+ <name>ICCARM</name>
1757
+ <file> 1 4 16 20</file>
1758
+ </tool>
1759
+ <tool>
1760
+ <name>BICOMP</name>
1761
+ <file> 1 4 16 20</file>
1762
+ </tool>
1763
+ </inputs>
1764
+ </file>
1765
+ <file>
1766
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
1767
+ <outputs>
1768
+ <tool>
1769
+ <name>ICCARM</name>
1770
+ <file> 117</file>
1771
+ </tool>
1772
+ <tool>
1773
+ <name>BICOMP</name>
1774
+ <file> 110</file>
1775
+ </tool>
1776
+ </outputs>
1777
+ <inputs>
1778
+ <tool>
1779
+ <name>ICCARM</name>
1780
+ <file> 1 4 20</file>
1781
+ </tool>
1782
+ <tool>
1783
+ <name>BICOMP</name>
1784
+ <file> 1 4 20</file>
1785
+ </tool>
1786
+ </inputs>
1787
+ </file>
1788
+ <file>
1789
+ <name>$PROJ_DIR$\Cstartup_SAM7.c</name>
1790
+ <outputs>
1791
+ <tool>
1792
+ <name>ICCARM</name>
1793
+ <file> 128</file>
1794
+ </tool>
1795
+ <tool>
1796
+ <name>BICOMP</name>
1797
+ <file> 86</file>
1798
+ </tool>
1799
+ </outputs>
1800
+ <inputs>
1801
+ <tool>
1802
+ <name>ICCARM</name>
1803
+ <file> 4</file>
1804
+ </tool>
1805
+ <tool>
1806
+ <name>BICOMP</name>
1807
+ <file> 4</file>
1808
+ </tool>
1809
+ </inputs>
1810
+ </file>
1811
+ <file>
1812
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
1813
+ <outputs>
1814
+ <tool>
1815
+ <name>ICCARM</name>
1816
+ <file> 101</file>
1817
+ </tool>
1818
+ <tool>
1819
+ <name>BICOMP</name>
1820
+ <file> 118</file>
1821
+ </tool>
1822
+ </outputs>
1823
+ <inputs>
1824
+ <tool>
1825
+ <name>ICCARM</name>
1826
+ <file> 1 4 173 6 10 14</file>
1827
+ </tool>
1828
+ <tool>
1829
+ <name>BICOMP</name>
1830
+ <file> 1 4 173 6 10 14</file>
1831
+ </tool>
1832
+ </inputs>
1833
+ </file>
1834
+ <file>
1835
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
1836
+ <outputs>
1837
+ <tool>
1838
+ <name>ICCARM</name>
1839
+ <file> 112</file>
1840
+ </tool>
1841
+ <tool>
1842
+ <name>BICOMP</name>
1843
+ <file> 91</file>
1844
+ </tool>
1845
+ </outputs>
1846
+ <inputs>
1847
+ <tool>
1848
+ <name>ICCARM</name>
1849
+ <file> 1 4 11</file>
1850
+ </tool>
1851
+ <tool>
1852
+ <name>BICOMP</name>
1853
+ <file> 1 4 11</file>
1854
+ </tool>
1855
+ </inputs>
1856
+ </file>
1857
+ <file>
1858
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
1859
+ <outputs>
1860
+ <tool>
1861
+ <name>ICCARM</name>
1862
+ <file> 127</file>
1863
+ </tool>
1864
+ <tool>
1865
+ <name>BICOMP</name>
1866
+ <file> 83</file>
1867
+ </tool>
1868
+ </outputs>
1869
+ <inputs>
1870
+ <tool>
1871
+ <name>ICCARM</name>
1872
+ <file> 1 4 172 8 7 15 5 18</file>
1873
+ </tool>
1874
+ <tool>
1875
+ <name>BICOMP</name>
1876
+ <file> 1 4 172 8 7 15 5 18</file>
1877
+ </tool>
1878
+ </inputs>
1879
+ </file>
1880
+ <file>
1881
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
1882
+ <outputs>
1883
+ <tool>
1884
+ <name>ICCARM</name>
1885
+ <file> 125</file>
1886
+ </tool>
1887
+ <tool>
1888
+ <name>BICOMP</name>
1889
+ <file> 115</file>
1890
+ </tool>
1891
+ </outputs>
1892
+ <inputs>
1893
+ <tool>
1894
+ <name>ICCARM</name>
1895
+ <file> 1 4 18 172 8 6 10 14 7 19 12 16 17 26 20 15 25 24 21 22 23 5 13 2 11 173</file>
1896
+ </tool>
1897
+ <tool>
1898
+ <name>BICOMP</name>
1899
+ <file> 1 4 18 172 8 6 10 14 7 19 12 16 17 26 20 15 25 24 21 22 23 5 13 2 11 173</file>
1900
+ </tool>
1901
+ </inputs>
1902
+ </file>
1903
+ <file>
1904
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
1905
+ <outputs>
1906
+ <tool>
1907
+ <name>ICCARM</name>
1908
+ <file> 140</file>
1909
+ </tool>
1910
+ <tool>
1911
+ <name>BICOMP</name>
1912
+ <file> 139</file>
1913
+ </tool>
1914
+ </outputs>
1915
+ <inputs>
1916
+ <tool>
1917
+ <name>ICCARM</name>
1918
+ <file> 18 9</file>
1919
+ </tool>
1920
+ <tool>
1921
+ <name>BICOMP</name>
1922
+ <file> 18 9</file>
1923
+ </tool>
1924
+ </inputs>
1925
+ </file>
1926
+ <file>
1927
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
1928
+ <outputs>
1929
+ <tool>
1930
+ <name>ICCARM</name>
1931
+ <file> 100</file>
1932
+ </tool>
1933
+ <tool>
1934
+ <name>BICOMP</name>
1935
+ <file> 85</file>
1936
+ </tool>
1937
+ </outputs>
1938
+ <inputs>
1939
+ <tool>
1940
+ <name>ICCARM</name>
1941
+ <file> 8 1 4 6 14</file>
1942
+ </tool>
1943
+ <tool>
1944
+ <name>BICOMP</name>
1945
+ <file> 8 1 4 6 14</file>
1946
+ </tool>
1947
+ </inputs>
1948
+ </file>
1949
+ <file>
1950
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
1951
+ <outputs>
1952
+ <tool>
1953
+ <name>ICCARM</name>
1954
+ <file> 95</file>
1955
+ </tool>
1956
+ <tool>
1957
+ <name>BICOMP</name>
1958
+ <file> 129</file>
1959
+ </tool>
1960
+ </outputs>
1961
+ <inputs>
1962
+ <tool>
1963
+ <name>ICCARM</name>
1964
+ <file> 1 4 10 28 30 141 3 32 27 67 143</file>
1965
+ </tool>
1966
+ <tool>
1967
+ <name>BICOMP</name>
1968
+ <file> 1 4 10 28 30 141 3 27 67 143</file>
1969
+ </tool>
1970
+ </inputs>
1971
+ </file>
1972
+ <file>
1973
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
1974
+ <outputs>
1975
+ <tool>
1976
+ <name>ICCARM</name>
1977
+ <file> 134</file>
1978
+ </tool>
1979
+ <tool>
1980
+ <name>BICOMP</name>
1981
+ <file> 108</file>
1982
+ </tool>
1983
+ </outputs>
1984
+ <inputs>
1985
+ <tool>
1986
+ <name>ICCARM</name>
1987
+ <file> 1 4 6</file>
1988
+ </tool>
1989
+ <tool>
1990
+ <name>BICOMP</name>
1991
+ <file> 1 4 6</file>
1992
+ </tool>
1993
+ </inputs>
1994
+ </file>
1995
+ <file>
1996
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
1997
+ <outputs>
1998
+ <tool>
1999
+ <name>ICCARM</name>
2000
+ <file> 137</file>
2001
+ </tool>
2002
+ <tool>
2003
+ <name>BICOMP</name>
2004
+ <file> 123</file>
2005
+ </tool>
2006
+ </outputs>
2007
+ <inputs>
2008
+ <tool>
2009
+ <name>ICCARM</name>
2010
+ <file> 1 4 22 21</file>
2011
+ </tool>
2012
+ <tool>
2013
+ <name>BICOMP</name>
2014
+ <file> 1 4 22 21</file>
2015
+ </tool>
2016
+ </inputs>
2017
+ </file>
2018
+ <file>
2019
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
2020
+ <outputs>
2021
+ <tool>
2022
+ <name>ICCARM</name>
2023
+ <file> 119</file>
2024
+ </tool>
2025
+ <tool>
2026
+ <name>BICOMP</name>
2027
+ <file> 93</file>
2028
+ </tool>
2029
+ </outputs>
2030
+ <inputs>
2031
+ <tool>
2032
+ <name>ICCARM</name>
2033
+ <file> 1 4 14 28 30 141 3 32 27 67 143</file>
2034
+ </tool>
2035
+ <tool>
2036
+ <name>BICOMP</name>
2037
+ <file> 1 4 14 28 30 141 3 27 67 143</file>
2038
+ </tool>
2039
+ </inputs>
2040
+ </file>
2041
+ <file>
2042
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
2043
+ <outputs>
2044
+ <tool>
2045
+ <name>ICCARM</name>
2046
+ <file> 96</file>
2047
+ </tool>
2048
+ <tool>
2049
+ <name>BICOMP</name>
2050
+ <file> 106</file>
2051
+ </tool>
2052
+ </outputs>
2053
+ <inputs>
2054
+ <tool>
2055
+ <name>ICCARM</name>
2056
+ <file> 1 4 2 174</file>
2057
+ </tool>
2058
+ <tool>
2059
+ <name>BICOMP</name>
2060
+ <file> 1 4 2 174</file>
2061
+ </tool>
2062
+ </inputs>
2063
+ </file>
2064
+ <file>
2065
+ <name>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</name>
2066
+ <outputs>
2067
+ <tool>
2068
+ <name>ICCARM</name>
2069
+ <file> 88</file>
2070
+ </tool>
2071
+ <tool>
2072
+ <name>BICOMP</name>
2073
+ <file> 136</file>
2074
+ </tool>
2075
+ </outputs>
2076
+ <inputs>
2077
+ <tool>
2078
+ <name>ICCARM</name>
2079
+ <file> 1 4 5 173 13</file>
2080
+ </tool>
2081
+ <tool>
2082
+ <name>BICOMP</name>
2083
+ <file> 1 4 5 173 13</file>
2084
+ </tool>
2085
+ </inputs>
2086
+ </file>
2087
+ <file>
2088
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
2089
+ <outputs>
2090
+ <tool>
2091
+ <name>ICCARM</name>
2092
+ <file> 89</file>
2093
+ </tool>
2094
+ <tool>
2095
+ <name>BICOMP</name>
2096
+ <file> 102</file>
2097
+ </tool>
2098
+ </outputs>
2099
+ <inputs>
2100
+ <tool>
2101
+ <name>ICCARM</name>
2102
+ <file> 1 4 13 2 11</file>
2103
+ </tool>
2104
+ <tool>
2105
+ <name>BICOMP</name>
2106
+ <file> 1 4 13 2 11</file>
2107
+ </tool>
2108
+ </inputs>
2109
+ </file>
2110
+ <file>
2111
+ <name>$PROJ_DIR$\srcIAR\Cstartup.s79</name>
2112
+ <outputs>
2113
+ <tool>
2114
+ <name>AARM</name>
2115
+ <file> 121</file>
2116
+ </tool>
2117
+ </outputs>
2118
+ <inputs>
2119
+ <tool>
2120
+ <name>AARM</name>
2121
+ <file> 142</file>
2122
+ </tool>
2123
+ </inputs>
2124
+ </file>
2125
+ <file>
2126
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
2127
+ <outputs>
2128
+ <tool>
2129
+ <name>ICCARM</name>
2130
+ <file> 128</file>
2131
+ </tool>
2132
+ <tool>
2133
+ <name>BICOMP</name>
2134
+ <file> 86</file>
2135
+ </tool>
2136
+ </outputs>
2137
+ <inputs>
2138
+ <tool>
2139
+ <name>ICCARM</name>
2140
+ <file> 4</file>
2141
+ </tool>
2142
+ <tool>
2143
+ <name>BICOMP</name>
2144
+ <file> 4</file>
2145
+ </tool>
2146
+ </inputs>
2147
+ </file>
2148
+ <forcedrebuild>
2149
+ <name>$PROJ_DIR$\..\test\system\src\Main.c</name>
2150
+ <tool>ICCARM</tool>
2151
+ </forcedrebuild>
2152
+ <forcedrebuild>
2153
+ <name>$PROJ_DIR$\..\test\system\src\Model.c</name>
2154
+ <tool>ICCARM</tool>
2155
+ </forcedrebuild>
2156
+ <forcedrebuild>
2157
+ <name>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.c</name>
2158
+ <tool>ICCARM</tool>
2159
+ </forcedrebuild>
2160
+ <forcedrebuild>
2161
+ <name>$PROJ_DIR$\..\test\system\src\TimerModel.c</name>
2162
+ <tool>ICCARM</tool>
2163
+ </forcedrebuild>
2164
+ <forcedrebuild>
2165
+ <name>$PROJ_DIR$\..\test\system\src\UsartModel.c</name>
2166
+ <tool>ICCARM</tool>
2167
+ </forcedrebuild>
2168
+ <forcedrebuild>
2169
+ <name>$PROJ_DIR$\..\test\system\src\UsartHardware.c</name>
2170
+ <tool>ICCARM</tool>
2171
+ </forcedrebuild>
2172
+ <forcedrebuild>
2173
+ <name>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.c</name>
2174
+ <tool>ICCARM</tool>
2175
+ </forcedrebuild>
2176
+ <forcedrebuild>
2177
+ <name>$PROJ_DIR$\..\test\system\src\UsartPutChar.c</name>
2178
+ <tool>ICCARM</tool>
2179
+ </forcedrebuild>
2180
+ <forcedrebuild>
2181
+ <name>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.c</name>
2182
+ <tool>ICCARM</tool>
2183
+ </forcedrebuild>
2184
+ <forcedrebuild>
2185
+ <name>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.c</name>
2186
+ <tool>ICCARM</tool>
2187
+ </forcedrebuild>
2188
+ <forcedrebuild>
2189
+ <name>$PROJ_DIR$\..\test\system\src\TaskScheduler.c</name>
2190
+ <tool>ICCARM</tool>
2191
+ </forcedrebuild>
2192
+ <forcedrebuild>
2193
+ <name>$PROJ_DIR$\..\test\system\src\AdcModel.c</name>
2194
+ <tool>ICCARM</tool>
2195
+ </forcedrebuild>
2196
+ <forcedrebuild>
2197
+ <name>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.c</name>
2198
+ <tool>ICCARM</tool>
2199
+ </forcedrebuild>
2200
+ <forcedrebuild>
2201
+ <name>$PROJ_DIR$\..\test\system\src\AdcConductor.c</name>
2202
+ <tool>ICCARM</tool>
2203
+ </forcedrebuild>
2204
+ <forcedrebuild>
2205
+ <name>$PROJ_DIR$\..\test\system\src\AdcHardware.c</name>
2206
+ <tool>ICCARM</tool>
2207
+ </forcedrebuild>
2208
+ <forcedrebuild>
2209
+ <name>$PROJ_DIR$\..\test\system\src\Executor.c</name>
2210
+ <tool>ICCARM</tool>
2211
+ </forcedrebuild>
2212
+ <forcedrebuild>
2213
+ <name>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.c</name>
2214
+ <tool>ICCARM</tool>
2215
+ </forcedrebuild>
2216
+ <forcedrebuild>
2217
+ <name>$PROJ_DIR$\..\test\system\src\TemperatureFilter.c</name>
2218
+ <tool>ICCARM</tool>
2219
+ </forcedrebuild>
2220
+ <forcedrebuild>
2221
+ <name>$PROJ_DIR$\..\test\system\src\TimerConductor.c</name>
2222
+ <tool>ICCARM</tool>
2223
+ </forcedrebuild>
2224
+ <forcedrebuild>
2225
+ <name>$PROJ_DIR$\..\test\system\src\TimerConfigurator.c</name>
2226
+ <tool>ICCARM</tool>
2227
+ </forcedrebuild>
2228
+ <forcedrebuild>
2229
+ <name>$PROJ_DIR$\..\test\system\src\TimerHardware.c</name>
2230
+ <tool>ICCARM</tool>
2231
+ </forcedrebuild>
2232
+ <forcedrebuild>
2233
+ <name>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.c</name>
2234
+ <tool>ICCARM</tool>
2235
+ </forcedrebuild>
2236
+ <forcedrebuild>
2237
+ <name>$PROJ_DIR$\..\test\system\src\UsartConductor.c</name>
2238
+ <tool>ICCARM</tool>
2239
+ </forcedrebuild>
2240
+ <forcedrebuild>
2241
+ <name>$PROJ_DIR$\..\test\system\src\UsartConfigurator.c</name>
2242
+ <tool>ICCARM</tool>
2243
+ </forcedrebuild>
2244
+ </configuration>
2245
+ <configuration>
2246
+ <name>Simulate</name>
2247
+ <outputs>
2248
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.h</file>
2249
+ <file>$PROJ_DIR$\..\..\examples\src\Types.h</file>
2250
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.h</file>
2251
+ <file>$TOOLKIT_DIR$\inc\DLib_Defaults.h</file>
2252
+ <file>$PROJ_DIR$\..\..\examples\src\AT91SAM7X256.h</file>
2253
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.h</file>
2254
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.h</file>
2255
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.h</file>
2256
+ <file>$PROJ_DIR$\..\..\examples\src\Model.h</file>
2257
+ <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>
2258
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.h</file>
2259
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.h</file>
2260
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.h</file>
2261
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.h</file>
2262
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.h</file>
2263
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.h</file>
2264
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.h</file>
2265
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.h</file>
2266
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.h</file>
2267
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.h</file>
2268
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.h</file>
2269
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.h</file>
2270
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.h</file>
2271
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.h</file>
2272
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.h</file>
2273
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.h</file>
2274
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.h</file>
2275
+ <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>
2276
+ <file>$TOOLKIT_DIR$\inc\math.h</file>
2277
+ <file>$TOOLKIT_DIR$\inc\stdio.h</file>
2278
+ <file>$TOOLKIT_DIR$\inc\ymath.h</file>
2279
+ <file>$TOOLKIT_DIR$\inc\ysizet.h</file>
2280
+ <file>$TOOLKIT_DIR$\lib\dl4tptinl8n.h</file>
2281
+ <file>$PROJ_DIR$\..\test\system\src\UsartPutChar.h</file>
2282
+ <file>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.h</file>
2283
+ <file>$PROJ_DIR$\Simulate\Obj\cmock_demo.pbd</file>
2284
+ <file>$PROJ_DIR$\..\test\system\src\TaskScheduler.h</file>
2285
+ <file>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.h</file>
2286
+ <file>$PROJ_DIR$\..\test\system\src\UsartConfigurator.h</file>
2287
+ <file>$PROJ_DIR$\..\test\system\src\TimerConfigurator.h</file>
2288
+ <file>$PROJ_DIR$\..\test\system\src\AT91SAM7X256.h</file>
2289
+ <file>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.h</file>
2290
+ <file>$PROJ_DIR$\..\test\system\src\Executor.h</file>
2291
+ <file>$PROJ_DIR$\..\test\system\src\ModelConfig.h</file>
2292
+ <file>$PROJ_DIR$\..\test\system\src\TimerModel.h</file>
2293
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.h</file>
2294
+ <file>$PROJ_DIR$\..\test\system\src\Main.c</file>
2295
+ <file>$PROJ_DIR$\..\test\system\src\Model.c</file>
2296
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.c</file>
2297
+ <file>$PROJ_DIR$\..\test\system\src\TimerModel.c</file>
2298
+ <file>$PROJ_DIR$\..\test\system\src\UsartModel.c</file>
2299
+ <file>$PROJ_DIR$\..\test\system\src\UsartHardware.c</file>
2300
+ <file>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.c</file>
2301
+ <file>$PROJ_DIR$\..\test\system\src\UsartPutChar.c</file>
2302
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.c</file>
2303
+ <file>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.c</file>
2304
+ <file>$PROJ_DIR$\..\test\system\src\TaskScheduler.c</file>
2305
+ <file>$PROJ_DIR$\..\test\system\src\AdcConductor.h</file>
2306
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.h</file>
2307
+ <file>$PROJ_DIR$\..\test\system\src\Model.h</file>
2308
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureFilter.h</file>
2309
+ <file>$PROJ_DIR$\..\test\system\src\AdcModel.c</file>
2310
+ <file>$PROJ_DIR$\..\test\system\src\TimerHardware.h</file>
2311
+ <file>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.c</file>
2312
+ <file>$PROJ_DIR$\..\test\system\src\AdcConductor.c</file>
2313
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardware.c</file>
2314
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardware.h</file>
2315
+ <file>$PROJ_DIR$\..\test\system\src\Executor.c</file>
2316
+ <file>$TOOLKIT_DIR$\inc\xencoding_limits.h</file>
2317
+ <file>$TOOLKIT_DIR$\lib\dl4tptinl8n.r79</file>
2318
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.c</file>
2319
+ <file>$PROJ_DIR$\..\test\system\src\Types.h</file>
2320
+ <file>$PROJ_DIR$\..\test\system\src\TemperatureFilter.c</file>
2321
+ <file>$PROJ_DIR$\..\test\system\src\TimerConductor.c</file>
2322
+ <file>$PROJ_DIR$\..\test\system\src\TimerConfigurator.c</file>
2323
+ <file>$PROJ_DIR$\..\test\system\src\TimerHardware.c</file>
2324
+ <file>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.c</file>
2325
+ <file>$PROJ_DIR$\..\test\system\src\UsartConductor.c</file>
2326
+ <file>$PROJ_DIR$\..\test\system\src\UsartConfigurator.c</file>
2327
+ <file>$PROJ_DIR$\..\test\system\src\UsartHardware.h</file>
2328
+ <file>$PROJ_DIR$\..\test\system\src\TimerConductor.h</file>
2329
+ <file>$PROJ_DIR$\..\test\system\src\AdcModel.h</file>
2330
+ <file>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.h</file>
2331
+ <file>$PROJ_DIR$\..\test\system\src\UsartConductor.h</file>
2332
+ <file>$PROJ_DIR$\..\test\system\src\UsartModel.h</file>
2333
+ <file>$PROJ_DIR$\Simulate\Obj\AdcConductor.r79</file>
2334
+ <file>$PROJ_DIR$\Simulate\Obj\Cstartup_SAM7.pbi</file>
2335
+ <file>$PROJ_DIR$\Simulate\Obj\UsartHardware.r79</file>
2336
+ <file>$TOOLKIT_DIR$\inc\yvals.h</file>
2337
+ <file>$PROJ_DIR$\incIAR\AT91SAM7X256_inc.h</file>
2338
+ <file>$PROJ_DIR$\Simulate\List\TimerModel.lst</file>
2339
+ <file>$PROJ_DIR$\Simulate\Obj\Executor.r79</file>
2340
+ <file>$PROJ_DIR$\Simulate\Obj\TimerHardware.pbi</file>
2341
+ <file>$PROJ_DIR$\Simulate\Obj\UsartModel.pbi</file>
2342
+ <file>$PROJ_DIR$\Simulate\Obj\IntrinsicsWrapper.r79</file>
2343
+ <file>$PROJ_DIR$\Simulate\Obj\TimerConductor.pbi</file>
2344
+ <file>$PROJ_DIR$\Simulate\List\UsartConductor.lst</file>
2345
+ <file>$PROJ_DIR$\Simulate\Obj\Main.pbi</file>
2346
+ <file>$TOOLKIT_DIR$\inc\DLib_Threads.h</file>
2347
+ <file>$PROJ_DIR$\Simulate\Obj\AdcHardwareConfigurator.pbi</file>
2348
+ <file>$PROJ_DIR$\Simulate\Obj\TimerConfigurator.pbi</file>
2349
+ <file>$PROJ_DIR$\Simulate\Exe\cmock_demo.sim</file>
2350
+ <file>$PROJ_DIR$\Simulate\Obj\UsartTransmitBufferStatus.pbi</file>
2351
+ <file>$PROJ_DIR$\Simulate\Obj\AdcHardware.r79</file>
2352
+ <file>$PROJ_DIR$\Simulate\Obj\Main.r79</file>
2353
+ <file>$PROJ_DIR$\Simulate\Obj\AdcTemperatureSensor.pbi</file>
2354
+ <file>$PROJ_DIR$\Simulate\Obj\UsartPutChar.r79</file>
2355
+ <file>$PROJ_DIR$\Simulate\Obj\AdcHardwareConfigurator.r79</file>
2356
+ <file>$PROJ_DIR$\Simulate\Obj\UsartConductor.r79</file>
2357
+ <file>$PROJ_DIR$\Simulate\Obj\TimerHardware.r79</file>
2358
+ <file>$PROJ_DIR$\Simulate\Obj\TemperatureFilter.r79</file>
2359
+ <file>$PROJ_DIR$\Simulate\Obj\TemperatureCalculator.pbi</file>
2360
+ <file>$PROJ_DIR$\Simulate\Obj\TimerInterruptConfigurator.r79</file>
2361
+ <file>$PROJ_DIR$\Simulate\Obj\UsartTransmitBufferStatus.r79</file>
2362
+ <file>$PROJ_DIR$\Simulate\Obj\TimerConductor.r79</file>
2363
+ <file>$PROJ_DIR$\Simulate\Obj\Executor.pbi</file>
2364
+ <file>$PROJ_DIR$\Simulate\Obj\UsartConductor.pbi</file>
2365
+ <file>$PROJ_DIR$\Simulate\Obj\TimerModel.pbi</file>
2366
+ <file>$PROJ_DIR$\Simulate\Obj\AdcModel.pbi</file>
2367
+ <file>$PROJ_DIR$\Simulate\List\TaskScheduler.lst</file>
2368
+ <file>$PROJ_DIR$\Simulate\Obj\TimerModel.r79</file>
2369
+ <file>$PROJ_DIR$\Simulate\Obj\TemperatureFilter.pbi</file>
2370
+ <file>$PROJ_DIR$\Simulate\Obj\UsartBaudRateRegisterCalculator.pbi</file>
2371
+ <file>$PROJ_DIR$\Simulate\Obj\UsartHardware.pbi</file>
2372
+ <file>$PROJ_DIR$\Simulate\Obj\TaskScheduler.pbi</file>
2373
+ <file>$PROJ_DIR$\Simulate\Obj\AdcConductor.pbi</file>
2374
+ <file>$PROJ_DIR$\Simulate\Obj\TimerConfigurator.r79</file>
2375
+ <file>$PROJ_DIR$\Simulate\Obj\Cstartup.r79</file>
2376
+ <file>$PROJ_DIR$\Simulate\Obj\TimerInterruptHandler.pbi</file>
2377
+ <file>$PROJ_DIR$\Simulate\Obj\AdcModel.r79</file>
2378
+ <file>$PROJ_DIR$\Simulate\Obj\IntrinsicsWrapper.pbi</file>
2379
+ <file>$PROJ_DIR$\Simulate\List\cmock_demo.map</file>
2380
+ <file>$PROJ_DIR$\Simulate\Obj\TimerInterruptConfigurator.pbi</file>
2381
+ <file>$PROJ_DIR$\Simulate\Exe\cmock_demo.d79</file>
2382
+ <file>$PROJ_DIR$\Simulate\Obj\TaskScheduler.r79</file>
2383
+ <file>$PROJ_DIR$\Simulate\Obj\Model.r79</file>
2384
+ <file>$PROJ_DIR$\Simulate\Obj\UsartConfigurator.pbi</file>
2385
+ <file>$PROJ_DIR$\Simulate\Obj\UsartModel.r79</file>
2386
+ <file>$PROJ_DIR$\Simulate\Obj\Cstartup_SAM7.r79</file>
2387
+ <file>$PROJ_DIR$\Simulate\Obj\TemperatureCalculator.r79</file>
2388
+ <file>$PROJ_DIR$\Simulate\Obj\UsartPutChar.pbi</file>
2389
+ <file>$PROJ_DIR$\Simulate\Obj\UsartConfigurator.r79</file>
2390
+ <file>$PROJ_DIR$\Simulate\Obj\AdcHardware.pbi</file>
2391
+ <file>$PROJ_DIR$\Simulate\Obj\AdcTemperatureSensor.r79</file>
2392
+ <file>$PROJ_DIR$\Simulate\Obj\Model.pbi</file>
2393
+ <file>$PROJ_DIR$\Simulate\Obj\UsartBaudRateRegisterCalculator.r79</file>
2394
+ <file>$PROJ_DIR$\Simulate\List\UsartBaudRateRegisterCalculator.lst</file>
2395
+ <file>$PROJ_DIR$\Simulate\List\UsartTransmitBufferStatus.lst</file>
2396
+ <file>$PROJ_DIR$\Simulate\List\AdcHardware.lst</file>
2397
+ <file>$PROJ_DIR$\Simulate\List\TimerInterruptConfigurator.lst</file>
2398
+ <file>$PROJ_DIR$\Simulate\List\Model.lst</file>
2399
+ <file>$PROJ_DIR$\Simulate\Obj\TimerInterruptHandler.r79</file>
2400
+ <file>$PROJ_DIR$\Simulate\List\UsartPutChar.lst</file>
2401
+ <file>$PROJ_DIR$\Simulate\List\UsartHardware.lst</file>
2402
+ <file>$PROJ_DIR$\Simulate\List\Executor.lst</file>
2403
+ <file>$PROJ_DIR$\Simulate\List\TimerConfigurator.lst</file>
2404
+ <file>$PROJ_DIR$\Simulate\List\AdcTemperatureSensor.lst</file>
2405
+ <file>$PROJ_DIR$\Simulate\List\Cstartup_SAM7.lst</file>
2406
+ <file>$PROJ_DIR$\Simulate\List\AdcHardwareConfigurator.lst</file>
2407
+ <file>$PROJ_DIR$\Simulate\List\AdcModel.lst</file>
2408
+ <file>$PROJ_DIR$\Simulate\List\TemperatureFilter.lst</file>
2409
+ <file>$PROJ_DIR$\Simulate\List\AdcConductor.lst</file>
2410
+ <file>$PROJ_DIR$\Simulate\List\UsartConfigurator.lst</file>
2411
+ <file>$PROJ_DIR$\Simulate\List\IntrinsicsWrapper.lst</file>
2412
+ <file>$PROJ_DIR$\Simulate\List\TimerHardware.lst</file>
2413
+ <file>$PROJ_DIR$\Simulate\List\TemperatureCalculator.lst</file>
2414
+ <file>$PROJ_DIR$\Simulate\List\TimerInterruptHandler.lst</file>
2415
+ <file>$PROJ_DIR$\Simulate\List\UsartModel.lst</file>
2416
+ <file>$PROJ_DIR$\Simulate\List\Main.lst</file>
2417
+ <file>$PROJ_DIR$\Simulate\List\TimerConductor.lst</file>
2418
+ <file>$PROJ_DIR$\Resource\at91SAM7X256_FLASH.xcl</file>
2419
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</file>
2420
+ <file>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</file>
2421
+ <file>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</file>
2422
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</file>
2423
+ <file>$PROJ_DIR$\..\..\examples\src\TimerModel.c</file>
2424
+ <file>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</file>
2425
+ <file>$PROJ_DIR$\..\..\examples\src\UsartModel.c</file>
2426
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</file>
2427
+ <file>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</file>
2428
+ <file>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</file>
2429
+ <file>$PROJ_DIR$\Cstartup.s79</file>
2430
+ <file>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</file>
2431
+ <file>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</file>
2432
+ <file>$PROJ_DIR$\Cstartup_SAM7.c</file>
2433
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.c</file>
2434
+ <file>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</file>
2435
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.c</file>
2436
+ <file>$PROJ_DIR$\..\..\examples\src\Main.c</file>
2437
+ <file>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</file>
2438
+ <file>$PROJ_DIR$\..\..\examples\src\Model.c</file>
2439
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</file>
2440
+ <file>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</file>
2441
+ <file>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</file>
2442
+ <file>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</file>
2443
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</file>
2444
+ <file>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</file>
2445
+ <file>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</file>
2446
+ <file>$PROJ_DIR$\..\..\examples\src\Executor.h</file>
2447
+ <file>$PROJ_DIR$\..\..\examples\src\AdcModel.h</file>
2448
+ <file>$PROJ_DIR$\..\..\examples\src\ModelConfig.h</file>
2449
+ <file>$PROJ_DIR$\srcIAR\Cstartup.s79</file>
2450
+ <file>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</file>
2451
+ </outputs>
2452
+ <file>
2453
+ <name>[ROOT_NODE]</name>
2454
+ <outputs>
2455
+ <tool>
2456
+ <name>XLINK</name>
2457
+ <file> 133 131 101</file>
2458
+ </tool>
2459
+ </outputs>
2460
+ </file>
2461
+ <file>
2462
+ <name>$PROJ_DIR$\Simulate\Obj\cmock_demo.pbd</name>
2463
+ <inputs>
2464
+ <tool>
2465
+ <name>BILINK</name>
2466
+ <file> 125 142 99 118 105 86 115 130 97 144 124 111 121 95 100 92 132 128 117 122 116 136 123 93 140 102</file>
2467
+ </tool>
2468
+ </inputs>
2469
+ </file>
2470
+ <file>
2471
+ <name>$PROJ_DIR$\..\test\system\src\Main.c</name>
2472
+ <outputs>
2473
+ <tool>
2474
+ <name>ICCARM</name>
2475
+ <file> 104</file>
2476
+ </tool>
2477
+ <tool>
2478
+ <name>BICOMP</name>
2479
+ <file> 97</file>
2480
+ </tool>
2481
+ </outputs>
2482
+ <inputs>
2483
+ <tool>
2484
+ <name>ICCARM</name>
2485
+ <file> 71 40 42 59 36 0 60 83 79 38 33 84 41 37 80 62 39 58 45 44 57 66 82 34 81</file>
2486
+ </tool>
2487
+ <tool>
2488
+ <name>BICOMP</name>
2489
+ <file> 71 40 42 59 36 0 60 83 79 38 33 84 41 37 80 62 39 58 45 44 57 66 82 34 81</file>
2490
+ </tool>
2491
+ </inputs>
2492
+ </file>
2493
+ <file>
2494
+ <name>$PROJ_DIR$\..\test\system\src\Model.c</name>
2495
+ <outputs>
2496
+ <tool>
2497
+ <name>ICCARM</name>
2498
+ <file> 135</file>
2499
+ </tool>
2500
+ <tool>
2501
+ <name>BICOMP</name>
2502
+ <file> 144</file>
2503
+ </tool>
2504
+ </outputs>
2505
+ <inputs>
2506
+ <tool>
2507
+ <name>ICCARM</name>
2508
+ <file> 59 71 40 36 60</file>
2509
+ </tool>
2510
+ <tool>
2511
+ <name>BICOMP</name>
2512
+ <file> 59 71 40 36 60</file>
2513
+ </tool>
2514
+ </inputs>
2515
+ </file>
2516
+ <file>
2517
+ <name>$PROJ_DIR$\..\test\system\src\AdcHardwareConfigurator.c</name>
2518
+ <outputs>
2519
+ <tool>
2520
+ <name>ICCARM</name>
2521
+ <file> 107</file>
2522
+ </tool>
2523
+ <tool>
2524
+ <name>BICOMP</name>
2525
+ <file> 99</file>
2526
+ </tool>
2527
+ </outputs>
2528
+ <inputs>
2529
+ <tool>
2530
+ <name>ICCARM</name>
2531
+ <file> 71 40 82 43</file>
2532
+ </tool>
2533
+ <tool>
2534
+ <name>BICOMP</name>
2535
+ <file> 71 40 82 43</file>
2536
+ </tool>
2537
+ </inputs>
2538
+ </file>
2539
+ <file>
2540
+ <name>$PROJ_DIR$\..\test\system\src\TimerModel.c</name>
2541
+ <outputs>
2542
+ <tool>
2543
+ <name>ICCARM</name>
2544
+ <file> 120</file>
2545
+ </tool>
2546
+ <tool>
2547
+ <name>BICOMP</name>
2548
+ <file> 117</file>
2549
+ </tool>
2550
+ </outputs>
2551
+ <inputs>
2552
+ <tool>
2553
+ <name>ICCARM</name>
2554
+ <file> 71 40 44 36</file>
2555
+ </tool>
2556
+ <tool>
2557
+ <name>BICOMP</name>
2558
+ <file> 71 40 44 36</file>
2559
+ </tool>
2560
+ </inputs>
2561
+ </file>
2562
+ <file>
2563
+ <name>$PROJ_DIR$\..\test\system\src\UsartModel.c</name>
2564
+ <outputs>
2565
+ <tool>
2566
+ <name>ICCARM</name>
2567
+ <file> 137</file>
2568
+ </tool>
2569
+ <tool>
2570
+ <name>BICOMP</name>
2571
+ <file> 93</file>
2572
+ </tool>
2573
+ </outputs>
2574
+ <inputs>
2575
+ <tool>
2576
+ <name>ICCARM</name>
2577
+ <file> 71 40 84 43 41 60 29 88 3 32 27 68 98 31 28 30</file>
2578
+ </tool>
2579
+ <tool>
2580
+ <name>BICOMP</name>
2581
+ <file> 71 40 84 43 41 60 29 88 3 27 68 98 31 28 30</file>
2582
+ </tool>
2583
+ </inputs>
2584
+ </file>
2585
+ <file>
2586
+ <name>$PROJ_DIR$\..\test\system\src\UsartHardware.c</name>
2587
+ <outputs>
2588
+ <tool>
2589
+ <name>ICCARM</name>
2590
+ <file> 87</file>
2591
+ </tool>
2592
+ <tool>
2593
+ <name>BICOMP</name>
2594
+ <file> 123</file>
2595
+ </tool>
2596
+ </outputs>
2597
+ <inputs>
2598
+ <tool>
2599
+ <name>ICCARM</name>
2600
+ <file> 71 40 79 38 33</file>
2601
+ </tool>
2602
+ <tool>
2603
+ <name>BICOMP</name>
2604
+ <file> 71 40 79 38 33</file>
2605
+ </tool>
2606
+ </inputs>
2607
+ </file>
2608
+ <file>
2609
+ <name>$PROJ_DIR$\..\test\system\src\UsartTransmitBufferStatus.c</name>
2610
+ <outputs>
2611
+ <tool>
2612
+ <name>ICCARM</name>
2613
+ <file> 113</file>
2614
+ </tool>
2615
+ <tool>
2616
+ <name>BICOMP</name>
2617
+ <file> 102</file>
2618
+ </tool>
2619
+ </outputs>
2620
+ <inputs>
2621
+ <tool>
2622
+ <name>ICCARM</name>
2623
+ <file> 71 40 37</file>
2624
+ </tool>
2625
+ <tool>
2626
+ <name>BICOMP</name>
2627
+ <file> 71 40 37</file>
2628
+ </tool>
2629
+ </inputs>
2630
+ </file>
2631
+ <file>
2632
+ <name>$PROJ_DIR$\..\test\system\src\UsartPutChar.c</name>
2633
+ <outputs>
2634
+ <tool>
2635
+ <name>ICCARM</name>
2636
+ <file> 106</file>
2637
+ </tool>
2638
+ <tool>
2639
+ <name>BICOMP</name>
2640
+ <file> 140</file>
2641
+ </tool>
2642
+ </outputs>
2643
+ <inputs>
2644
+ <tool>
2645
+ <name>ICCARM</name>
2646
+ <file> 71 40 33 37 29 88 3 32 27 68 98 31</file>
2647
+ </tool>
2648
+ <tool>
2649
+ <name>BICOMP</name>
2650
+ <file> 71 40 33 37 29 88 3 27 68 98 31</file>
2651
+ </tool>
2652
+ </inputs>
2653
+ </file>
2654
+ <file>
2655
+ <name>$PROJ_DIR$\..\test\system\src\TimerInterruptConfigurator.c</name>
2656
+ <outputs>
2657
+ <tool>
2658
+ <name>ICCARM</name>
2659
+ <file> 112</file>
2660
+ </tool>
2661
+ <tool>
2662
+ <name>BICOMP</name>
2663
+ <file> 132</file>
2664
+ </tool>
2665
+ </outputs>
2666
+ <inputs>
2667
+ <tool>
2668
+ <name>ICCARM</name>
2669
+ <file> 71 40 58 45</file>
2670
+ </tool>
2671
+ <tool>
2672
+ <name>BICOMP</name>
2673
+ <file> 71 40 58 45</file>
2674
+ </tool>
2675
+ </inputs>
2676
+ </file>
2677
+ <file>
2678
+ <name>$PROJ_DIR$\..\test\system\src\UsartBaudRateRegisterCalculator.c</name>
2679
+ <outputs>
2680
+ <tool>
2681
+ <name>ICCARM</name>
2682
+ <file> 145</file>
2683
+ </tool>
2684
+ <tool>
2685
+ <name>BICOMP</name>
2686
+ <file> 122</file>
2687
+ </tool>
2688
+ </outputs>
2689
+ <inputs>
2690
+ <tool>
2691
+ <name>ICCARM</name>
2692
+ <file> 71 40 41</file>
2693
+ </tool>
2694
+ <tool>
2695
+ <name>BICOMP</name>
2696
+ <file> 71 40 41</file>
2697
+ </tool>
2698
+ </inputs>
2699
+ </file>
2700
+ <file>
2701
+ <name>$PROJ_DIR$\..\test\system\src\TaskScheduler.c</name>
2702
+ <outputs>
2703
+ <tool>
2704
+ <name>ICCARM</name>
2705
+ <file> 134</file>
2706
+ </tool>
2707
+ <tool>
2708
+ <name>BICOMP</name>
2709
+ <file> 124</file>
2710
+ </tool>
2711
+ </outputs>
2712
+ <inputs>
2713
+ <tool>
2714
+ <name>ICCARM</name>
2715
+ <file> 71 40 36</file>
2716
+ </tool>
2717
+ <tool>
2718
+ <name>BICOMP</name>
2719
+ <file> 71 40 36</file>
2720
+ </tool>
2721
+ </inputs>
2722
+ </file>
2723
+ <file>
2724
+ <name>$PROJ_DIR$\..\test\system\src\AdcModel.c</name>
2725
+ <outputs>
2726
+ <tool>
2727
+ <name>ICCARM</name>
2728
+ <file> 129</file>
2729
+ </tool>
2730
+ <tool>
2731
+ <name>BICOMP</name>
2732
+ <file> 118</file>
2733
+ </tool>
2734
+ </outputs>
2735
+ <inputs>
2736
+ <tool>
2737
+ <name>ICCARM</name>
2738
+ <file> 71 40 81 36 0 60</file>
2739
+ </tool>
2740
+ <tool>
2741
+ <name>BICOMP</name>
2742
+ <file> 71 40 81 36 0 60</file>
2743
+ </tool>
2744
+ </inputs>
2745
+ </file>
2746
+ <file>
2747
+ <name>$PROJ_DIR$\..\test\system\src\AdcTemperatureSensor.c</name>
2748
+ <outputs>
2749
+ <tool>
2750
+ <name>ICCARM</name>
2751
+ <file> 143</file>
2752
+ </tool>
2753
+ <tool>
2754
+ <name>BICOMP</name>
2755
+ <file> 105</file>
2756
+ </tool>
2757
+ </outputs>
2758
+ <inputs>
2759
+ <tool>
2760
+ <name>ICCARM</name>
2761
+ <file> 71 40 34</file>
2762
+ </tool>
2763
+ <tool>
2764
+ <name>BICOMP</name>
2765
+ <file> 71 40 34</file>
2766
+ </tool>
2767
+ </inputs>
2768
+ </file>
2769
+ <file>
2770
+ <name>$PROJ_DIR$\..\test\system\src\AdcConductor.c</name>
2771
+ <outputs>
2772
+ <tool>
2773
+ <name>ICCARM</name>
2774
+ <file> 85</file>
2775
+ </tool>
2776
+ <tool>
2777
+ <name>BICOMP</name>
2778
+ <file> 125</file>
2779
+ </tool>
2780
+ </outputs>
2781
+ <inputs>
2782
+ <tool>
2783
+ <name>ICCARM</name>
2784
+ <file> 71 40 57 81 66</file>
2785
+ </tool>
2786
+ <tool>
2787
+ <name>BICOMP</name>
2788
+ <file> 71 40 57 81 66</file>
2789
+ </tool>
2790
+ </inputs>
2791
+ </file>
2792
+ <file>
2793
+ <name>$PROJ_DIR$\..\test\system\src\AdcHardware.c</name>
2794
+ <outputs>
2795
+ <tool>
2796
+ <name>ICCARM</name>
2797
+ <file> 103</file>
2798
+ </tool>
2799
+ <tool>
2800
+ <name>BICOMP</name>
2801
+ <file> 142</file>
2802
+ </tool>
2803
+ </outputs>
2804
+ <inputs>
2805
+ <tool>
2806
+ <name>ICCARM</name>
2807
+ <file> 71 40 66 82 34</file>
2808
+ </tool>
2809
+ <tool>
2810
+ <name>BICOMP</name>
2811
+ <file> 71 40 66 82 34</file>
2812
+ </tool>
2813
+ </inputs>
2814
+ </file>
2815
+ <file>
2816
+ <name>$PROJ_DIR$\..\test\system\src\Executor.c</name>
2817
+ <outputs>
2818
+ <tool>
2819
+ <name>ICCARM</name>
2820
+ <file> 91</file>
2821
+ </tool>
2822
+ <tool>
2823
+ <name>BICOMP</name>
2824
+ <file> 115</file>
2825
+ </tool>
2826
+ </outputs>
2827
+ <inputs>
2828
+ <tool>
2829
+ <name>ICCARM</name>
2830
+ <file> 71 40 42 59 83 80 57</file>
2831
+ </tool>
2832
+ <tool>
2833
+ <name>BICOMP</name>
2834
+ <file> 71 40 42 59 83 80 57</file>
2835
+ </tool>
2836
+ </inputs>
2837
+ </file>
2838
+ <file>
2839
+ <name>$PROJ_DIR$\..\test\system\src\TemperatureCalculator.c</name>
2840
+ <outputs>
2841
+ <tool>
2842
+ <name>ICCARM</name>
2843
+ <file> 139</file>
2844
+ </tool>
2845
+ <tool>
2846
+ <name>BICOMP</name>
2847
+ <file> 111</file>
2848
+ </tool>
2849
+ </outputs>
2850
+ <inputs>
2851
+ <tool>
2852
+ <name>ICCARM</name>
2853
+ <file> 71 40 0 28 30 88 3 32 27 68 98</file>
2854
+ </tool>
2855
+ <tool>
2856
+ <name>BICOMP</name>
2857
+ <file> 71 40 0 28 30 88 3 27 68 98</file>
2858
+ </tool>
2859
+ </inputs>
2860
+ </file>
2861
+ <file>
2862
+ <name>$PROJ_DIR$\..\test\system\src\TemperatureFilter.c</name>
2863
+ <outputs>
2864
+ <tool>
2865
+ <name>ICCARM</name>
2866
+ <file> 110</file>
2867
+ </tool>
2868
+ <tool>
2869
+ <name>BICOMP</name>
2870
+ <file> 121</file>
2871
+ </tool>
2872
+ </outputs>
2873
+ <inputs>
2874
+ <tool>
2875
+ <name>ICCARM</name>
2876
+ <file> 71 40 60 28 30 88 3 32 27 68 98</file>
2877
+ </tool>
2878
+ <tool>
2879
+ <name>BICOMP</name>
2880
+ <file> 71 40 60 28 30 88 3 27 68 98</file>
2881
+ </tool>
2882
+ </inputs>
2883
+ </file>
2884
+ <file>
2885
+ <name>$PROJ_DIR$\..\test\system\src\TimerConductor.c</name>
2886
+ <outputs>
2887
+ <tool>
2888
+ <name>ICCARM</name>
2889
+ <file> 114</file>
2890
+ </tool>
2891
+ <tool>
2892
+ <name>BICOMP</name>
2893
+ <file> 95</file>
2894
+ </tool>
2895
+ </outputs>
2896
+ <inputs>
2897
+ <tool>
2898
+ <name>ICCARM</name>
2899
+ <file> 71 40 80 44 62 45</file>
2900
+ </tool>
2901
+ <tool>
2902
+ <name>BICOMP</name>
2903
+ <file> 71 40 80 44 62 45</file>
2904
+ </tool>
2905
+ </inputs>
2906
+ </file>
2907
+ <file>
2908
+ <name>$PROJ_DIR$\..\test\system\src\TimerConfigurator.c</name>
2909
+ <outputs>
2910
+ <tool>
2911
+ <name>ICCARM</name>
2912
+ <file> 126</file>
2913
+ </tool>
2914
+ <tool>
2915
+ <name>BICOMP</name>
2916
+ <file> 100</file>
2917
+ </tool>
2918
+ </outputs>
2919
+ <inputs>
2920
+ <tool>
2921
+ <name>ICCARM</name>
2922
+ <file> 71 40 39 58</file>
2923
+ </tool>
2924
+ <tool>
2925
+ <name>BICOMP</name>
2926
+ <file> 71 40 39 58</file>
2927
+ </tool>
2928
+ </inputs>
2929
+ </file>
2930
+ <file>
2931
+ <name>$PROJ_DIR$\..\test\system\src\TimerHardware.c</name>
2932
+ <outputs>
2933
+ <tool>
2934
+ <name>ICCARM</name>
2935
+ <file> 109</file>
2936
+ </tool>
2937
+ <tool>
2938
+ <name>BICOMP</name>
2939
+ <file> 92</file>
2940
+ </tool>
2941
+ </outputs>
2942
+ <inputs>
2943
+ <tool>
2944
+ <name>ICCARM</name>
2945
+ <file> 71 40 62 39</file>
2946
+ </tool>
2947
+ <tool>
2948
+ <name>BICOMP</name>
2949
+ <file> 71 40 62 39</file>
2950
+ </tool>
2951
+ </inputs>
2952
+ </file>
2953
+ <file>
2954
+ <name>$PROJ_DIR$\..\test\system\src\TimerInterruptHandler.c</name>
2955
+ <outputs>
2956
+ <tool>
2957
+ <name>ICCARM</name>
2958
+ <file> 151</file>
2959
+ </tool>
2960
+ <tool>
2961
+ <name>BICOMP</name>
2962
+ <file> 128</file>
2963
+ </tool>
2964
+ </outputs>
2965
+ <inputs>
2966
+ <tool>
2967
+ <name>ICCARM</name>
2968
+ <file> 71 40 45 58</file>
2969
+ </tool>
2970
+ <tool>
2971
+ <name>BICOMP</name>
2972
+ <file> 71 40 45 58</file>
2973
+ </tool>
2974
+ </inputs>
2975
+ </file>
2976
+ <file>
2977
+ <name>$PROJ_DIR$\..\test\system\src\UsartConductor.c</name>
2978
+ <outputs>
2979
+ <tool>
2980
+ <name>ICCARM</name>
2981
+ <file> 108</file>
2982
+ </tool>
2983
+ <tool>
2984
+ <name>BICOMP</name>
2985
+ <file> 116</file>
2986
+ </tool>
2987
+ </outputs>
2988
+ <inputs>
2989
+ <tool>
2990
+ <name>ICCARM</name>
2991
+ <file> 71 40 83 79 84 36</file>
2992
+ </tool>
2993
+ <tool>
2994
+ <name>BICOMP</name>
2995
+ <file> 71 40 83 79 84 36</file>
2996
+ </tool>
2997
+ </inputs>
2998
+ </file>
2999
+ <file>
3000
+ <name>$PROJ_DIR$\..\test\system\src\UsartConfigurator.c</name>
3001
+ <outputs>
3002
+ <tool>
3003
+ <name>ICCARM</name>
3004
+ <file> 141</file>
3005
+ </tool>
3006
+ <tool>
3007
+ <name>BICOMP</name>
3008
+ <file> 136</file>
3009
+ </tool>
3010
+ </outputs>
3011
+ <inputs>
3012
+ <tool>
3013
+ <name>ICCARM</name>
3014
+ <file> 71 40 38</file>
3015
+ </tool>
3016
+ <tool>
3017
+ <name>BICOMP</name>
3018
+ <file> 71 40 38</file>
3019
+ </tool>
3020
+ </inputs>
3021
+ </file>
3022
+ <file>
3023
+ <name>$PROJ_DIR$\Simulate\Exe\cmock_demo.d79</name>
3024
+ <outputs>
3025
+ <tool>
3026
+ <name>XLINK</name>
3027
+ <file> 131 101</file>
3028
+ </tool>
3029
+ </outputs>
3030
+ <inputs>
3031
+ <tool>
3032
+ <name>XLINK</name>
3033
+ <file> 170 85 103 107 129 143 127 138 91 94 104 135 134 139 110 114 126 109 112 151 120 145 108 141 87 137 106 113 69</file>
3034
+ </tool>
3035
+ </inputs>
3036
+ </file>
3037
+ <file>
3038
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConductor.c</name>
3039
+ <outputs>
3040
+ <tool>
3041
+ <name>ICCARM</name>
3042
+ <file> 114 169</file>
3043
+ </tool>
3044
+ <tool>
3045
+ <name>BICOMP</name>
3046
+ <file> 95</file>
3047
+ </tool>
3048
+ </outputs>
3049
+ <inputs>
3050
+ <tool>
3051
+ <name>ICCARM</name>
3052
+ <file> 1 4 15 23 25 22</file>
3053
+ </tool>
3054
+ <tool>
3055
+ <name>BICOMP</name>
3056
+ <file> 1 4 15 23 25 22</file>
3057
+ </tool>
3058
+ </inputs>
3059
+ </file>
3060
+ <file>
3061
+ <name>$PROJ_DIR$\..\..\examples\src\TimerConfigurator.c</name>
3062
+ <outputs>
3063
+ <tool>
3064
+ <name>ICCARM</name>
3065
+ <file> 126 155</file>
3066
+ </tool>
3067
+ <tool>
3068
+ <name>BICOMP</name>
3069
+ <file> 100</file>
3070
+ </tool>
3071
+ </outputs>
3072
+ <inputs>
3073
+ <tool>
3074
+ <name>ICCARM</name>
3075
+ <file> 1 4 24 21</file>
3076
+ </tool>
3077
+ <tool>
3078
+ <name>BICOMP</name>
3079
+ <file> 1 4 24 21</file>
3080
+ </tool>
3081
+ </inputs>
3082
+ </file>
3083
+ <file>
3084
+ <name>$PROJ_DIR$\..\..\examples\src\TimerHardware.c</name>
3085
+ <outputs>
3086
+ <tool>
3087
+ <name>ICCARM</name>
3088
+ <file> 109 164</file>
3089
+ </tool>
3090
+ <tool>
3091
+ <name>BICOMP</name>
3092
+ <file> 92</file>
3093
+ </tool>
3094
+ </outputs>
3095
+ <inputs>
3096
+ <tool>
3097
+ <name>ICCARM</name>
3098
+ <file> 1 4 25 24</file>
3099
+ </tool>
3100
+ <tool>
3101
+ <name>BICOMP</name>
3102
+ <file> 1 4 25 24</file>
3103
+ </tool>
3104
+ </inputs>
3105
+ </file>
3106
+ <file>
3107
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptConfigurator.c</name>
3108
+ <outputs>
3109
+ <tool>
3110
+ <name>ICCARM</name>
3111
+ <file> 112 149</file>
3112
+ </tool>
3113
+ <tool>
3114
+ <name>BICOMP</name>
3115
+ <file> 132</file>
3116
+ </tool>
3117
+ </outputs>
3118
+ <inputs>
3119
+ <tool>
3120
+ <name>ICCARM</name>
3121
+ <file> 1 4 21 22</file>
3122
+ </tool>
3123
+ <tool>
3124
+ <name>BICOMP</name>
3125
+ <file> 1 4 21 22</file>
3126
+ </tool>
3127
+ </inputs>
3128
+ </file>
3129
+ <file>
3130
+ <name>$PROJ_DIR$\..\..\examples\src\TimerModel.c</name>
3131
+ <outputs>
3132
+ <tool>
3133
+ <name>ICCARM</name>
3134
+ <file> 120 90</file>
3135
+ </tool>
3136
+ <tool>
3137
+ <name>BICOMP</name>
3138
+ <file> 117</file>
3139
+ </tool>
3140
+ </outputs>
3141
+ <inputs>
3142
+ <tool>
3143
+ <name>ICCARM</name>
3144
+ <file> 1 4 23 6</file>
3145
+ </tool>
3146
+ <tool>
3147
+ <name>BICOMP</name>
3148
+ <file> 1 4 23 6</file>
3149
+ </tool>
3150
+ </inputs>
3151
+ </file>
3152
+ <file>
3153
+ <name>$PROJ_DIR$\..\..\examples\src\UsartBaudRateRegisterCalculator.c</name>
3154
+ <outputs>
3155
+ <tool>
3156
+ <name>ICCARM</name>
3157
+ <file> 145 146</file>
3158
+ </tool>
3159
+ <tool>
3160
+ <name>BICOMP</name>
3161
+ <file> 122</file>
3162
+ </tool>
3163
+ </outputs>
3164
+ <inputs>
3165
+ <tool>
3166
+ <name>ICCARM</name>
3167
+ <file> 1 4 26</file>
3168
+ </tool>
3169
+ <tool>
3170
+ <name>BICOMP</name>
3171
+ <file> 1 4 26</file>
3172
+ </tool>
3173
+ </inputs>
3174
+ </file>
3175
+ <file>
3176
+ <name>$PROJ_DIR$\..\..\examples\src\UsartModel.c</name>
3177
+ <outputs>
3178
+ <tool>
3179
+ <name>ICCARM</name>
3180
+ <file> 137 167</file>
3181
+ </tool>
3182
+ <tool>
3183
+ <name>BICOMP</name>
3184
+ <file> 93</file>
3185
+ </tool>
3186
+ </outputs>
3187
+ <inputs>
3188
+ <tool>
3189
+ <name>ICCARM</name>
3190
+ <file> 1 4 17 200 26 14 29 88 3 32 27 68 98 31 28 30</file>
3191
+ </tool>
3192
+ <tool>
3193
+ <name>BICOMP</name>
3194
+ <file> 1 4 17 200 26 14 29 88 3 27 68 98 31 28 30</file>
3195
+ </tool>
3196
+ </inputs>
3197
+ </file>
3198
+ <file>
3199
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConductor.c</name>
3200
+ <outputs>
3201
+ <tool>
3202
+ <name>ICCARM</name>
3203
+ <file> 108 96</file>
3204
+ </tool>
3205
+ <tool>
3206
+ <name>BICOMP</name>
3207
+ <file> 116</file>
3208
+ </tool>
3209
+ </outputs>
3210
+ <inputs>
3211
+ <tool>
3212
+ <name>ICCARM</name>
3213
+ <file> 1 4 7 19 17 6</file>
3214
+ </tool>
3215
+ <tool>
3216
+ <name>BICOMP</name>
3217
+ <file> 1 4 7 19 17 6</file>
3218
+ </tool>
3219
+ </inputs>
3220
+ </file>
3221
+ <file>
3222
+ <name>$PROJ_DIR$\..\..\examples\src\UsartConfigurator.c</name>
3223
+ <outputs>
3224
+ <tool>
3225
+ <name>ICCARM</name>
3226
+ <file> 141 162</file>
3227
+ </tool>
3228
+ <tool>
3229
+ <name>BICOMP</name>
3230
+ <file> 136</file>
3231
+ </tool>
3232
+ </outputs>
3233
+ <inputs>
3234
+ <tool>
3235
+ <name>ICCARM</name>
3236
+ <file> 1 4 12</file>
3237
+ </tool>
3238
+ <tool>
3239
+ <name>BICOMP</name>
3240
+ <file> 1 4 12</file>
3241
+ </tool>
3242
+ </inputs>
3243
+ </file>
3244
+ <file>
3245
+ <name>$PROJ_DIR$\..\..\examples\src\UsartHardware.c</name>
3246
+ <outputs>
3247
+ <tool>
3248
+ <name>ICCARM</name>
3249
+ <file> 87 153</file>
3250
+ </tool>
3251
+ <tool>
3252
+ <name>BICOMP</name>
3253
+ <file> 123</file>
3254
+ </tool>
3255
+ </outputs>
3256
+ <inputs>
3257
+ <tool>
3258
+ <name>ICCARM</name>
3259
+ <file> 1 4 19 12 16</file>
3260
+ </tool>
3261
+ <tool>
3262
+ <name>BICOMP</name>
3263
+ <file> 1 4 19 12 16</file>
3264
+ </tool>
3265
+ </inputs>
3266
+ </file>
3267
+ <file>
3268
+ <name>$PROJ_DIR$\Cstartup.s79</name>
3269
+ <outputs>
3270
+ <tool>
3271
+ <name>AARM</name>
3272
+ <file> 127</file>
3273
+ </tool>
3274
+ </outputs>
3275
+ <inputs>
3276
+ <tool>
3277
+ <name>AARM</name>
3278
+ <file> 89</file>
3279
+ </tool>
3280
+ </inputs>
3281
+ </file>
3282
+ <file>
3283
+ <name>$PROJ_DIR$\..\..\examples\src\UsartPutChar.c</name>
3284
+ <outputs>
3285
+ <tool>
3286
+ <name>ICCARM</name>
3287
+ <file> 106 152</file>
3288
+ </tool>
3289
+ <tool>
3290
+ <name>BICOMP</name>
3291
+ <file> 140</file>
3292
+ </tool>
3293
+ </outputs>
3294
+ <inputs>
3295
+ <tool>
3296
+ <name>ICCARM</name>
3297
+ <file> 1 4 16 20 29 88 3 32 27 68 98 31</file>
3298
+ </tool>
3299
+ <tool>
3300
+ <name>BICOMP</name>
3301
+ <file> 1 4 16 20 29 88 3 27 68 98 31</file>
3302
+ </tool>
3303
+ </inputs>
3304
+ </file>
3305
+ <file>
3306
+ <name>$PROJ_DIR$\..\..\examples\src\UsartTransmitBufferStatus.c</name>
3307
+ <outputs>
3308
+ <tool>
3309
+ <name>ICCARM</name>
3310
+ <file> 113 147</file>
3311
+ </tool>
3312
+ <tool>
3313
+ <name>BICOMP</name>
3314
+ <file> 102</file>
3315
+ </tool>
3316
+ </outputs>
3317
+ <inputs>
3318
+ <tool>
3319
+ <name>ICCARM</name>
3320
+ <file> 1 4 20</file>
3321
+ </tool>
3322
+ <tool>
3323
+ <name>BICOMP</name>
3324
+ <file> 1 4 20</file>
3325
+ </tool>
3326
+ </inputs>
3327
+ </file>
3328
+ <file>
3329
+ <name>$PROJ_DIR$\Cstartup_SAM7.c</name>
3330
+ <outputs>
3331
+ <tool>
3332
+ <name>ICCARM</name>
3333
+ <file> 138 157</file>
3334
+ </tool>
3335
+ <tool>
3336
+ <name>BICOMP</name>
3337
+ <file> 86</file>
3338
+ </tool>
3339
+ </outputs>
3340
+ <inputs>
3341
+ <tool>
3342
+ <name>ICCARM</name>
3343
+ <file> 4</file>
3344
+ </tool>
3345
+ <tool>
3346
+ <name>BICOMP</name>
3347
+ <file> 4</file>
3348
+ </tool>
3349
+ </inputs>
3350
+ </file>
3351
+ <file>
3352
+ <name>$PROJ_DIR$\..\..\examples\src\AdcModel.c</name>
3353
+ <outputs>
3354
+ <tool>
3355
+ <name>ICCARM</name>
3356
+ <file> 129 159</file>
3357
+ </tool>
3358
+ <tool>
3359
+ <name>BICOMP</name>
3360
+ <file> 118</file>
3361
+ </tool>
3362
+ </outputs>
3363
+ <inputs>
3364
+ <tool>
3365
+ <name>ICCARM</name>
3366
+ <file> 1 4 199 6 10 14</file>
3367
+ </tool>
3368
+ <tool>
3369
+ <name>BICOMP</name>
3370
+ <file> 1 4 199 6 10 14</file>
3371
+ </tool>
3372
+ </inputs>
3373
+ </file>
3374
+ <file>
3375
+ <name>$PROJ_DIR$\..\..\examples\src\AdcTemperatureSensor.c</name>
3376
+ <outputs>
3377
+ <tool>
3378
+ <name>ICCARM</name>
3379
+ <file> 143 156</file>
3380
+ </tool>
3381
+ <tool>
3382
+ <name>BICOMP</name>
3383
+ <file> 105</file>
3384
+ </tool>
3385
+ </outputs>
3386
+ <inputs>
3387
+ <tool>
3388
+ <name>ICCARM</name>
3389
+ <file> 1 4 11</file>
3390
+ </tool>
3391
+ <tool>
3392
+ <name>BICOMP</name>
3393
+ <file> 1 4 11</file>
3394
+ </tool>
3395
+ </inputs>
3396
+ </file>
3397
+ <file>
3398
+ <name>$PROJ_DIR$\..\..\examples\src\Executor.c</name>
3399
+ <outputs>
3400
+ <tool>
3401
+ <name>ICCARM</name>
3402
+ <file> 91 154</file>
3403
+ </tool>
3404
+ <tool>
3405
+ <name>BICOMP</name>
3406
+ <file> 115</file>
3407
+ </tool>
3408
+ </outputs>
3409
+ <inputs>
3410
+ <tool>
3411
+ <name>ICCARM</name>
3412
+ <file> 1 4 198 8 7 15 5 18</file>
3413
+ </tool>
3414
+ <tool>
3415
+ <name>BICOMP</name>
3416
+ <file> 1 4 198 8 7 15 5 18</file>
3417
+ </tool>
3418
+ </inputs>
3419
+ </file>
3420
+ <file>
3421
+ <name>$PROJ_DIR$\..\..\examples\src\Main.c</name>
3422
+ <outputs>
3423
+ <tool>
3424
+ <name>ICCARM</name>
3425
+ <file> 104 168</file>
3426
+ </tool>
3427
+ <tool>
3428
+ <name>BICOMP</name>
3429
+ <file> 97</file>
3430
+ </tool>
3431
+ </outputs>
3432
+ <inputs>
3433
+ <tool>
3434
+ <name>ICCARM</name>
3435
+ <file> 1 4 18 198 8 6 10 14 7 19 12 16 17 26 20 15 25 24 21 22 23 5 13 2 11 199</file>
3436
+ </tool>
3437
+ <tool>
3438
+ <name>BICOMP</name>
3439
+ <file> 1 4 18 198 8 6 10 14 7 19 12 16 17 26 20 15 25 24 21 22 23 5 13 2 11 199</file>
3440
+ </tool>
3441
+ </inputs>
3442
+ </file>
3443
+ <file>
3444
+ <name>$PROJ_DIR$\..\..\examples\src\IntrinsicsWrapper.c</name>
3445
+ <outputs>
3446
+ <tool>
3447
+ <name>ICCARM</name>
3448
+ <file> 94 163</file>
3449
+ </tool>
3450
+ <tool>
3451
+ <name>BICOMP</name>
3452
+ <file> 130</file>
3453
+ </tool>
3454
+ </outputs>
3455
+ <inputs>
3456
+ <tool>
3457
+ <name>ICCARM</name>
3458
+ <file> 18 9</file>
3459
+ </tool>
3460
+ <tool>
3461
+ <name>BICOMP</name>
3462
+ <file> 18 9</file>
3463
+ </tool>
3464
+ </inputs>
3465
+ </file>
3466
+ <file>
3467
+ <name>$PROJ_DIR$\..\..\examples\src\Model.c</name>
3468
+ <outputs>
3469
+ <tool>
3470
+ <name>ICCARM</name>
3471
+ <file> 135 150</file>
3472
+ </tool>
3473
+ <tool>
3474
+ <name>BICOMP</name>
3475
+ <file> 144</file>
3476
+ </tool>
3477
+ </outputs>
3478
+ <inputs>
3479
+ <tool>
3480
+ <name>ICCARM</name>
3481
+ <file> 8 1 4 6 14</file>
3482
+ </tool>
3483
+ <tool>
3484
+ <name>BICOMP</name>
3485
+ <file> 8 1 4 6 14</file>
3486
+ </tool>
3487
+ </inputs>
3488
+ </file>
3489
+ <file>
3490
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureCalculator.c</name>
3491
+ <outputs>
3492
+ <tool>
3493
+ <name>ICCARM</name>
3494
+ <file> 139 165</file>
3495
+ </tool>
3496
+ <tool>
3497
+ <name>BICOMP</name>
3498
+ <file> 111</file>
3499
+ </tool>
3500
+ </outputs>
3501
+ <inputs>
3502
+ <tool>
3503
+ <name>ICCARM</name>
3504
+ <file> 1 4 10 28 30 88 3 32 27 68 98</file>
3505
+ </tool>
3506
+ <tool>
3507
+ <name>BICOMP</name>
3508
+ <file> 1 4 10 28 30 88 3 27 68 98</file>
3509
+ </tool>
3510
+ </inputs>
3511
+ </file>
3512
+ <file>
3513
+ <name>$PROJ_DIR$\..\..\examples\src\TaskScheduler.c</name>
3514
+ <outputs>
3515
+ <tool>
3516
+ <name>ICCARM</name>
3517
+ <file> 134 119</file>
3518
+ </tool>
3519
+ <tool>
3520
+ <name>BICOMP</name>
3521
+ <file> 124</file>
3522
+ </tool>
3523
+ </outputs>
3524
+ <inputs>
3525
+ <tool>
3526
+ <name>ICCARM</name>
3527
+ <file> 1 4 6</file>
3528
+ </tool>
3529
+ <tool>
3530
+ <name>BICOMP</name>
3531
+ <file> 1 4 6</file>
3532
+ </tool>
3533
+ </inputs>
3534
+ </file>
3535
+ <file>
3536
+ <name>$PROJ_DIR$\..\..\examples\src\TimerInterruptHandler.c</name>
3537
+ <outputs>
3538
+ <tool>
3539
+ <name>ICCARM</name>
3540
+ <file> 151 166</file>
3541
+ </tool>
3542
+ <tool>
3543
+ <name>BICOMP</name>
3544
+ <file> 128</file>
3545
+ </tool>
3546
+ </outputs>
3547
+ <inputs>
3548
+ <tool>
3549
+ <name>ICCARM</name>
3550
+ <file> 1 4 22 21</file>
3551
+ </tool>
3552
+ <tool>
3553
+ <name>BICOMP</name>
3554
+ <file> 1 4 22 21</file>
3555
+ </tool>
3556
+ </inputs>
3557
+ </file>
3558
+ <file>
3559
+ <name>$PROJ_DIR$\..\..\examples\src\TemperatureFilter.c</name>
3560
+ <outputs>
3561
+ <tool>
3562
+ <name>ICCARM</name>
3563
+ <file> 110 160</file>
3564
+ </tool>
3565
+ <tool>
3566
+ <name>BICOMP</name>
3567
+ <file> 121</file>
3568
+ </tool>
3569
+ </outputs>
3570
+ <inputs>
3571
+ <tool>
3572
+ <name>ICCARM</name>
3573
+ <file> 1 4 14 28 30 88 3 32 27 68 98</file>
3574
+ </tool>
3575
+ <tool>
3576
+ <name>BICOMP</name>
3577
+ <file> 1 4 14 28 30 88 3 27 68 98</file>
3578
+ </tool>
3579
+ </inputs>
3580
+ </file>
3581
+ <file>
3582
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardwareConfigurator.c</name>
3583
+ <outputs>
3584
+ <tool>
3585
+ <name>ICCARM</name>
3586
+ <file> 107 158</file>
3587
+ </tool>
3588
+ <tool>
3589
+ <name>BICOMP</name>
3590
+ <file> 99</file>
3591
+ </tool>
3592
+ </outputs>
3593
+ <inputs>
3594
+ <tool>
3595
+ <name>ICCARM</name>
3596
+ <file> 1 4 2 200</file>
3597
+ </tool>
3598
+ <tool>
3599
+ <name>BICOMP</name>
3600
+ <file> 1 4 2 200</file>
3601
+ </tool>
3602
+ </inputs>
3603
+ </file>
3604
+ <file>
3605
+ <name>$PROJ_DIR$\..\..\examples\src\AdcConductor.c</name>
3606
+ <outputs>
3607
+ <tool>
3608
+ <name>ICCARM</name>
3609
+ <file> 85 161</file>
3610
+ </tool>
3611
+ <tool>
3612
+ <name>BICOMP</name>
3613
+ <file> 125</file>
3614
+ </tool>
3615
+ </outputs>
3616
+ <inputs>
3617
+ <tool>
3618
+ <name>ICCARM</name>
3619
+ <file> 1 4 5 199 13</file>
3620
+ </tool>
3621
+ <tool>
3622
+ <name>BICOMP</name>
3623
+ <file> 1 4 5 199 13</file>
3624
+ </tool>
3625
+ </inputs>
3626
+ </file>
3627
+ <file>
3628
+ <name>$PROJ_DIR$\..\..\examples\src\AdcHardware.c</name>
3629
+ <outputs>
3630
+ <tool>
3631
+ <name>ICCARM</name>
3632
+ <file> 103 148</file>
3633
+ </tool>
3634
+ <tool>
3635
+ <name>BICOMP</name>
3636
+ <file> 142</file>
3637
+ </tool>
3638
+ </outputs>
3639
+ <inputs>
3640
+ <tool>
3641
+ <name>ICCARM</name>
3642
+ <file> 1 4 13 2 11</file>
3643
+ </tool>
3644
+ <tool>
3645
+ <name>BICOMP</name>
3646
+ <file> 1 4 13 2 11</file>
3647
+ </tool>
3648
+ </inputs>
3649
+ </file>
3650
+ <file>
3651
+ <name>$PROJ_DIR$\srcIAR\Cstartup.s79</name>
3652
+ <outputs>
3653
+ <tool>
3654
+ <name>AARM</name>
3655
+ <file> 127</file>
3656
+ </tool>
3657
+ </outputs>
3658
+ <inputs>
3659
+ <tool>
3660
+ <name>AARM</name>
3661
+ <file> 89</file>
3662
+ </tool>
3663
+ </inputs>
3664
+ </file>
3665
+ <file>
3666
+ <name>$PROJ_DIR$\srcIAR\Cstartup_SAM7.c</name>
3667
+ <outputs>
3668
+ <tool>
3669
+ <name>ICCARM</name>
3670
+ <file> 138 157</file>
3671
+ </tool>
3672
+ <tool>
3673
+ <name>BICOMP</name>
3674
+ <file> 86</file>
3675
+ </tool>
3676
+ </outputs>
3677
+ <inputs>
3678
+ <tool>
3679
+ <name>ICCARM</name>
3680
+ <file> 4</file>
3681
+ </tool>
3682
+ <tool>
3683
+ <name>BICOMP</name>
3684
+ <file> 4</file>
3685
+ </tool>
3686
+ </inputs>
3687
+ </file>
3688
+ </configuration>
3689
+ </project>
3690
+
3691
+