module_universal_io.ewp 100 KB

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