project.ewp 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391
  1. <project>
  2. <fileVersion>2</fileVersion>
  3. <configuration>
  4. <name>Debug</name>
  5. <toolchain>
  6. <name>ARM</name>
  7. </toolchain>
  8. <debug>1</debug>
  9. <settings>
  10. <name>General</name>
  11. <archiveVersion>3</archiveVersion>
  12. <data>
  13. <version>22</version>
  14. <wantNonLocal>1</wantNonLocal>
  15. <debug>1</debug>
  16. <option>
  17. <name>ExePath</name>
  18. <state>build\Exe</state>
  19. </option>
  20. <option>
  21. <name>ObjPath</name>
  22. <state>build\Obj</state>
  23. </option>
  24. <option>
  25. <name>ListPath</name>
  26. <state>build\List</state>
  27. </option>
  28. <option>
  29. <name>Variant</name>
  30. <version>21</version>
  31. <state>39</state>
  32. </option>
  33. <option>
  34. <name>GEndianMode</name>
  35. <state>0</state>
  36. </option>
  37. <option>
  38. <name>Input variant</name>
  39. <version>3</version>
  40. <state>0</state>
  41. </option>
  42. <option>
  43. <name>Input description</name>
  44. <state>Automatic choice of formatter.</state>
  45. </option>
  46. <option>
  47. <name>Output variant</name>
  48. <version>2</version>
  49. <state>0</state>
  50. </option>
  51. <option>
  52. <name>Output description</name>
  53. <state>Automatic choice of formatter.</state>
  54. </option>
  55. <option>
  56. <name>GOutputBinary</name>
  57. <state>0</state>
  58. </option>
  59. <option>
  60. <name>FPU</name>
  61. <version>5</version>
  62. <state>7</state>
  63. </option>
  64. <option>
  65. <name>OGCoreOrChip</name>
  66. <state>1</state>
  67. </option>
  68. <option>
  69. <name>GRuntimeLibSelect</name>
  70. <version>0</version>
  71. <state>2</state>
  72. </option>
  73. <option>
  74. <name>GRuntimeLibSelectSlave</name>
  75. <version>0</version>
  76. <state>2</state>
  77. </option>
  78. <option>
  79. <name>RTDescription</name>
  80. <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>
  81. </option>
  82. <option>
  83. <name>OGProductVersion</name>
  84. <state>7.40.2.8567</state>
  85. </option>
  86. <option>
  87. <name>OGLastSavedByProductVersion</name>
  88. <state>7.40.2.8567</state>
  89. </option>
  90. <option>
  91. <name>GeneralEnableMisra</name>
  92. <state>0</state>
  93. </option>
  94. <option>
  95. <name>GeneralMisraVerbose</name>
  96. <state>0</state>
  97. </option>
  98. <option>
  99. <name>OGChipSelectEditMenu</name>
  100. <state>GD32F450xK GD GD32F450xK</state>
  101. </option>
  102. <option>
  103. <name>GenLowLevelInterface</name>
  104. <state>1</state>
  105. </option>
  106. <option>
  107. <name>GEndianModeBE</name>
  108. <state>1</state>
  109. </option>
  110. <option>
  111. <name>OGBufferedTerminalOutput</name>
  112. <state>0</state>
  113. </option>
  114. <option>
  115. <name>GenStdoutInterface</name>
  116. <state>0</state>
  117. </option>
  118. <option>
  119. <name>GeneralMisraRules98</name>
  120. <version>0</version>
  121. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  122. </option>
  123. <option>
  124. <name>GeneralMisraVer</name>
  125. <state>0</state>
  126. </option>
  127. <option>
  128. <name>GeneralMisraRules04</name>
  129. <version>0</version>
  130. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  131. </option>
  132. <option>
  133. <name>RTConfigPath2</name>
  134. <state>$TOOLKIT_DIR$\INC\c\DLib_Config_Full.h</state>
  135. </option>
  136. <option>
  137. <name>GFPUCoreSlave</name>
  138. <version>21</version>
  139. <state>39</state>
  140. </option>
  141. <option>
  142. <name>GBECoreSlave</name>
  143. <version>21</version>
  144. <state>39</state>
  145. </option>
  146. <option>
  147. <name>OGUseCmsis</name>
  148. <state>1</state>
  149. </option>
  150. <option>
  151. <name>OGUseCmsisDspLib</name>
  152. <state>1</state>
  153. </option>
  154. <option>
  155. <name>GRuntimeLibThreads</name>
  156. <state>0</state>
  157. </option>
  158. </data>
  159. </settings>
  160. <settings>
  161. <name>ICCARM</name>
  162. <archiveVersion>2</archiveVersion>
  163. <data>
  164. <version>31</version>
  165. <wantNonLocal>1</wantNonLocal>
  166. <debug>1</debug>
  167. <option>
  168. <name>CCDefines</name>
  169. <state>USE_STDPERIPH_DRIVER</state>
  170. <state>GD32F4XX</state>
  171. <state>USE_STDPERIPH_DRIVER</state>
  172. <state>GD32F4XX</state>
  173. <state>RT_USING_DLIBC</state>
  174. <state>_DLIB_FILE_DESCRIPTOR</state>
  175. </option>
  176. <option>
  177. <name>CCPreprocFile</name>
  178. <state>0</state>
  179. </option>
  180. <option>
  181. <name>CCPreprocComments</name>
  182. <state>0</state>
  183. </option>
  184. <option>
  185. <name>CCPreprocLine</name>
  186. <state>0</state>
  187. </option>
  188. <option>
  189. <name>CCListCFile</name>
  190. <state>0</state>
  191. </option>
  192. <option>
  193. <name>CCListCMnemonics</name>
  194. <state>0</state>
  195. </option>
  196. <option>
  197. <name>CCListCMessages</name>
  198. <state>0</state>
  199. </option>
  200. <option>
  201. <name>CCListAssFile</name>
  202. <state>0</state>
  203. </option>
  204. <option>
  205. <name>CCListAssSource</name>
  206. <state>0</state>
  207. </option>
  208. <option>
  209. <name>CCEnableRemarks</name>
  210. <state>0</state>
  211. </option>
  212. <option>
  213. <name>CCDiagSuppress</name>
  214. <state />
  215. </option>
  216. <option>
  217. <name>CCDiagRemark</name>
  218. <state />
  219. </option>
  220. <option>
  221. <name>CCDiagWarning</name>
  222. <state />
  223. </option>
  224. <option>
  225. <name>CCDiagError</name>
  226. <state />
  227. </option>
  228. <option>
  229. <name>CCObjPrefix</name>
  230. <state>1</state>
  231. </option>
  232. <option>
  233. <name>CCAllowList</name>
  234. <version>1</version>
  235. <state>00000000</state>
  236. </option>
  237. <option>
  238. <name>CCDebugInfo</name>
  239. <state>1</state>
  240. </option>
  241. <option>
  242. <name>IEndianMode</name>
  243. <state>1</state>
  244. </option>
  245. <option>
  246. <name>IProcessor</name>
  247. <state>1</state>
  248. </option>
  249. <option>
  250. <name>IExtraOptionsCheck</name>
  251. <state>0</state>
  252. </option>
  253. <option>
  254. <name>IExtraOptions</name>
  255. <state />
  256. </option>
  257. <option>
  258. <name>CCLangConformance</name>
  259. <state>0</state>
  260. </option>
  261. <option>
  262. <name>CCSignedPlainChar</name>
  263. <state>1</state>
  264. </option>
  265. <option>
  266. <name>CCRequirePrototypes</name>
  267. <state>0</state>
  268. </option>
  269. <option>
  270. <name>CCMultibyteSupport</name>
  271. <state>0</state>
  272. </option>
  273. <option>
  274. <name>CCDiagWarnAreErr</name>
  275. <state>0</state>
  276. </option>
  277. <option>
  278. <name>CCCompilerRuntimeInfo</name>
  279. <state>0</state>
  280. </option>
  281. <option>
  282. <name>IFpuProcessor</name>
  283. <state>1</state>
  284. </option>
  285. <option>
  286. <name>OutputFile</name>
  287. <state>$FILE_BNAME$.o</state>
  288. </option>
  289. <option>
  290. <name>CCLibConfigHeader</name>
  291. <state>1</state>
  292. </option>
  293. <option>
  294. <name>PreInclude</name>
  295. <state />
  296. </option>
  297. <option>
  298. <name>CompilerMisraOverride</name>
  299. <state>0</state>
  300. </option>
  301. <option>
  302. <name>CCIncludePath2</name>
  303. <state>$PROJ_DIR$\..\..\components\libc\compilers\dlib</state>
  304. <state>$PROJ_DIR$\..\..\include</state>
  305. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\netif</state>
  306. <state>$PROJ_DIR$\Libraries\CMSIS\GD\GD32F4xx\Include</state>
  307. <state>$PROJ_DIR$\..\..\libcpu\arm\common</state>
  308. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\net</state>
  309. <state>$PROJ_DIR$\..\..\components\drivers\include</state>
  310. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs</state>
  311. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src</state>
  312. <state>$PROJ_DIR$\drivers</state>
  313. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\ipv4</state>
  314. <state>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Include</state>
  315. <state>$PROJ_DIR$\.</state>
  316. <state>$PROJ_DIR$\..\..\libcpu\arm\cortex-m4</state>
  317. <state>$PROJ_DIR$\..\..\components\dfs\include</state>
  318. <state>$PROJ_DIR$\Libraries\CMSIS</state>
  319. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\net\socket</state>
  320. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include</state>
  321. <state>$PROJ_DIR$\applications</state>
  322. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\net\select</state>
  323. <state>$PROJ_DIR$\..\..\components\finsh</state>
  324. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\elmfat</state>
  325. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\arch\include</state>
  326. </option>
  327. <option>
  328. <name>CCStdIncCheck</name>
  329. <state>0</state>
  330. </option>
  331. <option>
  332. <name>CCCodeSection</name>
  333. <state>.text</state>
  334. </option>
  335. <option>
  336. <name>IInterwork2</name>
  337. <state>0</state>
  338. </option>
  339. <option>
  340. <name>IProcessorMode2</name>
  341. <state>1</state>
  342. </option>
  343. <option>
  344. <name>CCOptLevel</name>
  345. <state>1</state>
  346. </option>
  347. <option>
  348. <name>CCOptStrategy</name>
  349. <version>0</version>
  350. <state>0</state>
  351. </option>
  352. <option>
  353. <name>CCOptLevelSlave</name>
  354. <state>1</state>
  355. </option>
  356. <option>
  357. <name>CompilerMisraRules98</name>
  358. <version>0</version>
  359. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  360. </option>
  361. <option>
  362. <name>CompilerMisraRules04</name>
  363. <version>0</version>
  364. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  365. </option>
  366. <option>
  367. <name>CCPosIndRopi</name>
  368. <state>0</state>
  369. </option>
  370. <option>
  371. <name>CCPosIndRwpi</name>
  372. <state>0</state>
  373. </option>
  374. <option>
  375. <name>CCPosIndNoDynInit</name>
  376. <state>0</state>
  377. </option>
  378. <option>
  379. <name>IccLang</name>
  380. <state>0</state>
  381. </option>
  382. <option>
  383. <name>IccCDialect</name>
  384. <state>1</state>
  385. </option>
  386. <option>
  387. <name>IccAllowVLA</name>
  388. <state>0</state>
  389. </option>
  390. <option>
  391. <name>IccCppDialect</name>
  392. <state>1</state>
  393. </option>
  394. <option>
  395. <name>IccExceptions</name>
  396. <state>1</state>
  397. </option>
  398. <option>
  399. <name>IccRTTI</name>
  400. <state>1</state>
  401. </option>
  402. <option>
  403. <name>IccStaticDestr</name>
  404. <state>1</state>
  405. </option>
  406. <option>
  407. <name>IccCppInlineSemantics</name>
  408. <state>0</state>
  409. </option>
  410. <option>
  411. <name>IccCmsis</name>
  412. <state>1</state>
  413. </option>
  414. <option>
  415. <name>IccFloatSemantics</name>
  416. <state>0</state>
  417. </option>
  418. <option>
  419. <name>CCOptimizationNoSizeConstraints</name>
  420. <state>0</state>
  421. </option>
  422. <option>
  423. <name>CCNoLiteralPool</name>
  424. <state>0</state>
  425. </option>
  426. <option>
  427. <name>CCOptStrategySlave</name>
  428. <version>0</version>
  429. <state>0</state>
  430. </option>
  431. <option>
  432. <name>CCGuardCalls</name>
  433. <state>1</state>
  434. </option>
  435. </data>
  436. </settings>
  437. <settings>
  438. <name>AARM</name>
  439. <archiveVersion>2</archiveVersion>
  440. <data>
  441. <version>9</version>
  442. <wantNonLocal>1</wantNonLocal>
  443. <debug>1</debug>
  444. <option>
  445. <name>AObjPrefix</name>
  446. <state>1</state>
  447. </option>
  448. <option>
  449. <name>AEndian</name>
  450. <state>1</state>
  451. </option>
  452. <option>
  453. <name>ACaseSensitivity</name>
  454. <state>1</state>
  455. </option>
  456. <option>
  457. <name>MacroChars</name>
  458. <version>0</version>
  459. <state>0</state>
  460. </option>
  461. <option>
  462. <name>AWarnEnable</name>
  463. <state>0</state>
  464. </option>
  465. <option>
  466. <name>AWarnWhat</name>
  467. <state>0</state>
  468. </option>
  469. <option>
  470. <name>AWarnOne</name>
  471. <state />
  472. </option>
  473. <option>
  474. <name>AWarnRange1</name>
  475. <state />
  476. </option>
  477. <option>
  478. <name>AWarnRange2</name>
  479. <state />
  480. </option>
  481. <option>
  482. <name>ADebug</name>
  483. <state>1</state>
  484. </option>
  485. <option>
  486. <name>AltRegisterNames</name>
  487. <state>0</state>
  488. </option>
  489. <option>
  490. <name>ADefines</name>
  491. <state />
  492. </option>
  493. <option>
  494. <name>AList</name>
  495. <state>0</state>
  496. </option>
  497. <option>
  498. <name>AListHeader</name>
  499. <state>1</state>
  500. </option>
  501. <option>
  502. <name>AListing</name>
  503. <state>1</state>
  504. </option>
  505. <option>
  506. <name>Includes</name>
  507. <state>0</state>
  508. </option>
  509. <option>
  510. <name>MacDefs</name>
  511. <state>0</state>
  512. </option>
  513. <option>
  514. <name>MacExps</name>
  515. <state>1</state>
  516. </option>
  517. <option>
  518. <name>MacExec</name>
  519. <state>0</state>
  520. </option>
  521. <option>
  522. <name>OnlyAssed</name>
  523. <state>0</state>
  524. </option>
  525. <option>
  526. <name>MultiLine</name>
  527. <state>0</state>
  528. </option>
  529. <option>
  530. <name>PageLengthCheck</name>
  531. <state>0</state>
  532. </option>
  533. <option>
  534. <name>PageLength</name>
  535. <state>80</state>
  536. </option>
  537. <option>
  538. <name>TabSpacing</name>
  539. <state>8</state>
  540. </option>
  541. <option>
  542. <name>AXRef</name>
  543. <state>0</state>
  544. </option>
  545. <option>
  546. <name>AXRefDefines</name>
  547. <state>0</state>
  548. </option>
  549. <option>
  550. <name>AXRefInternal</name>
  551. <state>0</state>
  552. </option>
  553. <option>
  554. <name>AXRefDual</name>
  555. <state>0</state>
  556. </option>
  557. <option>
  558. <name>AProcessor</name>
  559. <state>1</state>
  560. </option>
  561. <option>
  562. <name>AFpuProcessor</name>
  563. <state>1</state>
  564. </option>
  565. <option>
  566. <name>AOutputFile</name>
  567. <state>$FILE_BNAME$.o</state>
  568. </option>
  569. <option>
  570. <name>AMultibyteSupport</name>
  571. <state>0</state>
  572. </option>
  573. <option>
  574. <name>ALimitErrorsCheck</name>
  575. <state>0</state>
  576. </option>
  577. <option>
  578. <name>ALimitErrorsEdit</name>
  579. <state>100</state>
  580. </option>
  581. <option>
  582. <name>AIgnoreStdInclude</name>
  583. <state>0</state>
  584. </option>
  585. <option>
  586. <name>AUserIncludes</name>
  587. <state />
  588. </option>
  589. <option>
  590. <name>AExtraOptionsCheckV2</name>
  591. <state>0</state>
  592. </option>
  593. <option>
  594. <name>AExtraOptionsV2</name>
  595. <state />
  596. </option>
  597. <option>
  598. <name>AsmNoLiteralPool</name>
  599. <state>0</state>
  600. </option>
  601. </data>
  602. </settings>
  603. <settings>
  604. <name>OBJCOPY</name>
  605. <archiveVersion>0</archiveVersion>
  606. <data>
  607. <version>1</version>
  608. <wantNonLocal>1</wantNonLocal>
  609. <debug>1</debug>
  610. <option>
  611. <name>OOCOutputFormat</name>
  612. <version>3</version>
  613. <state>0</state>
  614. </option>
  615. <option>
  616. <name>OCOutputOverride</name>
  617. <state>0</state>
  618. </option>
  619. <option>
  620. <name>OOCOutputFile</name>
  621. <state>project.srec</state>
  622. </option>
  623. <option>
  624. <name>OOCCommandLineProducer</name>
  625. <state>1</state>
  626. </option>
  627. <option>
  628. <name>OOCObjCopyEnable</name>
  629. <state>0</state>
  630. </option>
  631. </data>
  632. </settings>
  633. <settings>
  634. <name>CUSTOM</name>
  635. <archiveVersion>3</archiveVersion>
  636. <data>
  637. <extensions />
  638. <cmdline />
  639. <hasPrio>0</hasPrio>
  640. </data>
  641. </settings>
  642. <settings>
  643. <name>BICOMP</name>
  644. <archiveVersion>0</archiveVersion>
  645. <data />
  646. </settings>
  647. <settings>
  648. <name>BUILDACTION</name>
  649. <archiveVersion>1</archiveVersion>
  650. <data>
  651. <prebuild />
  652. <postbuild />
  653. </data>
  654. </settings>
  655. <settings>
  656. <name>ILINK</name>
  657. <archiveVersion>0</archiveVersion>
  658. <data>
  659. <version>16</version>
  660. <wantNonLocal>1</wantNonLocal>
  661. <debug>1</debug>
  662. <option>
  663. <name>IlinkLibIOConfig</name>
  664. <state>1</state>
  665. </option>
  666. <option>
  667. <name>XLinkMisraHandler</name>
  668. <state>0</state>
  669. </option>
  670. <option>
  671. <name>IlinkInputFileSlave</name>
  672. <state>0</state>
  673. </option>
  674. <option>
  675. <name>IlinkOutputFile</name>
  676. <state>GD32F450Z_EVAL.out</state>
  677. </option>
  678. <option>
  679. <name>IlinkDebugInfoEnable</name>
  680. <state>1</state>
  681. </option>
  682. <option>
  683. <name>IlinkKeepSymbols</name>
  684. <state />
  685. </option>
  686. <option>
  687. <name>IlinkRawBinaryFile</name>
  688. <state />
  689. </option>
  690. <option>
  691. <name>IlinkRawBinarySymbol</name>
  692. <state />
  693. </option>
  694. <option>
  695. <name>IlinkRawBinarySegment</name>
  696. <state />
  697. </option>
  698. <option>
  699. <name>IlinkRawBinaryAlign</name>
  700. <state />
  701. </option>
  702. <option>
  703. <name>IlinkDefines</name>
  704. <state />
  705. </option>
  706. <option>
  707. <name>IlinkConfigDefines</name>
  708. <state />
  709. </option>
  710. <option>
  711. <name>IlinkMapFile</name>
  712. <state>1</state>
  713. </option>
  714. <option>
  715. <name>IlinkLogFile</name>
  716. <state>1</state>
  717. </option>
  718. <option>
  719. <name>IlinkLogInitialization</name>
  720. <state>1</state>
  721. </option>
  722. <option>
  723. <name>IlinkLogModule</name>
  724. <state>1</state>
  725. </option>
  726. <option>
  727. <name>IlinkLogSection</name>
  728. <state>1</state>
  729. </option>
  730. <option>
  731. <name>IlinkLogVeneer</name>
  732. <state>1</state>
  733. </option>
  734. <option>
  735. <name>IlinkIcfOverride</name>
  736. <state>1</state>
  737. </option>
  738. <option>
  739. <name>IlinkIcfFile</name>
  740. <state>$PROJ_DIR$\gd32_rom.icf</state>
  741. </option>
  742. <option>
  743. <name>IlinkIcfFileSlave</name>
  744. <state />
  745. </option>
  746. <option>
  747. <name>IlinkEnableRemarks</name>
  748. <state>0</state>
  749. </option>
  750. <option>
  751. <name>IlinkSuppressDiags</name>
  752. <state />
  753. </option>
  754. <option>
  755. <name>IlinkTreatAsRem</name>
  756. <state />
  757. </option>
  758. <option>
  759. <name>IlinkTreatAsWarn</name>
  760. <state />
  761. </option>
  762. <option>
  763. <name>IlinkTreatAsErr</name>
  764. <state />
  765. </option>
  766. <option>
  767. <name>IlinkWarningsAreErrors</name>
  768. <state>0</state>
  769. </option>
  770. <option>
  771. <name>IlinkUseExtraOptions</name>
  772. <state>0</state>
  773. </option>
  774. <option>
  775. <name>IlinkExtraOptions</name>
  776. <state />
  777. </option>
  778. <option>
  779. <name>IlinkLowLevelInterfaceSlave</name>
  780. <state>1</state>
  781. </option>
  782. <option>
  783. <name>IlinkAutoLibEnable</name>
  784. <state>1</state>
  785. </option>
  786. <option>
  787. <name>IlinkAdditionalLibs</name>
  788. <state />
  789. </option>
  790. <option>
  791. <name>IlinkOverrideProgramEntryLabel</name>
  792. <state>0</state>
  793. </option>
  794. <option>
  795. <name>IlinkProgramEntryLabelSelect</name>
  796. <state>0</state>
  797. </option>
  798. <option>
  799. <name>IlinkProgramEntryLabel</name>
  800. <state>__iar_program_start</state>
  801. </option>
  802. <option>
  803. <name>DoFill</name>
  804. <state>0</state>
  805. </option>
  806. <option>
  807. <name>FillerByte</name>
  808. <state>0xFF</state>
  809. </option>
  810. <option>
  811. <name>FillerStart</name>
  812. <state>0x0</state>
  813. </option>
  814. <option>
  815. <name>FillerEnd</name>
  816. <state>0x0</state>
  817. </option>
  818. <option>
  819. <name>CrcSize</name>
  820. <version>0</version>
  821. <state>1</state>
  822. </option>
  823. <option>
  824. <name>CrcAlign</name>
  825. <state>1</state>
  826. </option>
  827. <option>
  828. <name>CrcPoly</name>
  829. <state>0x11021</state>
  830. </option>
  831. <option>
  832. <name>CrcCompl</name>
  833. <version>0</version>
  834. <state>0</state>
  835. </option>
  836. <option>
  837. <name>CrcBitOrder</name>
  838. <version>0</version>
  839. <state>0</state>
  840. </option>
  841. <option>
  842. <name>CrcInitialValue</name>
  843. <state>0x0</state>
  844. </option>
  845. <option>
  846. <name>DoCrc</name>
  847. <state>0</state>
  848. </option>
  849. <option>
  850. <name>IlinkBE8Slave</name>
  851. <state>1</state>
  852. </option>
  853. <option>
  854. <name>IlinkBufferedTerminalOutput</name>
  855. <state>1</state>
  856. </option>
  857. <option>
  858. <name>IlinkStdoutInterfaceSlave</name>
  859. <state>1</state>
  860. </option>
  861. <option>
  862. <name>CrcFullSize</name>
  863. <state>0</state>
  864. </option>
  865. <option>
  866. <name>IlinkIElfToolPostProcess</name>
  867. <state>0</state>
  868. </option>
  869. <option>
  870. <name>IlinkLogAutoLibSelect</name>
  871. <state>1</state>
  872. </option>
  873. <option>
  874. <name>IlinkLogRedirSymbols</name>
  875. <state>1</state>
  876. </option>
  877. <option>
  878. <name>IlinkLogUnusedFragments</name>
  879. <state>1</state>
  880. </option>
  881. <option>
  882. <name>IlinkCrcReverseByteOrder</name>
  883. <state>0</state>
  884. </option>
  885. <option>
  886. <name>IlinkCrcUseAsInput</name>
  887. <state>1</state>
  888. </option>
  889. <option>
  890. <name>IlinkOptInline</name>
  891. <state>0</state>
  892. </option>
  893. <option>
  894. <name>IlinkOptExceptionsAllow</name>
  895. <state>1</state>
  896. </option>
  897. <option>
  898. <name>IlinkOptExceptionsForce</name>
  899. <state>0</state>
  900. </option>
  901. <option>
  902. <name>IlinkCmsis</name>
  903. <state>1</state>
  904. </option>
  905. <option>
  906. <name>IlinkOptMergeDuplSections</name>
  907. <state>0</state>
  908. </option>
  909. <option>
  910. <name>IlinkOptUseVfe</name>
  911. <state>1</state>
  912. </option>
  913. <option>
  914. <name>IlinkOptForceVfe</name>
  915. <state>0</state>
  916. </option>
  917. <option>
  918. <name>IlinkStackAnalysisEnable</name>
  919. <state>0</state>
  920. </option>
  921. <option>
  922. <name>IlinkStackControlFile</name>
  923. <state />
  924. </option>
  925. <option>
  926. <name>IlinkStackCallGraphFile</name>
  927. <state />
  928. </option>
  929. <option>
  930. <name>CrcAlgorithm</name>
  931. <version>0</version>
  932. <state>1</state>
  933. </option>
  934. <option>
  935. <name>CrcUnitSize</name>
  936. <version>0</version>
  937. <state>0</state>
  938. </option>
  939. <option>
  940. <name>IlinkThreadsSlave</name>
  941. <state>1</state>
  942. </option>
  943. </data>
  944. </settings>
  945. <settings>
  946. <name>IARCHIVE</name>
  947. <archiveVersion>0</archiveVersion>
  948. <data>
  949. <version>0</version>
  950. <wantNonLocal>1</wantNonLocal>
  951. <debug>1</debug>
  952. <option>
  953. <name>IarchiveInputs</name>
  954. <state />
  955. </option>
  956. <option>
  957. <name>IarchiveOverride</name>
  958. <state>0</state>
  959. </option>
  960. <option>
  961. <name>IarchiveOutput</name>
  962. <state>###Unitialized###</state>
  963. </option>
  964. </data>
  965. </settings>
  966. <settings>
  967. <name>BILINK</name>
  968. <archiveVersion>0</archiveVersion>
  969. <data />
  970. </settings>
  971. </configuration>
  972. <configuration>
  973. <name>Release</name>
  974. <toolchain>
  975. <name>ARM</name>
  976. </toolchain>
  977. <debug>0</debug>
  978. <settings>
  979. <name>General</name>
  980. <archiveVersion>3</archiveVersion>
  981. <data>
  982. <version>22</version>
  983. <wantNonLocal>1</wantNonLocal>
  984. <debug>0</debug>
  985. <option>
  986. <name>ExePath</name>
  987. <state>Release\Exe</state>
  988. </option>
  989. <option>
  990. <name>ObjPath</name>
  991. <state>Release\Obj</state>
  992. </option>
  993. <option>
  994. <name>ListPath</name>
  995. <state>Release\List</state>
  996. </option>
  997. <option>
  998. <name>Variant</name>
  999. <version>21</version>
  1000. <state>0</state>
  1001. </option>
  1002. <option>
  1003. <name>GEndianMode</name>
  1004. <state>0</state>
  1005. </option>
  1006. <option>
  1007. <name>Input variant</name>
  1008. <version>3</version>
  1009. <state>0</state>
  1010. </option>
  1011. <option>
  1012. <name>Input description</name>
  1013. <state />
  1014. </option>
  1015. <option>
  1016. <name>Output variant</name>
  1017. <version>2</version>
  1018. <state>0</state>
  1019. </option>
  1020. <option>
  1021. <name>Output description</name>
  1022. <state />
  1023. </option>
  1024. <option>
  1025. <name>GOutputBinary</name>
  1026. <state>0</state>
  1027. </option>
  1028. <option>
  1029. <name>FPU</name>
  1030. <version>5</version>
  1031. <state>0</state>
  1032. </option>
  1033. <option>
  1034. <name>OGCoreOrChip</name>
  1035. <state>0</state>
  1036. </option>
  1037. <option>
  1038. <name>GRuntimeLibSelect</name>
  1039. <version>0</version>
  1040. <state>1</state>
  1041. </option>
  1042. <option>
  1043. <name>GRuntimeLibSelectSlave</name>
  1044. <version>0</version>
  1045. <state>1</state>
  1046. </option>
  1047. <option>
  1048. <name>RTDescription</name>
  1049. <state />
  1050. </option>
  1051. <option>
  1052. <name>OGProductVersion</name>
  1053. <state>7.40.2.8567</state>
  1054. </option>
  1055. <option>
  1056. <name>OGLastSavedByProductVersion</name>
  1057. <state />
  1058. </option>
  1059. <option>
  1060. <name>GeneralEnableMisra</name>
  1061. <state>0</state>
  1062. </option>
  1063. <option>
  1064. <name>GeneralMisraVerbose</name>
  1065. <state>0</state>
  1066. </option>
  1067. <option>
  1068. <name>OGChipSelectEditMenu</name>
  1069. <state />
  1070. </option>
  1071. <option>
  1072. <name>GenLowLevelInterface</name>
  1073. <state>0</state>
  1074. </option>
  1075. <option>
  1076. <name>GEndianModeBE</name>
  1077. <state>0</state>
  1078. </option>
  1079. <option>
  1080. <name>OGBufferedTerminalOutput</name>
  1081. <state>0</state>
  1082. </option>
  1083. <option>
  1084. <name>GenStdoutInterface</name>
  1085. <state>0</state>
  1086. </option>
  1087. <option>
  1088. <name>GeneralMisraRules98</name>
  1089. <version>0</version>
  1090. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  1091. </option>
  1092. <option>
  1093. <name>GeneralMisraVer</name>
  1094. <state>0</state>
  1095. </option>
  1096. <option>
  1097. <name>GeneralMisraRules04</name>
  1098. <version>0</version>
  1099. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  1100. </option>
  1101. <option>
  1102. <name>RTConfigPath2</name>
  1103. <state />
  1104. </option>
  1105. <option>
  1106. <name>GFPUCoreSlave</name>
  1107. <version>21</version>
  1108. <state>1</state>
  1109. </option>
  1110. <option>
  1111. <name>GBECoreSlave</name>
  1112. <version>21</version>
  1113. <state>1</state>
  1114. </option>
  1115. <option>
  1116. <name>OGUseCmsis</name>
  1117. <state>0</state>
  1118. </option>
  1119. <option>
  1120. <name>OGUseCmsisDspLib</name>
  1121. <state>0</state>
  1122. </option>
  1123. <option>
  1124. <name>GRuntimeLibThreads</name>
  1125. <state>0</state>
  1126. </option>
  1127. </data>
  1128. </settings>
  1129. <settings>
  1130. <name>ICCARM</name>
  1131. <archiveVersion>2</archiveVersion>
  1132. <data>
  1133. <version>31</version>
  1134. <wantNonLocal>1</wantNonLocal>
  1135. <debug>0</debug>
  1136. <option>
  1137. <name>CCDefines</name>
  1138. <state>NDEBUG</state>
  1139. <state>USE_STDPERIPH_DRIVER</state>
  1140. <state>GD32F4XX</state>
  1141. <state>RT_USING_DLIBC</state>
  1142. <state>_DLIB_FILE_DESCRIPTOR</state>
  1143. </option>
  1144. <option>
  1145. <name>CCPreprocFile</name>
  1146. <state>0</state>
  1147. </option>
  1148. <option>
  1149. <name>CCPreprocComments</name>
  1150. <state>0</state>
  1151. </option>
  1152. <option>
  1153. <name>CCPreprocLine</name>
  1154. <state>0</state>
  1155. </option>
  1156. <option>
  1157. <name>CCListCFile</name>
  1158. <state>0</state>
  1159. </option>
  1160. <option>
  1161. <name>CCListCMnemonics</name>
  1162. <state>0</state>
  1163. </option>
  1164. <option>
  1165. <name>CCListCMessages</name>
  1166. <state>0</state>
  1167. </option>
  1168. <option>
  1169. <name>CCListAssFile</name>
  1170. <state>0</state>
  1171. </option>
  1172. <option>
  1173. <name>CCListAssSource</name>
  1174. <state>0</state>
  1175. </option>
  1176. <option>
  1177. <name>CCEnableRemarks</name>
  1178. <state>0</state>
  1179. </option>
  1180. <option>
  1181. <name>CCDiagSuppress</name>
  1182. <state />
  1183. </option>
  1184. <option>
  1185. <name>CCDiagRemark</name>
  1186. <state />
  1187. </option>
  1188. <option>
  1189. <name>CCDiagWarning</name>
  1190. <state />
  1191. </option>
  1192. <option>
  1193. <name>CCDiagError</name>
  1194. <state />
  1195. </option>
  1196. <option>
  1197. <name>CCObjPrefix</name>
  1198. <state>1</state>
  1199. </option>
  1200. <option>
  1201. <name>CCAllowList</name>
  1202. <version>1</version>
  1203. <state>11111110</state>
  1204. </option>
  1205. <option>
  1206. <name>CCDebugInfo</name>
  1207. <state>0</state>
  1208. </option>
  1209. <option>
  1210. <name>IEndianMode</name>
  1211. <state>1</state>
  1212. </option>
  1213. <option>
  1214. <name>IProcessor</name>
  1215. <state>1</state>
  1216. </option>
  1217. <option>
  1218. <name>IExtraOptionsCheck</name>
  1219. <state>0</state>
  1220. </option>
  1221. <option>
  1222. <name>IExtraOptions</name>
  1223. <state />
  1224. </option>
  1225. <option>
  1226. <name>CCLangConformance</name>
  1227. <state>0</state>
  1228. </option>
  1229. <option>
  1230. <name>CCSignedPlainChar</name>
  1231. <state>1</state>
  1232. </option>
  1233. <option>
  1234. <name>CCRequirePrototypes</name>
  1235. <state>0</state>
  1236. </option>
  1237. <option>
  1238. <name>CCMultibyteSupport</name>
  1239. <state>0</state>
  1240. </option>
  1241. <option>
  1242. <name>CCDiagWarnAreErr</name>
  1243. <state>0</state>
  1244. </option>
  1245. <option>
  1246. <name>CCCompilerRuntimeInfo</name>
  1247. <state>0</state>
  1248. </option>
  1249. <option>
  1250. <name>IFpuProcessor</name>
  1251. <state>1</state>
  1252. </option>
  1253. <option>
  1254. <name>OutputFile</name>
  1255. <state />
  1256. </option>
  1257. <option>
  1258. <name>CCLibConfigHeader</name>
  1259. <state>1</state>
  1260. </option>
  1261. <option>
  1262. <name>PreInclude</name>
  1263. <state />
  1264. </option>
  1265. <option>
  1266. <name>CompilerMisraOverride</name>
  1267. <state>0</state>
  1268. </option>
  1269. <option>
  1270. <name>CCIncludePath2</name>
  1271. <state />
  1272. <state>$PROJ_DIR$\..\..\components\libc\compilers\dlib</state>
  1273. <state>$PROJ_DIR$\..\..\include</state>
  1274. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\netif</state>
  1275. <state>$PROJ_DIR$\Libraries\CMSIS\GD\GD32F4xx\Include</state>
  1276. <state>$PROJ_DIR$\..\..\libcpu\arm\common</state>
  1277. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\net</state>
  1278. <state>$PROJ_DIR$\..\..\components\drivers\include</state>
  1279. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs</state>
  1280. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src</state>
  1281. <state>$PROJ_DIR$\drivers</state>
  1282. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\ipv4</state>
  1283. <state>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Include</state>
  1284. <state>$PROJ_DIR$\.</state>
  1285. <state>$PROJ_DIR$\..\..\libcpu\arm\cortex-m4</state>
  1286. <state>$PROJ_DIR$\..\..\components\dfs\include</state>
  1287. <state>$PROJ_DIR$\Libraries\CMSIS</state>
  1288. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\net\socket</state>
  1289. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include</state>
  1290. <state>$PROJ_DIR$\applications</state>
  1291. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\net\select</state>
  1292. <state>$PROJ_DIR$\..\..\components\finsh</state>
  1293. <state>$PROJ_DIR$\..\..\components\dfs\filesystems\elmfat</state>
  1294. <state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\arch\include</state>
  1295. </option>
  1296. <option>
  1297. <name>CCStdIncCheck</name>
  1298. <state>0</state>
  1299. </option>
  1300. <option>
  1301. <name>CCCodeSection</name>
  1302. <state>.text</state>
  1303. </option>
  1304. <option>
  1305. <name>IInterwork2</name>
  1306. <state>0</state>
  1307. </option>
  1308. <option>
  1309. <name>IProcessorMode2</name>
  1310. <state>1</state>
  1311. </option>
  1312. <option>
  1313. <name>CCOptLevel</name>
  1314. <state>3</state>
  1315. </option>
  1316. <option>
  1317. <name>CCOptStrategy</name>
  1318. <version>0</version>
  1319. <state>0</state>
  1320. </option>
  1321. <option>
  1322. <name>CCOptLevelSlave</name>
  1323. <state>1</state>
  1324. </option>
  1325. <option>
  1326. <name>CompilerMisraRules98</name>
  1327. <version>0</version>
  1328. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  1329. </option>
  1330. <option>
  1331. <name>CompilerMisraRules04</name>
  1332. <version>0</version>
  1333. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  1334. </option>
  1335. <option>
  1336. <name>CCPosIndRopi</name>
  1337. <state>0</state>
  1338. </option>
  1339. <option>
  1340. <name>CCPosIndRwpi</name>
  1341. <state>0</state>
  1342. </option>
  1343. <option>
  1344. <name>CCPosIndNoDynInit</name>
  1345. <state>0</state>
  1346. </option>
  1347. <option>
  1348. <name>IccLang</name>
  1349. <state>0</state>
  1350. </option>
  1351. <option>
  1352. <name>IccCDialect</name>
  1353. <state>1</state>
  1354. </option>
  1355. <option>
  1356. <name>IccAllowVLA</name>
  1357. <state>0</state>
  1358. </option>
  1359. <option>
  1360. <name>IccCppDialect</name>
  1361. <state>1</state>
  1362. </option>
  1363. <option>
  1364. <name>IccExceptions</name>
  1365. <state>1</state>
  1366. </option>
  1367. <option>
  1368. <name>IccRTTI</name>
  1369. <state>1</state>
  1370. </option>
  1371. <option>
  1372. <name>IccStaticDestr</name>
  1373. <state>1</state>
  1374. </option>
  1375. <option>
  1376. <name>IccCppInlineSemantics</name>
  1377. <state>0</state>
  1378. </option>
  1379. <option>
  1380. <name>IccCmsis</name>
  1381. <state>1</state>
  1382. </option>
  1383. <option>
  1384. <name>IccFloatSemantics</name>
  1385. <state>0</state>
  1386. </option>
  1387. <option>
  1388. <name>CCOptimizationNoSizeConstraints</name>
  1389. <state>0</state>
  1390. </option>
  1391. <option>
  1392. <name>CCNoLiteralPool</name>
  1393. <state>0</state>
  1394. </option>
  1395. <option>
  1396. <name>CCOptStrategySlave</name>
  1397. <version>0</version>
  1398. <state>0</state>
  1399. </option>
  1400. <option>
  1401. <name>CCGuardCalls</name>
  1402. <state>1</state>
  1403. </option>
  1404. </data>
  1405. </settings>
  1406. <settings>
  1407. <name>AARM</name>
  1408. <archiveVersion>2</archiveVersion>
  1409. <data>
  1410. <version>9</version>
  1411. <wantNonLocal>1</wantNonLocal>
  1412. <debug>0</debug>
  1413. <option>
  1414. <name>AObjPrefix</name>
  1415. <state>1</state>
  1416. </option>
  1417. <option>
  1418. <name>AEndian</name>
  1419. <state>1</state>
  1420. </option>
  1421. <option>
  1422. <name>ACaseSensitivity</name>
  1423. <state>1</state>
  1424. </option>
  1425. <option>
  1426. <name>MacroChars</name>
  1427. <version>0</version>
  1428. <state>0</state>
  1429. </option>
  1430. <option>
  1431. <name>AWarnEnable</name>
  1432. <state>0</state>
  1433. </option>
  1434. <option>
  1435. <name>AWarnWhat</name>
  1436. <state>0</state>
  1437. </option>
  1438. <option>
  1439. <name>AWarnOne</name>
  1440. <state />
  1441. </option>
  1442. <option>
  1443. <name>AWarnRange1</name>
  1444. <state />
  1445. </option>
  1446. <option>
  1447. <name>AWarnRange2</name>
  1448. <state />
  1449. </option>
  1450. <option>
  1451. <name>ADebug</name>
  1452. <state>0</state>
  1453. </option>
  1454. <option>
  1455. <name>AltRegisterNames</name>
  1456. <state>0</state>
  1457. </option>
  1458. <option>
  1459. <name>ADefines</name>
  1460. <state />
  1461. </option>
  1462. <option>
  1463. <name>AList</name>
  1464. <state>0</state>
  1465. </option>
  1466. <option>
  1467. <name>AListHeader</name>
  1468. <state>1</state>
  1469. </option>
  1470. <option>
  1471. <name>AListing</name>
  1472. <state>1</state>
  1473. </option>
  1474. <option>
  1475. <name>Includes</name>
  1476. <state>0</state>
  1477. </option>
  1478. <option>
  1479. <name>MacDefs</name>
  1480. <state>0</state>
  1481. </option>
  1482. <option>
  1483. <name>MacExps</name>
  1484. <state>1</state>
  1485. </option>
  1486. <option>
  1487. <name>MacExec</name>
  1488. <state>0</state>
  1489. </option>
  1490. <option>
  1491. <name>OnlyAssed</name>
  1492. <state>0</state>
  1493. </option>
  1494. <option>
  1495. <name>MultiLine</name>
  1496. <state>0</state>
  1497. </option>
  1498. <option>
  1499. <name>PageLengthCheck</name>
  1500. <state>0</state>
  1501. </option>
  1502. <option>
  1503. <name>PageLength</name>
  1504. <state>80</state>
  1505. </option>
  1506. <option>
  1507. <name>TabSpacing</name>
  1508. <state>8</state>
  1509. </option>
  1510. <option>
  1511. <name>AXRef</name>
  1512. <state>0</state>
  1513. </option>
  1514. <option>
  1515. <name>AXRefDefines</name>
  1516. <state>0</state>
  1517. </option>
  1518. <option>
  1519. <name>AXRefInternal</name>
  1520. <state>0</state>
  1521. </option>
  1522. <option>
  1523. <name>AXRefDual</name>
  1524. <state>0</state>
  1525. </option>
  1526. <option>
  1527. <name>AProcessor</name>
  1528. <state>1</state>
  1529. </option>
  1530. <option>
  1531. <name>AFpuProcessor</name>
  1532. <state>1</state>
  1533. </option>
  1534. <option>
  1535. <name>AOutputFile</name>
  1536. <state />
  1537. </option>
  1538. <option>
  1539. <name>AMultibyteSupport</name>
  1540. <state>0</state>
  1541. </option>
  1542. <option>
  1543. <name>ALimitErrorsCheck</name>
  1544. <state>0</state>
  1545. </option>
  1546. <option>
  1547. <name>ALimitErrorsEdit</name>
  1548. <state>100</state>
  1549. </option>
  1550. <option>
  1551. <name>AIgnoreStdInclude</name>
  1552. <state>0</state>
  1553. </option>
  1554. <option>
  1555. <name>AUserIncludes</name>
  1556. <state />
  1557. </option>
  1558. <option>
  1559. <name>AExtraOptionsCheckV2</name>
  1560. <state>0</state>
  1561. </option>
  1562. <option>
  1563. <name>AExtraOptionsV2</name>
  1564. <state />
  1565. </option>
  1566. <option>
  1567. <name>AsmNoLiteralPool</name>
  1568. <state>0</state>
  1569. </option>
  1570. </data>
  1571. </settings>
  1572. <settings>
  1573. <name>OBJCOPY</name>
  1574. <archiveVersion>0</archiveVersion>
  1575. <data>
  1576. <version>1</version>
  1577. <wantNonLocal>1</wantNonLocal>
  1578. <debug>0</debug>
  1579. <option>
  1580. <name>OOCOutputFormat</name>
  1581. <version>3</version>
  1582. <state>0</state>
  1583. </option>
  1584. <option>
  1585. <name>OCOutputOverride</name>
  1586. <state>0</state>
  1587. </option>
  1588. <option>
  1589. <name>OOCOutputFile</name>
  1590. <state />
  1591. </option>
  1592. <option>
  1593. <name>OOCCommandLineProducer</name>
  1594. <state>1</state>
  1595. </option>
  1596. <option>
  1597. <name>OOCObjCopyEnable</name>
  1598. <state>0</state>
  1599. </option>
  1600. </data>
  1601. </settings>
  1602. <settings>
  1603. <name>CUSTOM</name>
  1604. <archiveVersion>3</archiveVersion>
  1605. <data>
  1606. <extensions />
  1607. <cmdline />
  1608. <hasPrio>0</hasPrio>
  1609. </data>
  1610. </settings>
  1611. <settings>
  1612. <name>BICOMP</name>
  1613. <archiveVersion>0</archiveVersion>
  1614. <data />
  1615. </settings>
  1616. <settings>
  1617. <name>BUILDACTION</name>
  1618. <archiveVersion>1</archiveVersion>
  1619. <data>
  1620. <prebuild />
  1621. <postbuild />
  1622. </data>
  1623. </settings>
  1624. <settings>
  1625. <name>ILINK</name>
  1626. <archiveVersion>0</archiveVersion>
  1627. <data>
  1628. <version>16</version>
  1629. <wantNonLocal>1</wantNonLocal>
  1630. <debug>0</debug>
  1631. <option>
  1632. <name>IlinkLibIOConfig</name>
  1633. <state>1</state>
  1634. </option>
  1635. <option>
  1636. <name>XLinkMisraHandler</name>
  1637. <state>0</state>
  1638. </option>
  1639. <option>
  1640. <name>IlinkInputFileSlave</name>
  1641. <state>0</state>
  1642. </option>
  1643. <option>
  1644. <name>IlinkOutputFile</name>
  1645. <state>###Unitialized###</state>
  1646. </option>
  1647. <option>
  1648. <name>IlinkDebugInfoEnable</name>
  1649. <state>1</state>
  1650. </option>
  1651. <option>
  1652. <name>IlinkKeepSymbols</name>
  1653. <state />
  1654. </option>
  1655. <option>
  1656. <name>IlinkRawBinaryFile</name>
  1657. <state />
  1658. </option>
  1659. <option>
  1660. <name>IlinkRawBinarySymbol</name>
  1661. <state />
  1662. </option>
  1663. <option>
  1664. <name>IlinkRawBinarySegment</name>
  1665. <state />
  1666. </option>
  1667. <option>
  1668. <name>IlinkRawBinaryAlign</name>
  1669. <state />
  1670. </option>
  1671. <option>
  1672. <name>IlinkDefines</name>
  1673. <state />
  1674. </option>
  1675. <option>
  1676. <name>IlinkConfigDefines</name>
  1677. <state />
  1678. </option>
  1679. <option>
  1680. <name>IlinkMapFile</name>
  1681. <state>0</state>
  1682. </option>
  1683. <option>
  1684. <name>IlinkLogFile</name>
  1685. <state>0</state>
  1686. </option>
  1687. <option>
  1688. <name>IlinkLogInitialization</name>
  1689. <state>0</state>
  1690. </option>
  1691. <option>
  1692. <name>IlinkLogModule</name>
  1693. <state>0</state>
  1694. </option>
  1695. <option>
  1696. <name>IlinkLogSection</name>
  1697. <state>0</state>
  1698. </option>
  1699. <option>
  1700. <name>IlinkLogVeneer</name>
  1701. <state>0</state>
  1702. </option>
  1703. <option>
  1704. <name>IlinkIcfOverride</name>
  1705. <state>0</state>
  1706. </option>
  1707. <option>
  1708. <name>IlinkIcfFile</name>
  1709. <state>lnk0t.icf</state>
  1710. </option>
  1711. <option>
  1712. <name>IlinkIcfFileSlave</name>
  1713. <state />
  1714. </option>
  1715. <option>
  1716. <name>IlinkEnableRemarks</name>
  1717. <state>0</state>
  1718. </option>
  1719. <option>
  1720. <name>IlinkSuppressDiags</name>
  1721. <state />
  1722. </option>
  1723. <option>
  1724. <name>IlinkTreatAsRem</name>
  1725. <state />
  1726. </option>
  1727. <option>
  1728. <name>IlinkTreatAsWarn</name>
  1729. <state />
  1730. </option>
  1731. <option>
  1732. <name>IlinkTreatAsErr</name>
  1733. <state />
  1734. </option>
  1735. <option>
  1736. <name>IlinkWarningsAreErrors</name>
  1737. <state>0</state>
  1738. </option>
  1739. <option>
  1740. <name>IlinkUseExtraOptions</name>
  1741. <state>0</state>
  1742. </option>
  1743. <option>
  1744. <name>IlinkExtraOptions</name>
  1745. <state />
  1746. </option>
  1747. <option>
  1748. <name>IlinkLowLevelInterfaceSlave</name>
  1749. <state>1</state>
  1750. </option>
  1751. <option>
  1752. <name>IlinkAutoLibEnable</name>
  1753. <state>1</state>
  1754. </option>
  1755. <option>
  1756. <name>IlinkAdditionalLibs</name>
  1757. <state />
  1758. </option>
  1759. <option>
  1760. <name>IlinkOverrideProgramEntryLabel</name>
  1761. <state>0</state>
  1762. </option>
  1763. <option>
  1764. <name>IlinkProgramEntryLabelSelect</name>
  1765. <state>0</state>
  1766. </option>
  1767. <option>
  1768. <name>IlinkProgramEntryLabel</name>
  1769. <state />
  1770. </option>
  1771. <option>
  1772. <name>DoFill</name>
  1773. <state>0</state>
  1774. </option>
  1775. <option>
  1776. <name>FillerByte</name>
  1777. <state>0xFF</state>
  1778. </option>
  1779. <option>
  1780. <name>FillerStart</name>
  1781. <state>0x0</state>
  1782. </option>
  1783. <option>
  1784. <name>FillerEnd</name>
  1785. <state>0x0</state>
  1786. </option>
  1787. <option>
  1788. <name>CrcSize</name>
  1789. <version>0</version>
  1790. <state>1</state>
  1791. </option>
  1792. <option>
  1793. <name>CrcAlign</name>
  1794. <state>1</state>
  1795. </option>
  1796. <option>
  1797. <name>CrcPoly</name>
  1798. <state>0x11021</state>
  1799. </option>
  1800. <option>
  1801. <name>CrcCompl</name>
  1802. <version>0</version>
  1803. <state>0</state>
  1804. </option>
  1805. <option>
  1806. <name>CrcBitOrder</name>
  1807. <version>0</version>
  1808. <state>0</state>
  1809. </option>
  1810. <option>
  1811. <name>CrcInitialValue</name>
  1812. <state>0x0</state>
  1813. </option>
  1814. <option>
  1815. <name>DoCrc</name>
  1816. <state>0</state>
  1817. </option>
  1818. <option>
  1819. <name>IlinkBE8Slave</name>
  1820. <state>1</state>
  1821. </option>
  1822. <option>
  1823. <name>IlinkBufferedTerminalOutput</name>
  1824. <state>1</state>
  1825. </option>
  1826. <option>
  1827. <name>IlinkStdoutInterfaceSlave</name>
  1828. <state>1</state>
  1829. </option>
  1830. <option>
  1831. <name>CrcFullSize</name>
  1832. <state>0</state>
  1833. </option>
  1834. <option>
  1835. <name>IlinkIElfToolPostProcess</name>
  1836. <state>0</state>
  1837. </option>
  1838. <option>
  1839. <name>IlinkLogAutoLibSelect</name>
  1840. <state>0</state>
  1841. </option>
  1842. <option>
  1843. <name>IlinkLogRedirSymbols</name>
  1844. <state>0</state>
  1845. </option>
  1846. <option>
  1847. <name>IlinkLogUnusedFragments</name>
  1848. <state>0</state>
  1849. </option>
  1850. <option>
  1851. <name>IlinkCrcReverseByteOrder</name>
  1852. <state>0</state>
  1853. </option>
  1854. <option>
  1855. <name>IlinkCrcUseAsInput</name>
  1856. <state>1</state>
  1857. </option>
  1858. <option>
  1859. <name>IlinkOptInline</name>
  1860. <state>1</state>
  1861. </option>
  1862. <option>
  1863. <name>IlinkOptExceptionsAllow</name>
  1864. <state>1</state>
  1865. </option>
  1866. <option>
  1867. <name>IlinkOptExceptionsForce</name>
  1868. <state>0</state>
  1869. </option>
  1870. <option>
  1871. <name>IlinkCmsis</name>
  1872. <state>1</state>
  1873. </option>
  1874. <option>
  1875. <name>IlinkOptMergeDuplSections</name>
  1876. <state>0</state>
  1877. </option>
  1878. <option>
  1879. <name>IlinkOptUseVfe</name>
  1880. <state>1</state>
  1881. </option>
  1882. <option>
  1883. <name>IlinkOptForceVfe</name>
  1884. <state>0</state>
  1885. </option>
  1886. <option>
  1887. <name>IlinkStackAnalysisEnable</name>
  1888. <state>0</state>
  1889. </option>
  1890. <option>
  1891. <name>IlinkStackControlFile</name>
  1892. <state />
  1893. </option>
  1894. <option>
  1895. <name>IlinkStackCallGraphFile</name>
  1896. <state />
  1897. </option>
  1898. <option>
  1899. <name>CrcAlgorithm</name>
  1900. <version>0</version>
  1901. <state>1</state>
  1902. </option>
  1903. <option>
  1904. <name>CrcUnitSize</name>
  1905. <version>0</version>
  1906. <state>0</state>
  1907. </option>
  1908. <option>
  1909. <name>IlinkThreadsSlave</name>
  1910. <state>1</state>
  1911. </option>
  1912. </data>
  1913. </settings>
  1914. <settings>
  1915. <name>IARCHIVE</name>
  1916. <archiveVersion>0</archiveVersion>
  1917. <data>
  1918. <version>0</version>
  1919. <wantNonLocal>1</wantNonLocal>
  1920. <debug>0</debug>
  1921. <option>
  1922. <name>IarchiveInputs</name>
  1923. <state />
  1924. </option>
  1925. <option>
  1926. <name>IarchiveOverride</name>
  1927. <state>0</state>
  1928. </option>
  1929. <option>
  1930. <name>IarchiveOutput</name>
  1931. <state>###Unitialized###</state>
  1932. </option>
  1933. </data>
  1934. </settings>
  1935. <settings>
  1936. <name>BILINK</name>
  1937. <archiveVersion>0</archiveVersion>
  1938. <data />
  1939. </settings>
  1940. </configuration>
  1941. <group>
  1942. <name>Applications</name>
  1943. <file>
  1944. <name>$PROJ_DIR$\applications\main.c</name>
  1945. </file>
  1946. </group>
  1947. <group>
  1948. <name>Drivers</name>
  1949. <file>
  1950. <name>$PROJ_DIR$\drivers\board.c</name>
  1951. </file>
  1952. <file>
  1953. <name>$PROJ_DIR$\drivers\drv_usart.c</name>
  1954. </file>
  1955. <file>
  1956. <name>$PROJ_DIR$\drivers\drv_exmc_sdram.c</name>
  1957. </file>
  1958. <file>
  1959. <name>$PROJ_DIR$\drivers\drv_enet.c</name>
  1960. </file>
  1961. <file>
  1962. <name>$PROJ_DIR$\drivers\synopsys_emac.c</name>
  1963. </file>
  1964. </group>
  1965. <group>
  1966. <name>GD32_Lib</name>
  1967. <file>
  1968. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_adc.c</name>
  1969. </file>
  1970. <file>
  1971. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_can.c</name>
  1972. </file>
  1973. <file>
  1974. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_crc.c</name>
  1975. </file>
  1976. <file>
  1977. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_ctc.c</name>
  1978. </file>
  1979. <file>
  1980. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_dac.c</name>
  1981. </file>
  1982. <file>
  1983. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_dbg.c</name>
  1984. </file>
  1985. <file>
  1986. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_dci.c</name>
  1987. </file>
  1988. <file>
  1989. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_dma.c</name>
  1990. </file>
  1991. <file>
  1992. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_enet.c</name>
  1993. </file>
  1994. <file>
  1995. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_exmc.c</name>
  1996. </file>
  1997. <file>
  1998. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_exti.c</name>
  1999. </file>
  2000. <file>
  2001. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_fmc.c</name>
  2002. </file>
  2003. <file>
  2004. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_fwdgt.c</name>
  2005. </file>
  2006. <file>
  2007. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_gpio.c</name>
  2008. </file>
  2009. <file>
  2010. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_i2c.c</name>
  2011. </file>
  2012. <file>
  2013. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_ipa.c</name>
  2014. </file>
  2015. <file>
  2016. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_iref.c</name>
  2017. </file>
  2018. <file>
  2019. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_misc.c</name>
  2020. </file>
  2021. <file>
  2022. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_pmu.c</name>
  2023. </file>
  2024. <file>
  2025. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_rcu.c</name>
  2026. </file>
  2027. <file>
  2028. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_rtc.c</name>
  2029. </file>
  2030. <file>
  2031. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_sdio.c</name>
  2032. </file>
  2033. <file>
  2034. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_spi.c</name>
  2035. </file>
  2036. <file>
  2037. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_syscfg.c</name>
  2038. </file>
  2039. <file>
  2040. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_timer.c</name>
  2041. </file>
  2042. <file>
  2043. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_tli.c</name>
  2044. </file>
  2045. <file>
  2046. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_trng.c</name>
  2047. </file>
  2048. <file>
  2049. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_usart.c</name>
  2050. </file>
  2051. <file>
  2052. <name>$PROJ_DIR$\Libraries\GD32F4xx_standard_peripheral\Source\gd32f4xx_wwdgt.c</name>
  2053. </file>
  2054. <file>
  2055. <name>$PROJ_DIR$\Libraries\CMSIS\GD\GD32F4xx\Source\system_gd32f4xx.c</name>
  2056. </file>
  2057. <file>
  2058. <name>$PROJ_DIR$\Libraries\CMSIS\GD\GD32F4xx\Source\IAR\startup_gd32f4xx.s</name>
  2059. </file>
  2060. </group>
  2061. <group>
  2062. <name>Kernel</name>
  2063. <file>
  2064. <name>$PROJ_DIR$\..\..\src\clock.c</name>
  2065. </file>
  2066. <file>
  2067. <name>$PROJ_DIR$\..\..\src\components.c</name>
  2068. </file>
  2069. <file>
  2070. <name>$PROJ_DIR$\..\..\src\device.c</name>
  2071. </file>
  2072. <file>
  2073. <name>$PROJ_DIR$\..\..\src\idle.c</name>
  2074. </file>
  2075. <file>
  2076. <name>$PROJ_DIR$\..\..\src\ipc.c</name>
  2077. </file>
  2078. <file>
  2079. <name>$PROJ_DIR$\..\..\src\irq.c</name>
  2080. </file>
  2081. <file>
  2082. <name>$PROJ_DIR$\..\..\src\kservice.c</name>
  2083. </file>
  2084. <file>
  2085. <name>$PROJ_DIR$\..\..\src\mem.c</name>
  2086. </file>
  2087. <file>
  2088. <name>$PROJ_DIR$\..\..\src\mempool.c</name>
  2089. </file>
  2090. <file>
  2091. <name>$PROJ_DIR$\..\..\src\object.c</name>
  2092. </file>
  2093. <file>
  2094. <name>$PROJ_DIR$\..\..\src\scheduler.c</name>
  2095. </file>
  2096. <file>
  2097. <name>$PROJ_DIR$\..\..\src\signal.c</name>
  2098. </file>
  2099. <file>
  2100. <name>$PROJ_DIR$\..\..\src\thread.c</name>
  2101. </file>
  2102. <file>
  2103. <name>$PROJ_DIR$\..\..\src\timer.c</name>
  2104. </file>
  2105. </group>
  2106. <group>
  2107. <name>CORTEX-M4</name>
  2108. <file>
  2109. <name>$PROJ_DIR$\..\..\libcpu\arm\cortex-m4\cpuport.c</name>
  2110. </file>
  2111. <file>
  2112. <name>$PROJ_DIR$\..\..\libcpu\arm\cortex-m4\context_iar.S</name>
  2113. </file>
  2114. <file>
  2115. <name>$PROJ_DIR$\..\..\libcpu\arm\common\backtrace.c</name>
  2116. </file>
  2117. <file>
  2118. <name>$PROJ_DIR$\..\..\libcpu\arm\common\div0.c</name>
  2119. </file>
  2120. <file>
  2121. <name>$PROJ_DIR$\..\..\libcpu\arm\common\showmem.c</name>
  2122. </file>
  2123. </group>
  2124. <group>
  2125. <name>Filesystem</name>
  2126. <file>
  2127. <name>$PROJ_DIR$\..\..\components\dfs\src\dfs.c</name>
  2128. </file>
  2129. <file>
  2130. <name>$PROJ_DIR$\..\..\components\dfs\src\dfs_file.c</name>
  2131. </file>
  2132. <file>
  2133. <name>$PROJ_DIR$\..\..\components\dfs\src\dfs_fs.c</name>
  2134. </file>
  2135. <file>
  2136. <name>$PROJ_DIR$\..\..\components\dfs\src\dfs_posix.c</name>
  2137. </file>
  2138. <file>
  2139. <name>$PROJ_DIR$\..\..\components\dfs\src\poll.c</name>
  2140. </file>
  2141. <file>
  2142. <name>$PROJ_DIR$\..\..\components\dfs\src\select.c</name>
  2143. </file>
  2144. <file>
  2145. <name>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs\devfs.c</name>
  2146. </file>
  2147. <file>
  2148. <name>$PROJ_DIR$\..\..\components\dfs\filesystems\elmfat\dfs_elm.c</name>
  2149. </file>
  2150. <file>
  2151. <name>$PROJ_DIR$\..\..\components\dfs\filesystems\elmfat\ff.c</name>
  2152. </file>
  2153. <file>
  2154. <name>$PROJ_DIR$\..\..\components\dfs\filesystems\net\dfs_net.c</name>
  2155. </file>
  2156. <file>
  2157. <name>$PROJ_DIR$\..\..\components\dfs\filesystems\net\net_netdb.c</name>
  2158. </file>
  2159. <file>
  2160. <name>$PROJ_DIR$\..\..\components\dfs\filesystems\net\net_sockets.c</name>
  2161. </file>
  2162. </group>
  2163. <group>
  2164. <name>DeviceDrivers</name>
  2165. <file>
  2166. <name>$PROJ_DIR$\..\..\components\drivers\misc\pin.c</name>
  2167. </file>
  2168. <file>
  2169. <name>$PROJ_DIR$\..\..\components\drivers\serial\serial.c</name>
  2170. </file>
  2171. <file>
  2172. <name>$PROJ_DIR$\..\..\components\drivers\src\completion.c</name>
  2173. </file>
  2174. <file>
  2175. <name>$PROJ_DIR$\..\..\components\drivers\src\dataqueue.c</name>
  2176. </file>
  2177. <file>
  2178. <name>$PROJ_DIR$\..\..\components\drivers\src\pipe.c</name>
  2179. </file>
  2180. <file>
  2181. <name>$PROJ_DIR$\..\..\components\drivers\src\ringbuffer.c</name>
  2182. </file>
  2183. <file>
  2184. <name>$PROJ_DIR$\..\..\components\drivers\src\waitqueue.c</name>
  2185. </file>
  2186. <file>
  2187. <name>$PROJ_DIR$\..\..\components\drivers\src\workqueue.c</name>
  2188. </file>
  2189. </group>
  2190. <group>
  2191. <name>finsh</name>
  2192. <file>
  2193. <name>$PROJ_DIR$\..\..\components\finsh\shell.c</name>
  2194. </file>
  2195. <file>
  2196. <name>$PROJ_DIR$\..\..\components\finsh\symbol.c</name>
  2197. </file>
  2198. <file>
  2199. <name>$PROJ_DIR$\..\..\components\finsh\cmd.c</name>
  2200. </file>
  2201. <file>
  2202. <name>$PROJ_DIR$\..\..\components\finsh\msh.c</name>
  2203. </file>
  2204. <file>
  2205. <name>$PROJ_DIR$\..\..\components\finsh\msh_cmd.c</name>
  2206. </file>
  2207. <file>
  2208. <name>$PROJ_DIR$\..\..\components\finsh\msh_file.c</name>
  2209. </file>
  2210. <file>
  2211. <name>$PROJ_DIR$\..\..\components\finsh\finsh_compiler.c</name>
  2212. </file>
  2213. <file>
  2214. <name>$PROJ_DIR$\..\..\components\finsh\finsh_error.c</name>
  2215. </file>
  2216. <file>
  2217. <name>$PROJ_DIR$\..\..\components\finsh\finsh_heap.c</name>
  2218. </file>
  2219. <file>
  2220. <name>$PROJ_DIR$\..\..\components\finsh\finsh_init.c</name>
  2221. </file>
  2222. <file>
  2223. <name>$PROJ_DIR$\..\..\components\finsh\finsh_node.c</name>
  2224. </file>
  2225. <file>
  2226. <name>$PROJ_DIR$\..\..\components\finsh\finsh_ops.c</name>
  2227. </file>
  2228. <file>
  2229. <name>$PROJ_DIR$\..\..\components\finsh\finsh_parser.c</name>
  2230. </file>
  2231. <file>
  2232. <name>$PROJ_DIR$\..\..\components\finsh\finsh_var.c</name>
  2233. </file>
  2234. <file>
  2235. <name>$PROJ_DIR$\..\..\components\finsh\finsh_vm.c</name>
  2236. </file>
  2237. <file>
  2238. <name>$PROJ_DIR$\..\..\components\finsh\finsh_token.c</name>
  2239. </file>
  2240. </group>
  2241. <group>
  2242. <name>dlib</name>
  2243. <file>
  2244. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\environ.c</name>
  2245. </file>
  2246. <file>
  2247. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\libc.c</name>
  2248. </file>
  2249. <file>
  2250. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\rmtx.c</name>
  2251. </file>
  2252. <file>
  2253. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\stdio.c</name>
  2254. </file>
  2255. <file>
  2256. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_close.c</name>
  2257. </file>
  2258. <file>
  2259. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_lseek.c</name>
  2260. </file>
  2261. <file>
  2262. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_mem.c</name>
  2263. </file>
  2264. <file>
  2265. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_open.c</name>
  2266. </file>
  2267. <file>
  2268. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_read.c</name>
  2269. </file>
  2270. <file>
  2271. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_remove.c</name>
  2272. </file>
  2273. <file>
  2274. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\syscall_write.c</name>
  2275. </file>
  2276. <file>
  2277. <name>$PROJ_DIR$\..\..\components\libc\compilers\dlib\time.c</name>
  2278. </file>
  2279. </group>
  2280. <group>
  2281. <name>lwIP</name>
  2282. <file>
  2283. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\arch\sys_arch.c</name>
  2284. </file>
  2285. <file>
  2286. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\api_lib.c</name>
  2287. </file>
  2288. <file>
  2289. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\api_msg.c</name>
  2290. </file>
  2291. <file>
  2292. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\err.c</name>
  2293. </file>
  2294. <file>
  2295. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\netbuf.c</name>
  2296. </file>
  2297. <file>
  2298. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\netdb.c</name>
  2299. </file>
  2300. <file>
  2301. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\netifapi.c</name>
  2302. </file>
  2303. <file>
  2304. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\sockets.c</name>
  2305. </file>
  2306. <file>
  2307. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\api\tcpip.c</name>
  2308. </file>
  2309. <file>
  2310. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\def.c</name>
  2311. </file>
  2312. <file>
  2313. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\dns.c</name>
  2314. </file>
  2315. <file>
  2316. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\inet_chksum.c</name>
  2317. </file>
  2318. <file>
  2319. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\init.c</name>
  2320. </file>
  2321. <file>
  2322. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ip.c</name>
  2323. </file>
  2324. <file>
  2325. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\memp.c</name>
  2326. </file>
  2327. <file>
  2328. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\netif.c</name>
  2329. </file>
  2330. <file>
  2331. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\pbuf.c</name>
  2332. </file>
  2333. <file>
  2334. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\raw.c</name>
  2335. </file>
  2336. <file>
  2337. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\stats.c</name>
  2338. </file>
  2339. <file>
  2340. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\sys.c</name>
  2341. </file>
  2342. <file>
  2343. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\tcp.c</name>
  2344. </file>
  2345. <file>
  2346. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\tcp_in.c</name>
  2347. </file>
  2348. <file>
  2349. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\tcp_out.c</name>
  2350. </file>
  2351. <file>
  2352. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\timeouts.c</name>
  2353. </file>
  2354. <file>
  2355. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\udp.c</name>
  2356. </file>
  2357. <file>
  2358. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\netif\ethernet.c</name>
  2359. </file>
  2360. <file>
  2361. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\netif\ethernetif.c</name>
  2362. </file>
  2363. <file>
  2364. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\netif\lowpan6.c</name>
  2365. </file>
  2366. <file>
  2367. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\autoip.c</name>
  2368. </file>
  2369. <file>
  2370. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\dhcp.c</name>
  2371. </file>
  2372. <file>
  2373. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\etharp.c</name>
  2374. </file>
  2375. <file>
  2376. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\icmp.c</name>
  2377. </file>
  2378. <file>
  2379. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\igmp.c</name>
  2380. </file>
  2381. <file>
  2382. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\ip4.c</name>
  2383. </file>
  2384. <file>
  2385. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\ip4_addr.c</name>
  2386. </file>
  2387. <file>
  2388. <name>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\core\ipv4\ip4_frag.c</name>
  2389. </file>
  2390. </group>
  2391. </project>