module_universal_io.ewp 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <fileVersion>3</fileVersion>
  4. <configuration>
  5. <name>Debug</name>
  6. <toolchain>
  7. <name>ARM</name>
  8. </toolchain>
  9. <debug>1</debug>
  10. <settings>
  11. <name>General</name>
  12. <archiveVersion>3</archiveVersion>
  13. <data>
  14. <version>31</version>
  15. <wantNonLocal>1</wantNonLocal>
  16. <debug>1</debug>
  17. <option>
  18. <name>ExePath</name>
  19. <state>Debug\Exe</state>
  20. </option>
  21. <option>
  22. <name>ObjPath</name>
  23. <state>Debug\Obj</state>
  24. </option>
  25. <option>
  26. <name>ListPath</name>
  27. <state>Debug\List</state>
  28. </option>
  29. <option>
  30. <name>GEndianMode</name>
  31. <state>0</state>
  32. </option>
  33. <option>
  34. <name>Input description</name>
  35. <state>Full formatting, without multibyte support.</state>
  36. </option>
  37. <option>
  38. <name>Output description</name>
  39. <state>Full formatting, without multibyte support.</state>
  40. </option>
  41. <option>
  42. <name>GOutputBinary</name>
  43. <state>0</state>
  44. </option>
  45. <option>
  46. <name>OGCoreOrChip</name>
  47. <state>1</state>
  48. </option>
  49. <option>
  50. <name>GRuntimeLibSelect</name>
  51. <version>0</version>
  52. <state>2</state>
  53. </option>
  54. <option>
  55. <name>GRuntimeLibSelectSlave</name>
  56. <version>0</version>
  57. <state>2</state>
  58. </option>
  59. <option>
  60. <name>RTDescription</name>
  61. <state>Use the full configuration of the C/C++ runtime library. Full locale interface, C locale, file descriptor support, multibytes in printf and scanf, and hex floats in strtod.</state>
  62. </option>
  63. <option>
  64. <name>OGProductVersion</name>
  65. <state>8.40.1.21529</state>
  66. </option>
  67. <option>
  68. <name>OGLastSavedByProductVersion</name>
  69. <state>8.40.1.21529</state>
  70. </option>
  71. <option>
  72. <name>GeneralEnableMisra</name>
  73. <state>0</state>
  74. </option>
  75. <option>
  76. <name>GeneralMisraVerbose</name>
  77. <state>0</state>
  78. </option>
  79. <option>
  80. <name>OGChipSelectEditMenu</name>
  81. <state>AT32F403AVGT7_v2 ArteryTek -AT32F403AVGT7</state>
  82. </option>
  83. <option>
  84. <name>GenLowLevelInterface</name>
  85. <state>1</state>
  86. </option>
  87. <option>
  88. <name>GEndianModeBE</name>
  89. <state>1</state>
  90. </option>
  91. <option>
  92. <name>OGBufferedTerminalOutput</name>
  93. <state>0</state>
  94. </option>
  95. <option>
  96. <name>GenStdoutInterface</name>
  97. <state>0</state>
  98. </option>
  99. <option>
  100. <name>GeneralMisraRules98</name>
  101. <version>0</version>
  102. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  103. </option>
  104. <option>
  105. <name>GeneralMisraVer</name>
  106. <state>0</state>
  107. </option>
  108. <option>
  109. <name>GeneralMisraRules04</name>
  110. <version>0</version>
  111. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  112. </option>
  113. <option>
  114. <name>RTConfigPath2</name>
  115. <state>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</state>
  116. </option>
  117. <option>
  118. <name>GBECoreSlave</name>
  119. <version>27</version>
  120. <state>39</state>
  121. </option>
  122. <option>
  123. <name>OGUseCmsis</name>
  124. <state>0</state>
  125. </option>
  126. <option>
  127. <name>OGUseCmsisDspLib</name>
  128. <state>0</state>
  129. </option>
  130. <option>
  131. <name>GRuntimeLibThreads</name>
  132. <state>0</state>
  133. </option>
  134. <option>
  135. <name>CoreVariant</name>
  136. <version>27</version>
  137. <state>39</state>
  138. </option>
  139. <option>
  140. <name>GFPUDeviceSlave</name>
  141. <state>AT32F403AVGT7_v2 ArteryTek -AT32F403AVGT7</state>
  142. </option>
  143. <option>
  144. <name>FPU2</name>
  145. <version>0</version>
  146. <state>4</state>
  147. </option>
  148. <option>
  149. <name>NrRegs</name>
  150. <version>0</version>
  151. <state>1</state>
  152. </option>
  153. <option>
  154. <name>NEON</name>
  155. <state>0</state>
  156. </option>
  157. <option>
  158. <name>GFPUCoreSlave2</name>
  159. <version>27</version>
  160. <state>39</state>
  161. </option>
  162. <option>
  163. <name>OGCMSISPackSelectDevice</name>
  164. </option>
  165. <option>
  166. <name>OgLibHeap</name>
  167. <state>0</state>
  168. </option>
  169. <option>
  170. <name>OGLibAdditionalLocale</name>
  171. <state>0</state>
  172. </option>
  173. <option>
  174. <name>OGPrintfVariant</name>
  175. <version>0</version>
  176. <state>1</state>
  177. </option>
  178. <option>
  179. <name>OGPrintfMultibyteSupport</name>
  180. <state>0</state>
  181. </option>
  182. <option>
  183. <name>OGScanfVariant</name>
  184. <version>0</version>
  185. <state>1</state>
  186. </option>
  187. <option>
  188. <name>OGScanfMultibyteSupport</name>
  189. <state>0</state>
  190. </option>
  191. <option>
  192. <name>GenLocaleTags</name>
  193. <state></state>
  194. </option>
  195. <option>
  196. <name>GenLocaleDisplayOnly</name>
  197. <state></state>
  198. </option>
  199. <option>
  200. <name>DSPExtension</name>
  201. <state>1</state>
  202. </option>
  203. <option>
  204. <name>TrustZone</name>
  205. <state>0</state>
  206. </option>
  207. <option>
  208. <name>TrustZoneModes</name>
  209. <version>0</version>
  210. <state>0</state>
  211. </option>
  212. </data>
  213. </settings>
  214. <settings>
  215. <name>ICCARM</name>
  216. <archiveVersion>2</archiveVersion>
  217. <data>
  218. <version>35</version>
  219. <wantNonLocal>1</wantNonLocal>
  220. <debug>1</debug>
  221. <option>
  222. <name>CCDefines</name>
  223. <state>AT32F403AVGT7</state>
  224. <state>USE_STDPERIPH_DRIVER</state>
  225. <state>AT_START_F403A_V1</state>
  226. <state>PRINTF_STDLIB</state>
  227. <state>DEBUG</state>
  228. <state>MAI_12</state>
  229. </option>
  230. <option>
  231. <name>CCPreprocFile</name>
  232. <state>0</state>
  233. </option>
  234. <option>
  235. <name>CCPreprocComments</name>
  236. <state>0</state>
  237. </option>
  238. <option>
  239. <name>CCPreprocLine</name>
  240. <state>1</state>
  241. </option>
  242. <option>
  243. <name>CCListCFile</name>
  244. <state>0</state>
  245. </option>
  246. <option>
  247. <name>CCListCMnemonics</name>
  248. <state>0</state>
  249. </option>
  250. <option>
  251. <name>CCListCMessages</name>
  252. <state>0</state>
  253. </option>
  254. <option>
  255. <name>CCListAssFile</name>
  256. <state>0</state>
  257. </option>
  258. <option>
  259. <name>CCListAssSource</name>
  260. <state>0</state>
  261. </option>
  262. <option>
  263. <name>CCEnableRemarks</name>
  264. <state>0</state>
  265. </option>
  266. <option>
  267. <name>CCDiagSuppress</name>
  268. <state></state>
  269. </option>
  270. <option>
  271. <name>CCDiagRemark</name>
  272. <state></state>
  273. </option>
  274. <option>
  275. <name>CCDiagWarning</name>
  276. <state></state>
  277. </option>
  278. <option>
  279. <name>CCDiagError</name>
  280. <state></state>
  281. </option>
  282. <option>
  283. <name>CCObjPrefix</name>
  284. <state>1</state>
  285. </option>
  286. <option>
  287. <name>CCAllowList</name>
  288. <version>1</version>
  289. <state>00000000</state>
  290. </option>
  291. <option>
  292. <name>CCDebugInfo</name>
  293. <state>1</state>
  294. </option>
  295. <option>
  296. <name>IEndianMode</name>
  297. <state>1</state>
  298. </option>
  299. <option>
  300. <name>IProcessor</name>
  301. <state>1</state>
  302. </option>
  303. <option>
  304. <name>IExtraOptionsCheck</name>
  305. <state>0</state>
  306. </option>
  307. <option>
  308. <name>IExtraOptions</name>
  309. <state></state>
  310. </option>
  311. <option>
  312. <name>CCLangConformance</name>
  313. <state>0</state>
  314. </option>
  315. <option>
  316. <name>CCSignedPlainChar</name>
  317. <state>1</state>
  318. </option>
  319. <option>
  320. <name>CCRequirePrototypes</name>
  321. <state>0</state>
  322. </option>
  323. <option>
  324. <name>CCDiagWarnAreErr</name>
  325. <state>0</state>
  326. </option>
  327. <option>
  328. <name>CCCompilerRuntimeInfo</name>
  329. <state>0</state>
  330. </option>
  331. <option>
  332. <name>IFpuProcessor</name>
  333. <state>1</state>
  334. </option>
  335. <option>
  336. <name>OutputFile</name>
  337. <state>$FILE_BNAME$.o</state>
  338. </option>
  339. <option>
  340. <name>CCLibConfigHeader</name>
  341. <state>1</state>
  342. </option>
  343. <option>
  344. <name>PreInclude</name>
  345. <state></state>
  346. </option>
  347. <option>
  348. <name>CompilerMisraOverride</name>
  349. <state>0</state>
  350. </option>
  351. <option>
  352. <name>CCIncludePath2</name>
  353. <state>$PROJ_DIR$\..\..\libs\artery\drivers\inc</state>
  354. <state>$PROJ_DIR$\..\..\libs\artery\system</state>
  355. <state>$PROJ_DIR$\..\..\libs\artery\usb\inc</state>
  356. <state>$PROJ_DIR$\..\..\libs\artery\cmsis\cm4\core_support</state>
  357. <state>$PROJ_DIR$\..\..\libs\artery\cmsis\cm4\device_support</state>
  358. <state>$PROJ_DIR$\..\..\libs\thirdparty\freertos\source\include</state>
  359. <state>$PROJ_DIR$\..\..\libs\thirdparty\rndis\dhcp-server</state>
  360. <state>$PROJ_DIR$\..\..\libs\thirdparty\rndis\dns-server</state>
  361. <state>$PROJ_DIR$\..\..\libs\thirdparty\rndis\rndis_driver</state>
  362. <state>$PROJ_DIR$\..\..\shared\peripherals\inc</state>
  363. <state>$PROJ_DIR$\..\..\shared\wdt</state>
  364. <state>$PROJ_DIR$\..\..\shared\board</state>
  365. <state>$PROJ_DIR$\..\..\shared\utils</state>
  366. <state>$PROJ_DIR$\..\..\shared\model</state>
  367. <state>$PROJ_DIR$\..\..\shared\freemodbus</state>
  368. <state>$PROJ_DIR$\..\..\shared\freemodbus\ascii</state>
  369. <state>$PROJ_DIR$\..\..\shared\freemodbus\functions</state>
  370. <state>$PROJ_DIR$\..\..\shared\freemodbus\include</state>
  371. <state>$PROJ_DIR$\..\..\shared\freemodbus\port</state>
  372. <state>$PROJ_DIR$\..\..\shared\freemodbus\rtu</state>
  373. <state>$PROJ_DIR$\..\..\shared\sys</state>
  374. <state>$PROJ_DIR$\..\..\fw\modules\usb</state>
  375. <state>$PROJ_DIR$\..\..\fw\modules\io</state>
  376. <state>$PROJ_DIR$\..\..\fw\modules\misc</state>
  377. <state>$PROJ_DIR$\..\..\fw\modules\spi_flash</state>
  378. <state>$PROJ_DIR$\..\..\fw\modules\user_fatfs</state>
  379. <state>$PROJ_DIR$\..\..\fw\modules\modbus</state>
  380. <state>$PROJ_DIR$\..\..\fw\modules\settings</state>
  381. <state>$PROJ_DIR$\..\..\fw\modules\adc</state>
  382. <state>$PROJ_DIR$\..\..\fw\user</state>
  383. <state>$PROJ_DIR$\..\..\libs\thirdparty\freertos\include</state>
  384. <state>$PROJ_DIR$\..\..\libs\thirdparty\freertos\portable\IAR\ARM_CM4F</state>
  385. <state>$PROJ_DIR$\..\..\libs\thirdparty\fat_fs\src</state>
  386. <state>$PROJ_DIR$\..\..\libs\thirdparty\fat_fs\drivers</state>
  387. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\include</state>
  388. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\include\netif</state>
  389. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\include\lwip</state>
  390. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\include\lwip\apps</state>
  391. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\include\netif\ppp</state>
  392. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\include\netif\ppp\polarssl</state>
  393. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\port</state>
  394. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\port\FreeRTOS</state>
  395. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\system</state>
  396. <state>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\system\arch</state>
  397. </option>
  398. <option>
  399. <name>CCStdIncCheck</name>
  400. <state>0</state>
  401. </option>
  402. <option>
  403. <name>CCCodeSection</name>
  404. <state>.text</state>
  405. </option>
  406. <option>
  407. <name>IProcessorMode2</name>
  408. <state>1</state>
  409. </option>
  410. <option>
  411. <name>CCOptLevel</name>
  412. <state>0</state>
  413. </option>
  414. <option>
  415. <name>CCOptStrategy</name>
  416. <version>0</version>
  417. <state>0</state>
  418. </option>
  419. <option>
  420. <name>CCOptLevelSlave</name>
  421. <state>0</state>
  422. </option>
  423. <option>
  424. <name>CompilerMisraRules98</name>
  425. <version>0</version>
  426. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  427. </option>
  428. <option>
  429. <name>CompilerMisraRules04</name>
  430. <version>0</version>
  431. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  432. </option>
  433. <option>
  434. <name>CCPosIndRopi</name>
  435. <state>0</state>
  436. </option>
  437. <option>
  438. <name>CCPosIndRwpi</name>
  439. <state>0</state>
  440. </option>
  441. <option>
  442. <name>CCPosIndNoDynInit</name>
  443. <state>0</state>
  444. </option>
  445. <option>
  446. <name>IccLang</name>
  447. <state>0</state>
  448. </option>
  449. <option>
  450. <name>IccCDialect</name>
  451. <state>1</state>
  452. </option>
  453. <option>
  454. <name>IccAllowVLA</name>
  455. <state>0</state>
  456. </option>
  457. <option>
  458. <name>IccStaticDestr</name>
  459. <state>1</state>
  460. </option>
  461. <option>
  462. <name>IccCppInlineSemantics</name>
  463. <state>0</state>
  464. </option>
  465. <option>
  466. <name>IccCmsis</name>
  467. <state>1</state>
  468. </option>
  469. <option>
  470. <name>IccFloatSemantics</name>
  471. <state>0</state>
  472. </option>
  473. <option>
  474. <name>CCOptimizationNoSizeConstraints</name>
  475. <state>0</state>
  476. </option>
  477. <option>
  478. <name>CCNoLiteralPool</name>
  479. <state>0</state>
  480. </option>
  481. <option>
  482. <name>CCOptStrategySlave</name>
  483. <version>0</version>
  484. <state>0</state>
  485. </option>
  486. <option>
  487. <name>CCGuardCalls</name>
  488. <state>1</state>
  489. </option>
  490. <option>
  491. <name>CCEncSource</name>
  492. <state>0</state>
  493. </option>
  494. <option>
  495. <name>CCEncOutput</name>
  496. <state>0</state>
  497. </option>
  498. <option>
  499. <name>CCEncOutputBom</name>
  500. <state>1</state>
  501. </option>
  502. <option>
  503. <name>CCEncInput</name>
  504. <state>0</state>
  505. </option>
  506. <option>
  507. <name>IccExceptions2</name>
  508. <state>0</state>
  509. </option>
  510. <option>
  511. <name>IccRTTI2</name>
  512. <state>0</state>
  513. </option>
  514. <option>
  515. <name>OICompilerExtraOption</name>
  516. <state>1</state>
  517. </option>
  518. </data>
  519. </settings>
  520. <settings>
  521. <name>AARM</name>
  522. <archiveVersion>2</archiveVersion>
  523. <data>
  524. <version>10</version>
  525. <wantNonLocal>1</wantNonLocal>
  526. <debug>1</debug>
  527. <option>
  528. <name>AObjPrefix</name>
  529. <state>1</state>
  530. </option>
  531. <option>
  532. <name>AEndian</name>
  533. <state>1</state>
  534. </option>
  535. <option>
  536. <name>ACaseSensitivity</name>
  537. <state>1</state>
  538. </option>
  539. <option>
  540. <name>MacroChars</name>
  541. <version>0</version>
  542. <state>0</state>
  543. </option>
  544. <option>
  545. <name>AWarnEnable</name>
  546. <state>0</state>
  547. </option>
  548. <option>
  549. <name>AWarnWhat</name>
  550. <state>0</state>
  551. </option>
  552. <option>
  553. <name>AWarnOne</name>
  554. <state></state>
  555. </option>
  556. <option>
  557. <name>AWarnRange1</name>
  558. <state></state>
  559. </option>
  560. <option>
  561. <name>AWarnRange2</name>
  562. <state></state>
  563. </option>
  564. <option>
  565. <name>ADebug</name>
  566. <state>1</state>
  567. </option>
  568. <option>
  569. <name>AltRegisterNames</name>
  570. <state>0</state>
  571. </option>
  572. <option>
  573. <name>ADefines</name>
  574. <state></state>
  575. </option>
  576. <option>
  577. <name>AList</name>
  578. <state>0</state>
  579. </option>
  580. <option>
  581. <name>AListHeader</name>
  582. <state>1</state>
  583. </option>
  584. <option>
  585. <name>AListing</name>
  586. <state>1</state>
  587. </option>
  588. <option>
  589. <name>Includes</name>
  590. <state>0</state>
  591. </option>
  592. <option>
  593. <name>MacDefs</name>
  594. <state>0</state>
  595. </option>
  596. <option>
  597. <name>MacExps</name>
  598. <state>1</state>
  599. </option>
  600. <option>
  601. <name>MacExec</name>
  602. <state>0</state>
  603. </option>
  604. <option>
  605. <name>OnlyAssed</name>
  606. <state>0</state>
  607. </option>
  608. <option>
  609. <name>MultiLine</name>
  610. <state>0</state>
  611. </option>
  612. <option>
  613. <name>PageLengthCheck</name>
  614. <state>0</state>
  615. </option>
  616. <option>
  617. <name>PageLength</name>
  618. <state>80</state>
  619. </option>
  620. <option>
  621. <name>TabSpacing</name>
  622. <state>8</state>
  623. </option>
  624. <option>
  625. <name>AXRef</name>
  626. <state>0</state>
  627. </option>
  628. <option>
  629. <name>AXRefDefines</name>
  630. <state>0</state>
  631. </option>
  632. <option>
  633. <name>AXRefInternal</name>
  634. <state>0</state>
  635. </option>
  636. <option>
  637. <name>AXRefDual</name>
  638. <state>0</state>
  639. </option>
  640. <option>
  641. <name>AProcessor</name>
  642. <state>1</state>
  643. </option>
  644. <option>
  645. <name>AFpuProcessor</name>
  646. <state>1</state>
  647. </option>
  648. <option>
  649. <name>AOutputFile</name>
  650. <state>$FILE_BNAME$.o</state>
  651. </option>
  652. <option>
  653. <name>ALimitErrorsCheck</name>
  654. <state>0</state>
  655. </option>
  656. <option>
  657. <name>ALimitErrorsEdit</name>
  658. <state>100</state>
  659. </option>
  660. <option>
  661. <name>AIgnoreStdInclude</name>
  662. <state>0</state>
  663. </option>
  664. <option>
  665. <name>AUserIncludes</name>
  666. <state>$PROJ_DIR$\..\..\fw\user</state>
  667. </option>
  668. <option>
  669. <name>AExtraOptionsCheckV2</name>
  670. <state>0</state>
  671. </option>
  672. <option>
  673. <name>AExtraOptionsV2</name>
  674. <state></state>
  675. </option>
  676. <option>
  677. <name>AsmNoLiteralPool</name>
  678. <state>0</state>
  679. </option>
  680. </data>
  681. </settings>
  682. <settings>
  683. <name>OBJCOPY</name>
  684. <archiveVersion>0</archiveVersion>
  685. <data>
  686. <version>1</version>
  687. <wantNonLocal>1</wantNonLocal>
  688. <debug>1</debug>
  689. <option>
  690. <name>OOCOutputFormat</name>
  691. <version>3</version>
  692. <state>3</state>
  693. </option>
  694. <option>
  695. <name>OCOutputOverride</name>
  696. <state>1</state>
  697. </option>
  698. <option>
  699. <name>OOCOutputFile</name>
  700. <state>$PROJ_DIR$\..\..\output\fw.bin</state>
  701. </option>
  702. <option>
  703. <name>OOCCommandLineProducer</name>
  704. <state>1</state>
  705. </option>
  706. <option>
  707. <name>OOCObjCopyEnable</name>
  708. <state>1</state>
  709. </option>
  710. </data>
  711. </settings>
  712. <settings>
  713. <name>CUSTOM</name>
  714. <archiveVersion>3</archiveVersion>
  715. <data>
  716. <extensions></extensions>
  717. <cmdline></cmdline>
  718. <hasPrio>0</hasPrio>
  719. </data>
  720. </settings>
  721. <settings>
  722. <name>BICOMP</name>
  723. <archiveVersion>0</archiveVersion>
  724. <data />
  725. </settings>
  726. <settings>
  727. <name>BUILDACTION</name>
  728. <archiveVersion>1</archiveVersion>
  729. <data>
  730. <prebuild></prebuild>
  731. <postbuild></postbuild>
  732. </data>
  733. </settings>
  734. <settings>
  735. <name>ILINK</name>
  736. <archiveVersion>0</archiveVersion>
  737. <data>
  738. <version>23</version>
  739. <wantNonLocal>1</wantNonLocal>
  740. <debug>1</debug>
  741. <option>
  742. <name>IlinkLibIOConfig</name>
  743. <state>1</state>
  744. </option>
  745. <option>
  746. <name>XLinkMisraHandler</name>
  747. <state>0</state>
  748. </option>
  749. <option>
  750. <name>IlinkInputFileSlave</name>
  751. <state>0</state>
  752. </option>
  753. <option>
  754. <name>IlinkOutputFile</name>
  755. <state>$PROJ_FNAME$.out</state>
  756. </option>
  757. <option>
  758. <name>IlinkDebugInfoEnable</name>
  759. <state>1</state>
  760. </option>
  761. <option>
  762. <name>IlinkKeepSymbols</name>
  763. <state></state>
  764. </option>
  765. <option>
  766. <name>IlinkRawBinaryFile</name>
  767. <state></state>
  768. </option>
  769. <option>
  770. <name>IlinkRawBinarySymbol</name>
  771. <state></state>
  772. </option>
  773. <option>
  774. <name>IlinkRawBinarySegment</name>
  775. <state></state>
  776. </option>
  777. <option>
  778. <name>IlinkRawBinaryAlign</name>
  779. <state></state>
  780. </option>
  781. <option>
  782. <name>IlinkDefines</name>
  783. <state></state>
  784. </option>
  785. <option>
  786. <name>IlinkConfigDefines</name>
  787. <state></state>
  788. </option>
  789. <option>
  790. <name>IlinkMapFile</name>
  791. <state>1</state>
  792. </option>
  793. <option>
  794. <name>IlinkLogFile</name>
  795. <state>0</state>
  796. </option>
  797. <option>
  798. <name>IlinkLogInitialization</name>
  799. <state>0</state>
  800. </option>
  801. <option>
  802. <name>IlinkLogModule</name>
  803. <state>0</state>
  804. </option>
  805. <option>
  806. <name>IlinkLogSection</name>
  807. <state>0</state>
  808. </option>
  809. <option>
  810. <name>IlinkLogVeneer</name>
  811. <state>0</state>
  812. </option>
  813. <option>
  814. <name>IlinkIcfOverride</name>
  815. <state>1</state>
  816. </option>
  817. <option>
  818. <name>IlinkIcfFile</name>
  819. <state>$PROJ_DIR$\AT32F403AxG.icf</state>
  820. </option>
  821. <option>
  822. <name>IlinkIcfFileSlave</name>
  823. <state></state>
  824. </option>
  825. <option>
  826. <name>IlinkEnableRemarks</name>
  827. <state>0</state>
  828. </option>
  829. <option>
  830. <name>IlinkSuppressDiags</name>
  831. <state></state>
  832. </option>
  833. <option>
  834. <name>IlinkTreatAsRem</name>
  835. <state></state>
  836. </option>
  837. <option>
  838. <name>IlinkTreatAsWarn</name>
  839. <state></state>
  840. </option>
  841. <option>
  842. <name>IlinkTreatAsErr</name>
  843. <state></state>
  844. </option>
  845. <option>
  846. <name>IlinkWarningsAreErrors</name>
  847. <state>0</state>
  848. </option>
  849. <option>
  850. <name>IlinkUseExtraOptions</name>
  851. <state>0</state>
  852. </option>
  853. <option>
  854. <name>IlinkExtraOptions</name>
  855. <state></state>
  856. </option>
  857. <option>
  858. <name>IlinkLowLevelInterfaceSlave</name>
  859. <state>1</state>
  860. </option>
  861. <option>
  862. <name>IlinkAutoLibEnable</name>
  863. <state>1</state>
  864. </option>
  865. <option>
  866. <name>IlinkAdditionalLibs</name>
  867. <state></state>
  868. </option>
  869. <option>
  870. <name>IlinkOverrideProgramEntryLabel</name>
  871. <state>0</state>
  872. </option>
  873. <option>
  874. <name>IlinkProgramEntryLabelSelect</name>
  875. <state>0</state>
  876. </option>
  877. <option>
  878. <name>IlinkProgramEntryLabel</name>
  879. <state>__iar_program_start</state>
  880. </option>
  881. <option>
  882. <name>DoFill</name>
  883. <state>1</state>
  884. </option>
  885. <option>
  886. <name>FillerByte</name>
  887. <state>0xFF</state>
  888. </option>
  889. <option>
  890. <name>FillerStart</name>
  891. <state>0x08021000</state>
  892. </option>
  893. <option>
  894. <name>FillerEnd</name>
  895. <state>0x08030FFF</state>
  896. </option>
  897. <option>
  898. <name>CrcSize</name>
  899. <version>0</version>
  900. <state>1</state>
  901. </option>
  902. <option>
  903. <name>CrcAlign</name>
  904. <state>1</state>
  905. </option>
  906. <option>
  907. <name>CrcPoly</name>
  908. <state>0x11021</state>
  909. </option>
  910. <option>
  911. <name>CrcCompl</name>
  912. <version>0</version>
  913. <state>0</state>
  914. </option>
  915. <option>
  916. <name>CrcBitOrder</name>
  917. <version>0</version>
  918. <state>0</state>
  919. </option>
  920. <option>
  921. <name>CrcInitialValue</name>
  922. <state>0x0</state>
  923. </option>
  924. <option>
  925. <name>DoCrc</name>
  926. <state>0</state>
  927. </option>
  928. <option>
  929. <name>IlinkBE8Slave</name>
  930. <state>1</state>
  931. </option>
  932. <option>
  933. <name>IlinkBufferedTerminalOutput</name>
  934. <state>1</state>
  935. </option>
  936. <option>
  937. <name>IlinkStdoutInterfaceSlave</name>
  938. <state>1</state>
  939. </option>
  940. <option>
  941. <name>CrcFullSize</name>
  942. <state>0</state>
  943. </option>
  944. <option>
  945. <name>IlinkIElfToolPostProcess</name>
  946. <state>0</state>
  947. </option>
  948. <option>
  949. <name>IlinkLogAutoLibSelect</name>
  950. <state>0</state>
  951. </option>
  952. <option>
  953. <name>IlinkLogRedirSymbols</name>
  954. <state>0</state>
  955. </option>
  956. <option>
  957. <name>IlinkLogUnusedFragments</name>
  958. <state>0</state>
  959. </option>
  960. <option>
  961. <name>IlinkCrcReverseByteOrder</name>
  962. <state>0</state>
  963. </option>
  964. <option>
  965. <name>IlinkCrcUseAsInput</name>
  966. <state>1</state>
  967. </option>
  968. <option>
  969. <name>IlinkOptInline</name>
  970. <state>0</state>
  971. </option>
  972. <option>
  973. <name>IlinkOptExceptionsAllow</name>
  974. <state>1</state>
  975. </option>
  976. <option>
  977. <name>IlinkOptExceptionsForce</name>
  978. <state>0</state>
  979. </option>
  980. <option>
  981. <name>IlinkCmsis</name>
  982. <state>1</state>
  983. </option>
  984. <option>
  985. <name>IlinkOptMergeDuplSections</name>
  986. <state>0</state>
  987. </option>
  988. <option>
  989. <name>IlinkOptUseVfe</name>
  990. <state>1</state>
  991. </option>
  992. <option>
  993. <name>IlinkOptForceVfe</name>
  994. <state>0</state>
  995. </option>
  996. <option>
  997. <name>IlinkStackAnalysisEnable</name>
  998. <state>0</state>
  999. </option>
  1000. <option>
  1001. <name>IlinkStackControlFile</name>
  1002. <state></state>
  1003. </option>
  1004. <option>
  1005. <name>IlinkStackCallGraphFile</name>
  1006. <state></state>
  1007. </option>
  1008. <option>
  1009. <name>CrcAlgorithm</name>
  1010. <version>1</version>
  1011. <state>1</state>
  1012. </option>
  1013. <option>
  1014. <name>CrcUnitSize</name>
  1015. <version>0</version>
  1016. <state>0</state>
  1017. </option>
  1018. <option>
  1019. <name>IlinkThreadsSlave</name>
  1020. <state>1</state>
  1021. </option>
  1022. <option>
  1023. <name>IlinkLogCallGraph</name>
  1024. <state>0</state>
  1025. </option>
  1026. <option>
  1027. <name>IlinkIcfFile_AltDefault</name>
  1028. <state></state>
  1029. </option>
  1030. <option>
  1031. <name>IlinkEncInput</name>
  1032. <state>0</state>
  1033. </option>
  1034. <option>
  1035. <name>IlinkEncOutput</name>
  1036. <state>0</state>
  1037. </option>
  1038. <option>
  1039. <name>IlinkEncOutputBom</name>
  1040. <state>1</state>
  1041. </option>
  1042. <option>
  1043. <name>IlinkHeapSelect</name>
  1044. <state>1</state>
  1045. </option>
  1046. <option>
  1047. <name>IlinkLocaleSelect</name>
  1048. <state>1</state>
  1049. </option>
  1050. <option>
  1051. <name>IlinkTrustzoneImportLibraryOut</name>
  1052. <state>module_universal_io_import_lib.o</state>
  1053. </option>
  1054. <option>
  1055. <name>OILinkExtraOption</name>
  1056. <state>1</state>
  1057. </option>
  1058. <option>
  1059. <name>IlinkRawBinaryFile2</name>
  1060. <state></state>
  1061. </option>
  1062. <option>
  1063. <name>IlinkRawBinarySymbol2</name>
  1064. <state></state>
  1065. </option>
  1066. <option>
  1067. <name>IlinkRawBinarySegment2</name>
  1068. <state></state>
  1069. </option>
  1070. <option>
  1071. <name>IlinkRawBinaryAlign2</name>
  1072. <state></state>
  1073. </option>
  1074. </data>
  1075. </settings>
  1076. <settings>
  1077. <name>IARCHIVE</name>
  1078. <archiveVersion>0</archiveVersion>
  1079. <data>
  1080. <version>0</version>
  1081. <wantNonLocal>1</wantNonLocal>
  1082. <debug>1</debug>
  1083. <option>
  1084. <name>IarchiveInputs</name>
  1085. <state></state>
  1086. </option>
  1087. <option>
  1088. <name>IarchiveOverride</name>
  1089. <state>0</state>
  1090. </option>
  1091. <option>
  1092. <name>IarchiveOutput</name>
  1093. <state>###Unitialized###</state>
  1094. </option>
  1095. </data>
  1096. </settings>
  1097. <settings>
  1098. <name>BILINK</name>
  1099. <archiveVersion>0</archiveVersion>
  1100. <data />
  1101. </settings>
  1102. </configuration>
  1103. <configuration>
  1104. <name>Release</name>
  1105. <toolchain>
  1106. <name>ARM</name>
  1107. </toolchain>
  1108. <debug>0</debug>
  1109. <settings>
  1110. <name>General</name>
  1111. <archiveVersion>3</archiveVersion>
  1112. <data>
  1113. <version>31</version>
  1114. <wantNonLocal>1</wantNonLocal>
  1115. <debug>0</debug>
  1116. <option>
  1117. <name>ExePath</name>
  1118. <state>Release\Exe</state>
  1119. </option>
  1120. <option>
  1121. <name>ObjPath</name>
  1122. <state>Release\Obj</state>
  1123. </option>
  1124. <option>
  1125. <name>ListPath</name>
  1126. <state>Release\List</state>
  1127. </option>
  1128. <option>
  1129. <name>GEndianMode</name>
  1130. <state>0</state>
  1131. </option>
  1132. <option>
  1133. <name>Input description</name>
  1134. <state></state>
  1135. </option>
  1136. <option>
  1137. <name>Output description</name>
  1138. <state></state>
  1139. </option>
  1140. <option>
  1141. <name>GOutputBinary</name>
  1142. <state>0</state>
  1143. </option>
  1144. <option>
  1145. <name>OGCoreOrChip</name>
  1146. <state>0</state>
  1147. </option>
  1148. <option>
  1149. <name>GRuntimeLibSelect</name>
  1150. <version>0</version>
  1151. <state>1</state>
  1152. </option>
  1153. <option>
  1154. <name>GRuntimeLibSelectSlave</name>
  1155. <version>0</version>
  1156. <state>1</state>
  1157. </option>
  1158. <option>
  1159. <name>RTDescription</name>
  1160. <state></state>
  1161. </option>
  1162. <option>
  1163. <name>OGProductVersion</name>
  1164. <state>8.40.1.21529</state>
  1165. </option>
  1166. <option>
  1167. <name>OGLastSavedByProductVersion</name>
  1168. <state></state>
  1169. </option>
  1170. <option>
  1171. <name>GeneralEnableMisra</name>
  1172. <state>0</state>
  1173. </option>
  1174. <option>
  1175. <name>GeneralMisraVerbose</name>
  1176. <state>0</state>
  1177. </option>
  1178. <option>
  1179. <name>OGChipSelectEditMenu</name>
  1180. <state></state>
  1181. </option>
  1182. <option>
  1183. <name>GenLowLevelInterface</name>
  1184. <state>0</state>
  1185. </option>
  1186. <option>
  1187. <name>GEndianModeBE</name>
  1188. <state>0</state>
  1189. </option>
  1190. <option>
  1191. <name>OGBufferedTerminalOutput</name>
  1192. <state>0</state>
  1193. </option>
  1194. <option>
  1195. <name>GenStdoutInterface</name>
  1196. <state>0</state>
  1197. </option>
  1198. <option>
  1199. <name>GeneralMisraRules98</name>
  1200. <version>0</version>
  1201. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  1202. </option>
  1203. <option>
  1204. <name>GeneralMisraVer</name>
  1205. <state>0</state>
  1206. </option>
  1207. <option>
  1208. <name>GeneralMisraRules04</name>
  1209. <version>0</version>
  1210. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  1211. </option>
  1212. <option>
  1213. <name>RTConfigPath2</name>
  1214. <state></state>
  1215. </option>
  1216. <option>
  1217. <name>GBECoreSlave</name>
  1218. <version>27</version>
  1219. <state>38</state>
  1220. </option>
  1221. <option>
  1222. <name>OGUseCmsis</name>
  1223. <state>0</state>
  1224. </option>
  1225. <option>
  1226. <name>OGUseCmsisDspLib</name>
  1227. <state>0</state>
  1228. </option>
  1229. <option>
  1230. <name>GRuntimeLibThreads</name>
  1231. <state>0</state>
  1232. </option>
  1233. <option>
  1234. <name>CoreVariant</name>
  1235. <version>27</version>
  1236. <state>38</state>
  1237. </option>
  1238. <option>
  1239. <name>GFPUDeviceSlave</name>
  1240. <state>-</state>
  1241. </option>
  1242. <option>
  1243. <name>FPU2</name>
  1244. <version>0</version>
  1245. <state>0</state>
  1246. </option>
  1247. <option>
  1248. <name>NrRegs</name>
  1249. <version>0</version>
  1250. <state>0</state>
  1251. </option>
  1252. <option>
  1253. <name>NEON</name>
  1254. <state>0</state>
  1255. </option>
  1256. <option>
  1257. <name>GFPUCoreSlave2</name>
  1258. <version>27</version>
  1259. <state>38</state>
  1260. </option>
  1261. <option>
  1262. <name>OGCMSISPackSelectDevice</name>
  1263. </option>
  1264. <option>
  1265. <name>OgLibHeap</name>
  1266. <state>0</state>
  1267. </option>
  1268. <option>
  1269. <name>OGLibAdditionalLocale</name>
  1270. <state>0</state>
  1271. </option>
  1272. <option>
  1273. <name>OGPrintfVariant</name>
  1274. <version>0</version>
  1275. <state>0</state>
  1276. </option>
  1277. <option>
  1278. <name>OGPrintfMultibyteSupport</name>
  1279. <state>0</state>
  1280. </option>
  1281. <option>
  1282. <name>OGScanfVariant</name>
  1283. <version>0</version>
  1284. <state>0</state>
  1285. </option>
  1286. <option>
  1287. <name>OGScanfMultibyteSupport</name>
  1288. <state>0</state>
  1289. </option>
  1290. <option>
  1291. <name>GenLocaleTags</name>
  1292. <state></state>
  1293. </option>
  1294. <option>
  1295. <name>GenLocaleDisplayOnly</name>
  1296. <state></state>
  1297. </option>
  1298. <option>
  1299. <name>DSPExtension</name>
  1300. <state>0</state>
  1301. </option>
  1302. <option>
  1303. <name>TrustZone</name>
  1304. <state>0</state>
  1305. </option>
  1306. <option>
  1307. <name>TrustZoneModes</name>
  1308. <version>0</version>
  1309. <state>0</state>
  1310. </option>
  1311. </data>
  1312. </settings>
  1313. <settings>
  1314. <name>ICCARM</name>
  1315. <archiveVersion>2</archiveVersion>
  1316. <data>
  1317. <version>35</version>
  1318. <wantNonLocal>1</wantNonLocal>
  1319. <debug>0</debug>
  1320. <option>
  1321. <name>CCDefines</name>
  1322. <state>NDEBUG</state>
  1323. </option>
  1324. <option>
  1325. <name>CCPreprocFile</name>
  1326. <state>0</state>
  1327. </option>
  1328. <option>
  1329. <name>CCPreprocComments</name>
  1330. <state>0</state>
  1331. </option>
  1332. <option>
  1333. <name>CCPreprocLine</name>
  1334. <state>1</state>
  1335. </option>
  1336. <option>
  1337. <name>CCListCFile</name>
  1338. <state>0</state>
  1339. </option>
  1340. <option>
  1341. <name>CCListCMnemonics</name>
  1342. <state>0</state>
  1343. </option>
  1344. <option>
  1345. <name>CCListCMessages</name>
  1346. <state>0</state>
  1347. </option>
  1348. <option>
  1349. <name>CCListAssFile</name>
  1350. <state>0</state>
  1351. </option>
  1352. <option>
  1353. <name>CCListAssSource</name>
  1354. <state>0</state>
  1355. </option>
  1356. <option>
  1357. <name>CCEnableRemarks</name>
  1358. <state>0</state>
  1359. </option>
  1360. <option>
  1361. <name>CCDiagSuppress</name>
  1362. <state></state>
  1363. </option>
  1364. <option>
  1365. <name>CCDiagRemark</name>
  1366. <state></state>
  1367. </option>
  1368. <option>
  1369. <name>CCDiagWarning</name>
  1370. <state></state>
  1371. </option>
  1372. <option>
  1373. <name>CCDiagError</name>
  1374. <state></state>
  1375. </option>
  1376. <option>
  1377. <name>CCObjPrefix</name>
  1378. <state>1</state>
  1379. </option>
  1380. <option>
  1381. <name>CCAllowList</name>
  1382. <version>1</version>
  1383. <state>11111110</state>
  1384. </option>
  1385. <option>
  1386. <name>CCDebugInfo</name>
  1387. <state>0</state>
  1388. </option>
  1389. <option>
  1390. <name>IEndianMode</name>
  1391. <state>1</state>
  1392. </option>
  1393. <option>
  1394. <name>IProcessor</name>
  1395. <state>1</state>
  1396. </option>
  1397. <option>
  1398. <name>IExtraOptionsCheck</name>
  1399. <state>0</state>
  1400. </option>
  1401. <option>
  1402. <name>IExtraOptions</name>
  1403. <state></state>
  1404. </option>
  1405. <option>
  1406. <name>CCLangConformance</name>
  1407. <state>0</state>
  1408. </option>
  1409. <option>
  1410. <name>CCSignedPlainChar</name>
  1411. <state>1</state>
  1412. </option>
  1413. <option>
  1414. <name>CCRequirePrototypes</name>
  1415. <state>0</state>
  1416. </option>
  1417. <option>
  1418. <name>CCDiagWarnAreErr</name>
  1419. <state>0</state>
  1420. </option>
  1421. <option>
  1422. <name>CCCompilerRuntimeInfo</name>
  1423. <state>0</state>
  1424. </option>
  1425. <option>
  1426. <name>IFpuProcessor</name>
  1427. <state>1</state>
  1428. </option>
  1429. <option>
  1430. <name>OutputFile</name>
  1431. <state></state>
  1432. </option>
  1433. <option>
  1434. <name>CCLibConfigHeader</name>
  1435. <state>1</state>
  1436. </option>
  1437. <option>
  1438. <name>PreInclude</name>
  1439. <state></state>
  1440. </option>
  1441. <option>
  1442. <name>CompilerMisraOverride</name>
  1443. <state>0</state>
  1444. </option>
  1445. <option>
  1446. <name>CCIncludePath2</name>
  1447. <state></state>
  1448. </option>
  1449. <option>
  1450. <name>CCStdIncCheck</name>
  1451. <state>0</state>
  1452. </option>
  1453. <option>
  1454. <name>CCCodeSection</name>
  1455. <state>.text</state>
  1456. </option>
  1457. <option>
  1458. <name>IProcessorMode2</name>
  1459. <state>1</state>
  1460. </option>
  1461. <option>
  1462. <name>CCOptLevel</name>
  1463. <state>3</state>
  1464. </option>
  1465. <option>
  1466. <name>CCOptStrategy</name>
  1467. <version>0</version>
  1468. <state>0</state>
  1469. </option>
  1470. <option>
  1471. <name>CCOptLevelSlave</name>
  1472. <state>1</state>
  1473. </option>
  1474. <option>
  1475. <name>CompilerMisraRules98</name>
  1476. <version>0</version>
  1477. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  1478. </option>
  1479. <option>
  1480. <name>CompilerMisraRules04</name>
  1481. <version>0</version>
  1482. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  1483. </option>
  1484. <option>
  1485. <name>CCPosIndRopi</name>
  1486. <state>0</state>
  1487. </option>
  1488. <option>
  1489. <name>CCPosIndRwpi</name>
  1490. <state>0</state>
  1491. </option>
  1492. <option>
  1493. <name>CCPosIndNoDynInit</name>
  1494. <state>0</state>
  1495. </option>
  1496. <option>
  1497. <name>IccLang</name>
  1498. <state>0</state>
  1499. </option>
  1500. <option>
  1501. <name>IccCDialect</name>
  1502. <state>1</state>
  1503. </option>
  1504. <option>
  1505. <name>IccAllowVLA</name>
  1506. <state>0</state>
  1507. </option>
  1508. <option>
  1509. <name>IccStaticDestr</name>
  1510. <state>1</state>
  1511. </option>
  1512. <option>
  1513. <name>IccCppInlineSemantics</name>
  1514. <state>0</state>
  1515. </option>
  1516. <option>
  1517. <name>IccCmsis</name>
  1518. <state>1</state>
  1519. </option>
  1520. <option>
  1521. <name>IccFloatSemantics</name>
  1522. <state>0</state>
  1523. </option>
  1524. <option>
  1525. <name>CCOptimizationNoSizeConstraints</name>
  1526. <state>0</state>
  1527. </option>
  1528. <option>
  1529. <name>CCNoLiteralPool</name>
  1530. <state>0</state>
  1531. </option>
  1532. <option>
  1533. <name>CCOptStrategySlave</name>
  1534. <version>0</version>
  1535. <state>0</state>
  1536. </option>
  1537. <option>
  1538. <name>CCGuardCalls</name>
  1539. <state>1</state>
  1540. </option>
  1541. <option>
  1542. <name>CCEncSource</name>
  1543. <state>0</state>
  1544. </option>
  1545. <option>
  1546. <name>CCEncOutput</name>
  1547. <state>0</state>
  1548. </option>
  1549. <option>
  1550. <name>CCEncOutputBom</name>
  1551. <state>1</state>
  1552. </option>
  1553. <option>
  1554. <name>CCEncInput</name>
  1555. <state>0</state>
  1556. </option>
  1557. <option>
  1558. <name>IccExceptions2</name>
  1559. <state>0</state>
  1560. </option>
  1561. <option>
  1562. <name>IccRTTI2</name>
  1563. <state>0</state>
  1564. </option>
  1565. <option>
  1566. <name>OICompilerExtraOption</name>
  1567. <state>1</state>
  1568. </option>
  1569. </data>
  1570. </settings>
  1571. <settings>
  1572. <name>AARM</name>
  1573. <archiveVersion>2</archiveVersion>
  1574. <data>
  1575. <version>10</version>
  1576. <wantNonLocal>1</wantNonLocal>
  1577. <debug>0</debug>
  1578. <option>
  1579. <name>AObjPrefix</name>
  1580. <state>1</state>
  1581. </option>
  1582. <option>
  1583. <name>AEndian</name>
  1584. <state>1</state>
  1585. </option>
  1586. <option>
  1587. <name>ACaseSensitivity</name>
  1588. <state>1</state>
  1589. </option>
  1590. <option>
  1591. <name>MacroChars</name>
  1592. <version>0</version>
  1593. <state>0</state>
  1594. </option>
  1595. <option>
  1596. <name>AWarnEnable</name>
  1597. <state>0</state>
  1598. </option>
  1599. <option>
  1600. <name>AWarnWhat</name>
  1601. <state>0</state>
  1602. </option>
  1603. <option>
  1604. <name>AWarnOne</name>
  1605. <state></state>
  1606. </option>
  1607. <option>
  1608. <name>AWarnRange1</name>
  1609. <state></state>
  1610. </option>
  1611. <option>
  1612. <name>AWarnRange2</name>
  1613. <state></state>
  1614. </option>
  1615. <option>
  1616. <name>ADebug</name>
  1617. <state>0</state>
  1618. </option>
  1619. <option>
  1620. <name>AltRegisterNames</name>
  1621. <state>0</state>
  1622. </option>
  1623. <option>
  1624. <name>ADefines</name>
  1625. <state></state>
  1626. </option>
  1627. <option>
  1628. <name>AList</name>
  1629. <state>0</state>
  1630. </option>
  1631. <option>
  1632. <name>AListHeader</name>
  1633. <state>1</state>
  1634. </option>
  1635. <option>
  1636. <name>AListing</name>
  1637. <state>1</state>
  1638. </option>
  1639. <option>
  1640. <name>Includes</name>
  1641. <state>0</state>
  1642. </option>
  1643. <option>
  1644. <name>MacDefs</name>
  1645. <state>0</state>
  1646. </option>
  1647. <option>
  1648. <name>MacExps</name>
  1649. <state>1</state>
  1650. </option>
  1651. <option>
  1652. <name>MacExec</name>
  1653. <state>0</state>
  1654. </option>
  1655. <option>
  1656. <name>OnlyAssed</name>
  1657. <state>0</state>
  1658. </option>
  1659. <option>
  1660. <name>MultiLine</name>
  1661. <state>0</state>
  1662. </option>
  1663. <option>
  1664. <name>PageLengthCheck</name>
  1665. <state>0</state>
  1666. </option>
  1667. <option>
  1668. <name>PageLength</name>
  1669. <state>80</state>
  1670. </option>
  1671. <option>
  1672. <name>TabSpacing</name>
  1673. <state>8</state>
  1674. </option>
  1675. <option>
  1676. <name>AXRef</name>
  1677. <state>0</state>
  1678. </option>
  1679. <option>
  1680. <name>AXRefDefines</name>
  1681. <state>0</state>
  1682. </option>
  1683. <option>
  1684. <name>AXRefInternal</name>
  1685. <state>0</state>
  1686. </option>
  1687. <option>
  1688. <name>AXRefDual</name>
  1689. <state>0</state>
  1690. </option>
  1691. <option>
  1692. <name>AProcessor</name>
  1693. <state>1</state>
  1694. </option>
  1695. <option>
  1696. <name>AFpuProcessor</name>
  1697. <state>1</state>
  1698. </option>
  1699. <option>
  1700. <name>AOutputFile</name>
  1701. <state></state>
  1702. </option>
  1703. <option>
  1704. <name>ALimitErrorsCheck</name>
  1705. <state>0</state>
  1706. </option>
  1707. <option>
  1708. <name>ALimitErrorsEdit</name>
  1709. <state>100</state>
  1710. </option>
  1711. <option>
  1712. <name>AIgnoreStdInclude</name>
  1713. <state>0</state>
  1714. </option>
  1715. <option>
  1716. <name>AUserIncludes</name>
  1717. <state></state>
  1718. </option>
  1719. <option>
  1720. <name>AExtraOptionsCheckV2</name>
  1721. <state>0</state>
  1722. </option>
  1723. <option>
  1724. <name>AExtraOptionsV2</name>
  1725. <state></state>
  1726. </option>
  1727. <option>
  1728. <name>AsmNoLiteralPool</name>
  1729. <state>0</state>
  1730. </option>
  1731. </data>
  1732. </settings>
  1733. <settings>
  1734. <name>OBJCOPY</name>
  1735. <archiveVersion>0</archiveVersion>
  1736. <data>
  1737. <version>1</version>
  1738. <wantNonLocal>1</wantNonLocal>
  1739. <debug>0</debug>
  1740. <option>
  1741. <name>OOCOutputFormat</name>
  1742. <version>3</version>
  1743. <state>0</state>
  1744. </option>
  1745. <option>
  1746. <name>OCOutputOverride</name>
  1747. <state>0</state>
  1748. </option>
  1749. <option>
  1750. <name>OOCOutputFile</name>
  1751. <state></state>
  1752. </option>
  1753. <option>
  1754. <name>OOCCommandLineProducer</name>
  1755. <state>1</state>
  1756. </option>
  1757. <option>
  1758. <name>OOCObjCopyEnable</name>
  1759. <state>0</state>
  1760. </option>
  1761. </data>
  1762. </settings>
  1763. <settings>
  1764. <name>CUSTOM</name>
  1765. <archiveVersion>3</archiveVersion>
  1766. <data>
  1767. <extensions></extensions>
  1768. <cmdline></cmdline>
  1769. <hasPrio>0</hasPrio>
  1770. </data>
  1771. </settings>
  1772. <settings>
  1773. <name>BICOMP</name>
  1774. <archiveVersion>0</archiveVersion>
  1775. <data />
  1776. </settings>
  1777. <settings>
  1778. <name>BUILDACTION</name>
  1779. <archiveVersion>1</archiveVersion>
  1780. <data>
  1781. <prebuild></prebuild>
  1782. <postbuild></postbuild>
  1783. </data>
  1784. </settings>
  1785. <settings>
  1786. <name>ILINK</name>
  1787. <archiveVersion>0</archiveVersion>
  1788. <data>
  1789. <version>23</version>
  1790. <wantNonLocal>1</wantNonLocal>
  1791. <debug>0</debug>
  1792. <option>
  1793. <name>IlinkLibIOConfig</name>
  1794. <state>1</state>
  1795. </option>
  1796. <option>
  1797. <name>XLinkMisraHandler</name>
  1798. <state>0</state>
  1799. </option>
  1800. <option>
  1801. <name>IlinkInputFileSlave</name>
  1802. <state>0</state>
  1803. </option>
  1804. <option>
  1805. <name>IlinkOutputFile</name>
  1806. <state>###Unitialized###</state>
  1807. </option>
  1808. <option>
  1809. <name>IlinkDebugInfoEnable</name>
  1810. <state>1</state>
  1811. </option>
  1812. <option>
  1813. <name>IlinkKeepSymbols</name>
  1814. <state></state>
  1815. </option>
  1816. <option>
  1817. <name>IlinkRawBinaryFile</name>
  1818. <state></state>
  1819. </option>
  1820. <option>
  1821. <name>IlinkRawBinarySymbol</name>
  1822. <state></state>
  1823. </option>
  1824. <option>
  1825. <name>IlinkRawBinarySegment</name>
  1826. <state></state>
  1827. </option>
  1828. <option>
  1829. <name>IlinkRawBinaryAlign</name>
  1830. <state></state>
  1831. </option>
  1832. <option>
  1833. <name>IlinkDefines</name>
  1834. <state></state>
  1835. </option>
  1836. <option>
  1837. <name>IlinkConfigDefines</name>
  1838. <state></state>
  1839. </option>
  1840. <option>
  1841. <name>IlinkMapFile</name>
  1842. <state>1</state>
  1843. </option>
  1844. <option>
  1845. <name>IlinkLogFile</name>
  1846. <state>0</state>
  1847. </option>
  1848. <option>
  1849. <name>IlinkLogInitialization</name>
  1850. <state>0</state>
  1851. </option>
  1852. <option>
  1853. <name>IlinkLogModule</name>
  1854. <state>0</state>
  1855. </option>
  1856. <option>
  1857. <name>IlinkLogSection</name>
  1858. <state>0</state>
  1859. </option>
  1860. <option>
  1861. <name>IlinkLogVeneer</name>
  1862. <state>0</state>
  1863. </option>
  1864. <option>
  1865. <name>IlinkIcfOverride</name>
  1866. <state>0</state>
  1867. </option>
  1868. <option>
  1869. <name>IlinkIcfFile</name>
  1870. <state>lnk0t.icf</state>
  1871. </option>
  1872. <option>
  1873. <name>IlinkIcfFileSlave</name>
  1874. <state></state>
  1875. </option>
  1876. <option>
  1877. <name>IlinkEnableRemarks</name>
  1878. <state>0</state>
  1879. </option>
  1880. <option>
  1881. <name>IlinkSuppressDiags</name>
  1882. <state></state>
  1883. </option>
  1884. <option>
  1885. <name>IlinkTreatAsRem</name>
  1886. <state></state>
  1887. </option>
  1888. <option>
  1889. <name>IlinkTreatAsWarn</name>
  1890. <state></state>
  1891. </option>
  1892. <option>
  1893. <name>IlinkTreatAsErr</name>
  1894. <state></state>
  1895. </option>
  1896. <option>
  1897. <name>IlinkWarningsAreErrors</name>
  1898. <state>0</state>
  1899. </option>
  1900. <option>
  1901. <name>IlinkUseExtraOptions</name>
  1902. <state>0</state>
  1903. </option>
  1904. <option>
  1905. <name>IlinkExtraOptions</name>
  1906. <state></state>
  1907. </option>
  1908. <option>
  1909. <name>IlinkLowLevelInterfaceSlave</name>
  1910. <state>1</state>
  1911. </option>
  1912. <option>
  1913. <name>IlinkAutoLibEnable</name>
  1914. <state>1</state>
  1915. </option>
  1916. <option>
  1917. <name>IlinkAdditionalLibs</name>
  1918. <state></state>
  1919. </option>
  1920. <option>
  1921. <name>IlinkOverrideProgramEntryLabel</name>
  1922. <state>0</state>
  1923. </option>
  1924. <option>
  1925. <name>IlinkProgramEntryLabelSelect</name>
  1926. <state>0</state>
  1927. </option>
  1928. <option>
  1929. <name>IlinkProgramEntryLabel</name>
  1930. <state></state>
  1931. </option>
  1932. <option>
  1933. <name>DoFill</name>
  1934. <state>0</state>
  1935. </option>
  1936. <option>
  1937. <name>FillerByte</name>
  1938. <state>0xFF</state>
  1939. </option>
  1940. <option>
  1941. <name>FillerStart</name>
  1942. <state>0x0</state>
  1943. </option>
  1944. <option>
  1945. <name>FillerEnd</name>
  1946. <state>0x0</state>
  1947. </option>
  1948. <option>
  1949. <name>CrcSize</name>
  1950. <version>0</version>
  1951. <state>1</state>
  1952. </option>
  1953. <option>
  1954. <name>CrcAlign</name>
  1955. <state>1</state>
  1956. </option>
  1957. <option>
  1958. <name>CrcPoly</name>
  1959. <state>0x11021</state>
  1960. </option>
  1961. <option>
  1962. <name>CrcCompl</name>
  1963. <version>0</version>
  1964. <state>0</state>
  1965. </option>
  1966. <option>
  1967. <name>CrcBitOrder</name>
  1968. <version>0</version>
  1969. <state>0</state>
  1970. </option>
  1971. <option>
  1972. <name>CrcInitialValue</name>
  1973. <state>0x0</state>
  1974. </option>
  1975. <option>
  1976. <name>DoCrc</name>
  1977. <state>0</state>
  1978. </option>
  1979. <option>
  1980. <name>IlinkBE8Slave</name>
  1981. <state>1</state>
  1982. </option>
  1983. <option>
  1984. <name>IlinkBufferedTerminalOutput</name>
  1985. <state>1</state>
  1986. </option>
  1987. <option>
  1988. <name>IlinkStdoutInterfaceSlave</name>
  1989. <state>1</state>
  1990. </option>
  1991. <option>
  1992. <name>CrcFullSize</name>
  1993. <state>0</state>
  1994. </option>
  1995. <option>
  1996. <name>IlinkIElfToolPostProcess</name>
  1997. <state>0</state>
  1998. </option>
  1999. <option>
  2000. <name>IlinkLogAutoLibSelect</name>
  2001. <state>0</state>
  2002. </option>
  2003. <option>
  2004. <name>IlinkLogRedirSymbols</name>
  2005. <state>0</state>
  2006. </option>
  2007. <option>
  2008. <name>IlinkLogUnusedFragments</name>
  2009. <state>0</state>
  2010. </option>
  2011. <option>
  2012. <name>IlinkCrcReverseByteOrder</name>
  2013. <state>0</state>
  2014. </option>
  2015. <option>
  2016. <name>IlinkCrcUseAsInput</name>
  2017. <state>1</state>
  2018. </option>
  2019. <option>
  2020. <name>IlinkOptInline</name>
  2021. <state>1</state>
  2022. </option>
  2023. <option>
  2024. <name>IlinkOptExceptionsAllow</name>
  2025. <state>1</state>
  2026. </option>
  2027. <option>
  2028. <name>IlinkOptExceptionsForce</name>
  2029. <state>0</state>
  2030. </option>
  2031. <option>
  2032. <name>IlinkCmsis</name>
  2033. <state>1</state>
  2034. </option>
  2035. <option>
  2036. <name>IlinkOptMergeDuplSections</name>
  2037. <state>0</state>
  2038. </option>
  2039. <option>
  2040. <name>IlinkOptUseVfe</name>
  2041. <state>1</state>
  2042. </option>
  2043. <option>
  2044. <name>IlinkOptForceVfe</name>
  2045. <state>0</state>
  2046. </option>
  2047. <option>
  2048. <name>IlinkStackAnalysisEnable</name>
  2049. <state>0</state>
  2050. </option>
  2051. <option>
  2052. <name>IlinkStackControlFile</name>
  2053. <state></state>
  2054. </option>
  2055. <option>
  2056. <name>IlinkStackCallGraphFile</name>
  2057. <state></state>
  2058. </option>
  2059. <option>
  2060. <name>CrcAlgorithm</name>
  2061. <version>1</version>
  2062. <state>1</state>
  2063. </option>
  2064. <option>
  2065. <name>CrcUnitSize</name>
  2066. <version>0</version>
  2067. <state>0</state>
  2068. </option>
  2069. <option>
  2070. <name>IlinkThreadsSlave</name>
  2071. <state>1</state>
  2072. </option>
  2073. <option>
  2074. <name>IlinkLogCallGraph</name>
  2075. <state>0</state>
  2076. </option>
  2077. <option>
  2078. <name>IlinkIcfFile_AltDefault</name>
  2079. <state></state>
  2080. </option>
  2081. <option>
  2082. <name>IlinkEncInput</name>
  2083. <state>0</state>
  2084. </option>
  2085. <option>
  2086. <name>IlinkEncOutput</name>
  2087. <state>0</state>
  2088. </option>
  2089. <option>
  2090. <name>IlinkEncOutputBom</name>
  2091. <state>1</state>
  2092. </option>
  2093. <option>
  2094. <name>IlinkHeapSelect</name>
  2095. <state>1</state>
  2096. </option>
  2097. <option>
  2098. <name>IlinkLocaleSelect</name>
  2099. <state>1</state>
  2100. </option>
  2101. <option>
  2102. <name>IlinkTrustzoneImportLibraryOut</name>
  2103. <state>###Unitialized###</state>
  2104. </option>
  2105. <option>
  2106. <name>OILinkExtraOption</name>
  2107. <state>1</state>
  2108. </option>
  2109. <option>
  2110. <name>IlinkRawBinaryFile2</name>
  2111. <state></state>
  2112. </option>
  2113. <option>
  2114. <name>IlinkRawBinarySymbol2</name>
  2115. <state></state>
  2116. </option>
  2117. <option>
  2118. <name>IlinkRawBinarySegment2</name>
  2119. <state></state>
  2120. </option>
  2121. <option>
  2122. <name>IlinkRawBinaryAlign2</name>
  2123. <state></state>
  2124. </option>
  2125. </data>
  2126. </settings>
  2127. <settings>
  2128. <name>IARCHIVE</name>
  2129. <archiveVersion>0</archiveVersion>
  2130. <data>
  2131. <version>0</version>
  2132. <wantNonLocal>1</wantNonLocal>
  2133. <debug>0</debug>
  2134. <option>
  2135. <name>IarchiveInputs</name>
  2136. <state></state>
  2137. </option>
  2138. <option>
  2139. <name>IarchiveOverride</name>
  2140. <state>0</state>
  2141. </option>
  2142. <option>
  2143. <name>IarchiveOutput</name>
  2144. <state>###Unitialized###</state>
  2145. </option>
  2146. </data>
  2147. </settings>
  2148. <settings>
  2149. <name>BILINK</name>
  2150. <archiveVersion>0</archiveVersion>
  2151. <data />
  2152. </settings>
  2153. </configuration>
  2154. <group>
  2155. <name>fw</name>
  2156. <group>
  2157. <name>modules</name>
  2158. <group>
  2159. <name>adc</name>
  2160. <file>
  2161. <name>$PROJ_DIR$\..\..\fw\modules\adc\adc_transport.c</name>
  2162. </file>
  2163. <file>
  2164. <name>$PROJ_DIR$\..\..\fw\modules\adc\ms5192t.c</name>
  2165. </file>
  2166. </group>
  2167. <group>
  2168. <name>io</name>
  2169. <file>
  2170. <name>$PROJ_DIR$\..\..\fw\modules\io\input.c</name>
  2171. </file>
  2172. <file>
  2173. <name>$PROJ_DIR$\..\..\fw\modules\io\io.c</name>
  2174. </file>
  2175. <file>
  2176. <name>$PROJ_DIR$\..\..\fw\modules\io\io_utils.c</name>
  2177. </file>
  2178. <file>
  2179. <name>$PROJ_DIR$\..\..\fw\modules\io\mux.c</name>
  2180. </file>
  2181. <file>
  2182. <name>$PROJ_DIR$\..\..\fw\modules\io\output.c</name>
  2183. </file>
  2184. </group>
  2185. <group>
  2186. <name>misc</name>
  2187. <file>
  2188. <name>$PROJ_DIR$\..\..\fw\modules\misc\at32_uid.c</name>
  2189. </file>
  2190. <file>
  2191. <name>$PROJ_DIR$\..\..\fw\modules\misc\hash.c</name>
  2192. </file>
  2193. <file>
  2194. <name>$PROJ_DIR$\..\..\fw\modules\misc\misc.c</name>
  2195. </file>
  2196. <file>
  2197. <name>$PROJ_DIR$\..\..\fw\modules\misc\rtc.c</name>
  2198. </file>
  2199. <file>
  2200. <name>$PROJ_DIR$\..\..\fw\modules\misc\uptime.c</name>
  2201. </file>
  2202. </group>
  2203. <group>
  2204. <name>modbus</name>
  2205. <file>
  2206. <name>$PROJ_DIR$\..\..\fw\modules\modbus\modbus.c</name>
  2207. </file>
  2208. <file>
  2209. <name>$PROJ_DIR$\..\..\fw\modules\modbus\modbus_params.c</name>
  2210. </file>
  2211. <file>
  2212. <name>$PROJ_DIR$\..\..\fw\modules\modbus\update.c</name>
  2213. </file>
  2214. </group>
  2215. <group>
  2216. <name>settings</name>
  2217. <file>
  2218. <name>$PROJ_DIR$\..\..\fw\modules\settings\settings_api.c</name>
  2219. </file>
  2220. </group>
  2221. <group>
  2222. <name>spi_flash</name>
  2223. <file>
  2224. <name>$PROJ_DIR$\..\..\fw\modules\spi_flash\spi_flash.c</name>
  2225. </file>
  2226. </group>
  2227. <group>
  2228. <name>usb</name>
  2229. <file>
  2230. <name>$PROJ_DIR$\..\..\fw\modules\usb\usb_eth.c</name>
  2231. </file>
  2232. </group>
  2233. <group>
  2234. <name>user_fatfs</name>
  2235. <file>
  2236. <name>$PROJ_DIR$\..\..\fw\modules\user_fatfs\user_fatfs.c</name>
  2237. </file>
  2238. </group>
  2239. </group>
  2240. <group>
  2241. <name>user</name>
  2242. <file>
  2243. <name>$PROJ_DIR$\..\..\fw\user\at32f403a_407_int.c</name>
  2244. </file>
  2245. <file>
  2246. <name>$PROJ_DIR$\..\..\fw\user\FreeRTOSConfig.h</name>
  2247. </file>
  2248. <file>
  2249. <name>$PROJ_DIR$\..\..\fw\user\lwipopts.h</name>
  2250. </file>
  2251. <file>
  2252. <name>$PROJ_DIR$\..\..\fw\user\main.c</name>
  2253. </file>
  2254. <file>
  2255. <name>$PROJ_DIR$\..\..\fw\user\main.h</name>
  2256. </file>
  2257. <file>
  2258. <name>$PROJ_DIR$\..\..\fw\user\usb_conf.h</name>
  2259. </file>
  2260. </group>
  2261. </group>
  2262. <group>
  2263. <name>libs</name>
  2264. <group>
  2265. <name>artery</name>
  2266. <group>
  2267. <name>cmsis</name>
  2268. <file>
  2269. <name>$PROJ_DIR$\..\..\libs\artery\cmsis\cm4\device_support\at32f403a_407.h</name>
  2270. </file>
  2271. <file>
  2272. <name>$PROJ_DIR$\..\..\libs\artery\cmsis\cm4\device_support\startup\iar\startup_at32f403a_407.s</name>
  2273. </file>
  2274. <file>
  2275. <name>$PROJ_DIR$\..\..\libs\artery\cmsis\cm4\device_support\system_at32f403a_407.c</name>
  2276. </file>
  2277. <file>
  2278. <name>$PROJ_DIR$\..\..\libs\artery\cmsis\cm4\device_support\system_at32f403a_407.h</name>
  2279. </file>
  2280. </group>
  2281. <group>
  2282. <name>drivers</name>
  2283. <file>
  2284. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_acc.c</name>
  2285. </file>
  2286. <file>
  2287. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_adc.c</name>
  2288. </file>
  2289. <file>
  2290. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_bpr.c</name>
  2291. </file>
  2292. <file>
  2293. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_can.c</name>
  2294. </file>
  2295. <file>
  2296. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_crc.c</name>
  2297. </file>
  2298. <file>
  2299. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_crm.c</name>
  2300. </file>
  2301. <file>
  2302. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_dac.c</name>
  2303. </file>
  2304. <file>
  2305. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_debug.c</name>
  2306. </file>
  2307. <file>
  2308. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_dma.c</name>
  2309. </file>
  2310. <file>
  2311. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_emac.c</name>
  2312. </file>
  2313. <file>
  2314. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_exint.c</name>
  2315. </file>
  2316. <file>
  2317. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_flash.c</name>
  2318. </file>
  2319. <file>
  2320. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_gpio.c</name>
  2321. </file>
  2322. <file>
  2323. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_i2c.c</name>
  2324. </file>
  2325. <file>
  2326. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_misc.c</name>
  2327. </file>
  2328. <file>
  2329. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_pwc.c</name>
  2330. </file>
  2331. <file>
  2332. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_rtc.c</name>
  2333. </file>
  2334. <file>
  2335. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_sdio.c</name>
  2336. </file>
  2337. <file>
  2338. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_spi.c</name>
  2339. </file>
  2340. <file>
  2341. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_tmr.c</name>
  2342. </file>
  2343. <file>
  2344. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_usart.c</name>
  2345. </file>
  2346. <file>
  2347. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_usb.c</name>
  2348. </file>
  2349. <file>
  2350. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_wdt.c</name>
  2351. </file>
  2352. <file>
  2353. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_wwdt.c</name>
  2354. </file>
  2355. <file>
  2356. <name>$PROJ_DIR$\..\..\libs\artery\drivers\src\at32f403a_407_xmc.c</name>
  2357. </file>
  2358. </group>
  2359. <group>
  2360. <name>system</name>
  2361. <file>
  2362. <name>$PROJ_DIR$\..\..\libs\artery\system\at32f403a_407_clock.c</name>
  2363. </file>
  2364. <file>
  2365. <name>$PROJ_DIR$\..\..\libs\artery\system\at32f403a_407_conf.h</name>
  2366. </file>
  2367. </group>
  2368. <group>
  2369. <name>usb</name>
  2370. <file>
  2371. <name>$PROJ_DIR$\..\..\libs\artery\usb\src\usbd_core.c</name>
  2372. </file>
  2373. <file>
  2374. <name>$PROJ_DIR$\..\..\libs\artery\usb\src\usbd_int.c</name>
  2375. </file>
  2376. <file>
  2377. <name>$PROJ_DIR$\..\..\libs\artery\usb\src\usbd_sdr.c</name>
  2378. </file>
  2379. </group>
  2380. </group>
  2381. <group>
  2382. <name>thirdparty</name>
  2383. <group>
  2384. <name>FatFs</name>
  2385. <file>
  2386. <name>$PROJ_DIR$\..\..\libs\thirdparty\fat_fs\src\diskio.c</name>
  2387. </file>
  2388. <file>
  2389. <name>$PROJ_DIR$\..\..\libs\thirdparty\fat_fs\src\drivers\fatfs_spi_flash.c</name>
  2390. </file>
  2391. <file>
  2392. <name>$PROJ_DIR$\..\..\libs\thirdparty\fat_fs\src\ff.c</name>
  2393. </file>
  2394. <file>
  2395. <name>$PROJ_DIR$\..\..\libs\thirdparty\fat_fs\src\option\syscall.c</name>
  2396. </file>
  2397. </group>
  2398. <group>
  2399. <name>freertos</name>
  2400. <group>
  2401. <name>portable</name>
  2402. <group>
  2403. <name>memmang</name>
  2404. <file>
  2405. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\portable\memmang\heap_4.c</name>
  2406. </file>
  2407. </group>
  2408. <file>
  2409. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\port.c</name>
  2410. </file>
  2411. <file>
  2412. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\portasm.s</name>
  2413. </file>
  2414. <file>
  2415. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\portmacro.h</name>
  2416. </file>
  2417. </group>
  2418. <file>
  2419. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\croutine.c</name>
  2420. </file>
  2421. <file>
  2422. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\event_groups.c</name>
  2423. </file>
  2424. <file>
  2425. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\fr_timers.c</name>
  2426. </file>
  2427. <file>
  2428. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\FreeRTOS-openocd.c</name>
  2429. </file>
  2430. <file>
  2431. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\list.c</name>
  2432. </file>
  2433. <file>
  2434. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\queue.c</name>
  2435. </file>
  2436. <file>
  2437. <name>$PROJ_DIR$\..\..\libs\thirdparty\freertos\tasks.c</name>
  2438. </file>
  2439. </group>
  2440. <group>
  2441. <name>lwip</name>
  2442. <group>
  2443. <name>api</name>
  2444. <file>
  2445. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\api_lib.c</name>
  2446. </file>
  2447. <file>
  2448. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\api_msg.c</name>
  2449. </file>
  2450. <file>
  2451. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\err.c</name>
  2452. </file>
  2453. <file>
  2454. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\netbuf.c</name>
  2455. </file>
  2456. <file>
  2457. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\netdb.c</name>
  2458. </file>
  2459. <file>
  2460. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\netifapi.c</name>
  2461. </file>
  2462. <file>
  2463. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\sockets.c</name>
  2464. </file>
  2465. <file>
  2466. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\api\tcpip.c</name>
  2467. </file>
  2468. </group>
  2469. <group>
  2470. <name>core</name>
  2471. <group>
  2472. <name>ipv4</name>
  2473. <file>
  2474. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\autoip.c</name>
  2475. </file>
  2476. <file>
  2477. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\dhcp.c</name>
  2478. </file>
  2479. <file>
  2480. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\etharp.c</name>
  2481. </file>
  2482. <file>
  2483. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\icmp.c</name>
  2484. </file>
  2485. <file>
  2486. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\igmp.c</name>
  2487. </file>
  2488. <file>
  2489. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\ip4.c</name>
  2490. </file>
  2491. <file>
  2492. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\ip4_addr.c</name>
  2493. </file>
  2494. <file>
  2495. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ipv4\ip4_frag.c</name>
  2496. </file>
  2497. </group>
  2498. <file>
  2499. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\def.c</name>
  2500. </file>
  2501. <file>
  2502. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\dns.c</name>
  2503. </file>
  2504. <file>
  2505. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\inet_chksum.c</name>
  2506. </file>
  2507. <file>
  2508. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\init.c</name>
  2509. </file>
  2510. <file>
  2511. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\ip.c</name>
  2512. </file>
  2513. <file>
  2514. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\mem.c</name>
  2515. </file>
  2516. <file>
  2517. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\memp.c</name>
  2518. </file>
  2519. <file>
  2520. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\netif.c</name>
  2521. </file>
  2522. <file>
  2523. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\pbuf.c</name>
  2524. </file>
  2525. <file>
  2526. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\raw.c</name>
  2527. </file>
  2528. <file>
  2529. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\stats.c</name>
  2530. </file>
  2531. <file>
  2532. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\sys.c</name>
  2533. </file>
  2534. <file>
  2535. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\tcp.c</name>
  2536. </file>
  2537. <file>
  2538. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\tcp_in.c</name>
  2539. </file>
  2540. <file>
  2541. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\tcp_out.c</name>
  2542. </file>
  2543. <file>
  2544. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\timeouts.c</name>
  2545. </file>
  2546. <file>
  2547. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\core\udp.c</name>
  2548. </file>
  2549. </group>
  2550. <group>
  2551. <name>netif</name>
  2552. <file>
  2553. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\src\netif\ethernet.c</name>
  2554. </file>
  2555. </group>
  2556. <group>
  2557. <name>port</name>
  2558. <file>
  2559. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\port\FreeRTOS\ethernetif.c</name>
  2560. </file>
  2561. <file>
  2562. <name>$PROJ_DIR$\..\..\libs\thirdparty\LwIP\port\FreeRTOS\sys_arch.c</name>
  2563. </file>
  2564. </group>
  2565. </group>
  2566. <group>
  2567. <name>rndis</name>
  2568. <group>
  2569. <name>dhcp_server</name>
  2570. <file>
  2571. <name>$PROJ_DIR$\..\..\libs\thirdparty\rndis\dhcp-server\dhserver.c</name>
  2572. </file>
  2573. </group>
  2574. <group>
  2575. <name>dns_server</name>
  2576. <file>
  2577. <name>$PROJ_DIR$\..\..\libs\thirdparty\rndis\dns-server\dnserver.c</name>
  2578. </file>
  2579. </group>
  2580. <group>
  2581. <name>rndis_driver</name>
  2582. <file>
  2583. <name>$PROJ_DIR$\..\..\libs\thirdparty\rndis\rndis_driver\usbd_desc.c</name>
  2584. </file>
  2585. <file>
  2586. <name>$PROJ_DIR$\..\..\libs\thirdparty\rndis\rndis_driver\usbd_rndis_core.c</name>
  2587. </file>
  2588. </group>
  2589. </group>
  2590. </group>
  2591. </group>
  2592. <group>
  2593. <name>output</name>
  2594. </group>
  2595. <group>
  2596. <name>shared</name>
  2597. <group>
  2598. <name>board</name>
  2599. <file>
  2600. <name>$PROJ_DIR$\..\..\shared\board\common.h</name>
  2601. </file>
  2602. <file>
  2603. <name>$PROJ_DIR$\..\..\shared\board\common_config.h</name>
  2604. </file>
  2605. </group>
  2606. <group>
  2607. <name>freemodbus</name>
  2608. <group>
  2609. <name>ascii</name>
  2610. <file>
  2611. <name>$PROJ_DIR$\..\..\shared\freemodbus\ascii\mbascii.c</name>
  2612. </file>
  2613. </group>
  2614. <group>
  2615. <name>functions</name>
  2616. <file>
  2617. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbfunccoils.c</name>
  2618. </file>
  2619. <file>
  2620. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbfuncdiag.c</name>
  2621. </file>
  2622. <file>
  2623. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbfuncdisc.c</name>
  2624. </file>
  2625. <file>
  2626. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbfuncholding.c</name>
  2627. </file>
  2628. <file>
  2629. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbfuncinput.c</name>
  2630. </file>
  2631. <file>
  2632. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbfuncother.c</name>
  2633. </file>
  2634. <file>
  2635. <name>$PROJ_DIR$\..\..\shared\freemodbus\functions\mbutils.c</name>
  2636. </file>
  2637. </group>
  2638. <group>
  2639. <name>include</name>
  2640. <file>
  2641. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mb.h</name>
  2642. </file>
  2643. <file>
  2644. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mbconfig.h</name>
  2645. </file>
  2646. <file>
  2647. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mbframe.h</name>
  2648. </file>
  2649. <file>
  2650. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mbfunc.h</name>
  2651. </file>
  2652. <file>
  2653. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mbport.h</name>
  2654. </file>
  2655. <file>
  2656. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mbproto.h</name>
  2657. </file>
  2658. <file>
  2659. <name>$PROJ_DIR$\..\..\shared\freemodbus\include\mbutils.h</name>
  2660. </file>
  2661. </group>
  2662. <group>
  2663. <name>port</name>
  2664. <file>
  2665. <name>$PROJ_DIR$\..\..\shared\freemodbus\port\port.h</name>
  2666. </file>
  2667. <file>
  2668. <name>$PROJ_DIR$\..\..\shared\freemodbus\port\portevent.c</name>
  2669. </file>
  2670. <file>
  2671. <name>$PROJ_DIR$\..\..\shared\freemodbus\port\portother.c</name>
  2672. </file>
  2673. <file>
  2674. <name>$PROJ_DIR$\..\..\shared\freemodbus\port\portserial.c</name>
  2675. </file>
  2676. <file>
  2677. <name>$PROJ_DIR$\..\..\shared\freemodbus\port\porttimer.c</name>
  2678. </file>
  2679. <file>
  2680. <name>$PROJ_DIR$\..\..\shared\freemodbus\port\tim_delay.c</name>
  2681. </file>
  2682. </group>
  2683. <group>
  2684. <name>rtu</name>
  2685. <file>
  2686. <name>$PROJ_DIR$\..\..\shared\freemodbus\rtu\mbcrc.c</name>
  2687. </file>
  2688. <file>
  2689. <name>$PROJ_DIR$\..\..\shared\freemodbus\rtu\mbrtu.c</name>
  2690. </file>
  2691. </group>
  2692. <file>
  2693. <name>$PROJ_DIR$\..\..\shared\freemodbus\mb.c</name>
  2694. </file>
  2695. </group>
  2696. <group>
  2697. <name>model</name>
  2698. <file>
  2699. <name>$PROJ_DIR$\..\..\shared\model\model_cfg.h</name>
  2700. </file>
  2701. </group>
  2702. <group>
  2703. <name>peripherals</name>
  2704. <file>
  2705. <name>$PROJ_DIR$\..\..\shared\peripherals\src\buttons.c</name>
  2706. </file>
  2707. <file>
  2708. <name>$PROJ_DIR$\..\..\shared\peripherals\src\common_gpio.c</name>
  2709. </file>
  2710. <file>
  2711. <name>$PROJ_DIR$\..\..\shared\peripherals\src\rng.c</name>
  2712. </file>
  2713. <file>
  2714. <name>$PROJ_DIR$\..\..\shared\peripherals\src\spi_common.c</name>
  2715. </file>
  2716. <file>
  2717. <name>$PROJ_DIR$\..\..\shared\peripherals\src\usb.c</name>
  2718. </file>
  2719. </group>
  2720. <group>
  2721. <name>sys</name>
  2722. <file>
  2723. <name>$PROJ_DIR$\..\..\shared\sys\sys_api.c</name>
  2724. </file>
  2725. <file>
  2726. <name>$PROJ_DIR$\..\..\shared\sys\sys_hal.c</name>
  2727. </file>
  2728. </group>
  2729. <group>
  2730. <name>utils</name>
  2731. <file>
  2732. <name>$PROJ_DIR$\..\..\shared\utils\at32f403a_407_board.c</name>
  2733. </file>
  2734. <file>
  2735. <name>$PROJ_DIR$\..\..\shared\utils\extended_sram.c</name>
  2736. </file>
  2737. <file>
  2738. <name>$PROJ_DIR$\..\..\shared\utils\utility.c</name>
  2739. </file>
  2740. </group>
  2741. <group>
  2742. <name>wdt</name>
  2743. <file>
  2744. <name>$PROJ_DIR$\..\..\shared\wdt\wdt.c</name>
  2745. </file>
  2746. </group>
  2747. </group>
  2748. </project>