module_universal_io.ewp 105 KB

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