project.ewp 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946
  1. <project>
  2. <fileVersion>3</fileVersion>
  3. <configuration>
  4. <name>Release</name>
  5. <toolchain>
  6. <name>ARM</name>
  7. </toolchain>
  8. <debug>0</debug>
  9. <settings>
  10. <name>General</name>
  11. <archiveVersion>3</archiveVersion>
  12. <data>
  13. <version>31</version>
  14. <wantNonLocal>1</wantNonLocal>
  15. <debug>0</debug>
  16. <option>
  17. <name>ExePath</name>
  18. <state>build\iar\Exe</state>
  19. </option>
  20. <option>
  21. <name>ObjPath</name>
  22. <state>build\iar\Obj</state>
  23. </option>
  24. <option>
  25. <name>ListPath</name>
  26. <state>build\iar\List</state>
  27. </option>
  28. <option>
  29. <name>GEndianMode</name>
  30. <state>0</state>
  31. </option>
  32. <option>
  33. <name>Input description</name>
  34. <state>Automatic choice of formatter, without multibyte support.</state>
  35. </option>
  36. <option>
  37. <name>Output description</name>
  38. <state>Automatic choice of formatter, without multibyte support.</state>
  39. </option>
  40. <option>
  41. <name>GOutputBinary</name>
  42. <state>0</state>
  43. </option>
  44. <option>
  45. <name>OGCoreOrChip</name>
  46. <state>1</state>
  47. </option>
  48. <option>
  49. <name>GRuntimeLibSelect</name>
  50. <version>0</version>
  51. <state>2</state>
  52. </option>
  53. <option>
  54. <name>GRuntimeLibSelectSlave</name>
  55. <version>0</version>
  56. <state>2</state>
  57. </option>
  58. <option>
  59. <name>RTDescription</name>
  60. <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>
  61. </option>
  62. <option>
  63. <name>OGProductVersion</name>
  64. <state>7.80.3.12143</state>
  65. </option>
  66. <option>
  67. <name>OGLastSavedByProductVersion</name>
  68. <state>8.32.1.18618</state>
  69. </option>
  70. <option>
  71. <name>GeneralEnableMisra</name>
  72. <state>0</state>
  73. </option>
  74. <option>
  75. <name>GeneralMisraVerbose</name>
  76. <state>0</state>
  77. </option>
  78. <option>
  79. <name>OGChipSelectEditMenu</name>
  80. <state>M2354 series Nuvoton M2354 series</state>
  81. </option>
  82. <option>
  83. <name>GenLowLevelInterface</name>
  84. <state>0</state>
  85. </option>
  86. <option>
  87. <name>GEndianModeBE</name>
  88. <state>1</state>
  89. </option>
  90. <option>
  91. <name>OGBufferedTerminalOutput</name>
  92. <state>0</state>
  93. </option>
  94. <option>
  95. <name>GenStdoutInterface</name>
  96. <state>0</state>
  97. </option>
  98. <option>
  99. <name>GeneralMisraRules98</name>
  100. <version>0</version>
  101. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  102. </option>
  103. <option>
  104. <name>GeneralMisraVer</name>
  105. <state>0</state>
  106. </option>
  107. <option>
  108. <name>GeneralMisraRules04</name>
  109. <version>0</version>
  110. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  111. </option>
  112. <option>
  113. <name>RTConfigPath2</name>
  114. <state>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</state>
  115. </option>
  116. <option>
  117. <name>GBECoreSlave</name>
  118. <version>26</version>
  119. <state>58</state>
  120. </option>
  121. <option>
  122. <name>OGUseCmsis</name>
  123. <state>0</state>
  124. </option>
  125. <option>
  126. <name>OGUseCmsisDspLib</name>
  127. <state>0</state>
  128. </option>
  129. <option>
  130. <name>GRuntimeLibThreads</name>
  131. <state>0</state>
  132. </option>
  133. <option>
  134. <name>CoreVariant</name>
  135. <version>26</version>
  136. <state>58</state>
  137. </option>
  138. <option>
  139. <name>GFPUDeviceSlave</name>
  140. <state>M2354 series Nuvoton M2354 series</state>
  141. </option>
  142. <option>
  143. <name>FPU2</name>
  144. <version>0</version>
  145. <state>0</state>
  146. </option>
  147. <option>
  148. <name>NrRegs</name>
  149. <version>0</version>
  150. <state>0</state>
  151. </option>
  152. <option>
  153. <name>NEON</name>
  154. <state>0</state>
  155. </option>
  156. <option>
  157. <name>GFPUCoreSlave2</name>
  158. <version>26</version>
  159. <state>58</state>
  160. </option>
  161. <option>
  162. <name>OGCMSISPackSelectDevice</name>
  163. </option>
  164. <option>
  165. <name>OgLibHeap</name>
  166. <state>0</state>
  167. </option>
  168. <option>
  169. <name>OGLibAdditionalLocale</name>
  170. <state>0</state>
  171. </option>
  172. <option>
  173. <name>OGPrintfVariant</name>
  174. <version>0</version>
  175. <state>0</state>
  176. </option>
  177. <option>
  178. <name>OGPrintfMultibyteSupport</name>
  179. <state>0</state>
  180. </option>
  181. <option>
  182. <name>OGScanfVariant</name>
  183. <version>0</version>
  184. <state>0</state>
  185. </option>
  186. <option>
  187. <name>OGScanfMultibyteSupport</name>
  188. <state>0</state>
  189. </option>
  190. <option>
  191. <name>GenLocaleTags</name>
  192. <state />
  193. </option>
  194. <option>
  195. <name>GenLocaleDisplayOnly</name>
  196. <state />
  197. </option>
  198. <option>
  199. <name>DSPExtension</name>
  200. <state>0</state>
  201. </option>
  202. <option>
  203. <name>TrustZone</name>
  204. <state>1</state>
  205. </option>
  206. <option>
  207. <name>TrustZoneModes</name>
  208. <version>0</version>
  209. <state>1</state>
  210. </option>
  211. </data>
  212. </settings>
  213. <settings>
  214. <name>ICCARM</name>
  215. <archiveVersion>2</archiveVersion>
  216. <data>
  217. <version>35</version>
  218. <wantNonLocal>1</wantNonLocal>
  219. <debug>0</debug>
  220. <option>
  221. <name>CCDefines</name>
  222. <state>ARM_MATH_ARMV8MBL</state>
  223. <state>CLOCKS_PER_SEC=RT_TICK_PER_SECOND</state>
  224. <state>RT_USING_DLIBC</state>
  225. <state>RT_USING_LIBC</state>
  226. <state>_DLIB_ADD_EXTRA_SYMBOLS=0</state>
  227. <state>_DLIB_FILE_DESCRIPTOR</state>
  228. <state>__RTTHREAD__</state>
  229. <state>__RT_IPC_SOURCE__</state>
  230. <state>__RT_KERNEL_SOURCE__</state>
  231. </option>
  232. <option>
  233. <name>CCPreprocFile</name>
  234. <state>0</state>
  235. </option>
  236. <option>
  237. <name>CCPreprocComments</name>
  238. <state>0</state>
  239. </option>
  240. <option>
  241. <name>CCPreprocLine</name>
  242. <state>0</state>
  243. </option>
  244. <option>
  245. <name>CCListCFile</name>
  246. <state>0</state>
  247. </option>
  248. <option>
  249. <name>CCListCMnemonics</name>
  250. <state>0</state>
  251. </option>
  252. <option>
  253. <name>CCListCMessages</name>
  254. <state>0</state>
  255. </option>
  256. <option>
  257. <name>CCListAssFile</name>
  258. <state>0</state>
  259. </option>
  260. <option>
  261. <name>CCListAssSource</name>
  262. <state>0</state>
  263. </option>
  264. <option>
  265. <name>CCEnableRemarks</name>
  266. <state>0</state>
  267. </option>
  268. <option>
  269. <name>CCDiagSuppress</name>
  270. <state>Pa082,Pa050</state>
  271. </option>
  272. <option>
  273. <name>CCDiagRemark</name>
  274. <state />
  275. </option>
  276. <option>
  277. <name>CCDiagWarning</name>
  278. <state />
  279. </option>
  280. <option>
  281. <name>CCDiagError</name>
  282. <state />
  283. </option>
  284. <option>
  285. <name>CCObjPrefix</name>
  286. <state>1</state>
  287. </option>
  288. <option>
  289. <name>CCAllowList</name>
  290. <version>1</version>
  291. <state>11111110</state>
  292. </option>
  293. <option>
  294. <name>CCDebugInfo</name>
  295. <state>0</state>
  296. </option>
  297. <option>
  298. <name>IEndianMode</name>
  299. <state>1</state>
  300. </option>
  301. <option>
  302. <name>IProcessor</name>
  303. <state>1</state>
  304. </option>
  305. <option>
  306. <name>IExtraOptionsCheck</name>
  307. <state>0</state>
  308. </option>
  309. <option>
  310. <name>IExtraOptions</name>
  311. <state />
  312. </option>
  313. <option>
  314. <name>CCLangConformance</name>
  315. <state>0</state>
  316. </option>
  317. <option>
  318. <name>CCSignedPlainChar</name>
  319. <state>1</state>
  320. </option>
  321. <option>
  322. <name>CCRequirePrototypes</name>
  323. <state>0</state>
  324. </option>
  325. <option>
  326. <name>CCDiagWarnAreErr</name>
  327. <state>0</state>
  328. </option>
  329. <option>
  330. <name>CCCompilerRuntimeInfo</name>
  331. <state>0</state>
  332. </option>
  333. <option>
  334. <name>IFpuProcessor</name>
  335. <state>1</state>
  336. </option>
  337. <option>
  338. <name>OutputFile</name>
  339. <state>$FILE_BNAME$.o</state>
  340. </option>
  341. <option>
  342. <name>CCLibConfigHeader</name>
  343. <state>1</state>
  344. </option>
  345. <option>
  346. <name>PreInclude</name>
  347. <state />
  348. </option>
  349. <option>
  350. <name>CompilerMisraOverride</name>
  351. <state>0</state>
  352. </option>
  353. <option>
  354. <name>CCIncludePath2</name>
  355. <state />
  356. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat</state>
  357. <state>$PROJ_DIR$\..\..\..\components\utilities\utest</state>
  358. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\include</state>
  359. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\dfs_net</state>
  360. <state>$PROJ_DIR$\..\..\..\components\drivers\smp_call</state>
  361. <state>$PROJ_DIR$\..\..\..\components\libc\posix\ipc</state>
  362. <state>$PROJ_DIR$\.</state>
  363. <state>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m23</state>
  364. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\devfs</state>
  365. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\include</state>
  366. <state>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\inc</state>
  367. <state>$PROJ_DIR$\..\..\..\libcpu\arm\common</state>
  368. <state>$PROJ_DIR$\..\..\..\components\drivers\spi</state>
  369. <state>$PROJ_DIR$\..\libraries\m2354\USBHostLib\inc</state>
  370. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\socket</state>
  371. <state>$PROJ_DIR$\..\..\..\components\fal\inc</state>
  372. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost</state>
  373. <state>$PROJ_DIR$\board\NuClockConfig</state>
  374. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\epoll</state>
  375. <state>$PROJ_DIR$\..\libraries\nu_packages\Demo</state>
  376. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal</state>
  377. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class</state>
  378. <state>$PROJ_DIR$\..\..\..\components\legacy\include</state>
  379. <state>$PROJ_DIR$\..\..\..\components\net\sal\impl</state>
  380. <state>$PROJ_DIR$\..\..\..\components\net\sal\include</state>
  381. <state>$PROJ_DIR$\..\libraries\m2354\CMSIS\Include</state>
  382. <state>$PROJ_DIR$\..\libraries\nu_packages\NuUtils\inc</state>
  383. <state>$PROJ_DIR$\..\..\..\components\drivers\phy</state>
  384. <state>$PROJ_DIR$\..\..\..\components\drivers\audio</state>
  385. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\socket\sys_socket</state>
  386. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\extension</state>
  387. <state>$PROJ_DIR$\..\..\..\components\net\at\at_socket</state>
  388. <state>$PROJ_DIR$\..\libraries\nu_packages\SLCD</state>
  389. <state>$PROJ_DIR$\..\libraries\m2354\StdDriver\inc</state>
  390. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd</state>
  391. <state>$PROJ_DIR$\applications</state>
  392. <state>$PROJ_DIR$\..\libraries\nu_packages\TPC</state>
  393. <state>$PROJ_DIR$\..\..\..\components\net\at\include</state>
  394. <state>$PROJ_DIR$\..\..\..\components\drivers\sdio\sdhci\include</state>
  395. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll</state>
  396. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core</state>
  397. <state>$PROJ_DIR$\..\..\..\components\drivers\include</state>
  398. <state>$PROJ_DIR$\board\NuPinConfig</state>
  399. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice</state>
  400. <state>$PROJ_DIR$\board</state>
  401. <state>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto</state>
  402. <state>$PROJ_DIR$\..\libraries\m2354\rtt_port</state>
  403. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\include</state>
  404. <state>$PROJ_DIR$\..\..\..\components\finsh</state>
  405. <state>$PROJ_DIR$\..\..\..\include</state>
  406. <state>$PROJ_DIR$\..\..\..\components\net\netdev\include</state>
  407. <state>$PROJ_DIR$\..\libraries\m2354\Device\Nuvoton\M2354\Include</state>
  408. </option>
  409. <option>
  410. <name>CCStdIncCheck</name>
  411. <state>0</state>
  412. </option>
  413. <option>
  414. <name>CCCodeSection</name>
  415. <state>.text</state>
  416. </option>
  417. <option>
  418. <name>IProcessorMode2</name>
  419. <state>1</state>
  420. </option>
  421. <option>
  422. <name>CCOptLevel</name>
  423. <state>3</state>
  424. </option>
  425. <option>
  426. <name>CCOptStrategy</name>
  427. <version>0</version>
  428. <state>0</state>
  429. </option>
  430. <option>
  431. <name>CCOptLevelSlave</name>
  432. <state>3</state>
  433. </option>
  434. <option>
  435. <name>CompilerMisraRules98</name>
  436. <version>0</version>
  437. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  438. </option>
  439. <option>
  440. <name>CompilerMisraRules04</name>
  441. <version>0</version>
  442. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  443. </option>
  444. <option>
  445. <name>CCPosIndRopi</name>
  446. <state>0</state>
  447. </option>
  448. <option>
  449. <name>CCPosIndRwpi</name>
  450. <state>0</state>
  451. </option>
  452. <option>
  453. <name>CCPosIndNoDynInit</name>
  454. <state>0</state>
  455. </option>
  456. <option>
  457. <name>IccLang</name>
  458. <state>0</state>
  459. </option>
  460. <option>
  461. <name>IccCDialect</name>
  462. <state>1</state>
  463. </option>
  464. <option>
  465. <name>IccAllowVLA</name>
  466. <state>0</state>
  467. </option>
  468. <option>
  469. <name>IccStaticDestr</name>
  470. <state>1</state>
  471. </option>
  472. <option>
  473. <name>IccCppInlineSemantics</name>
  474. <state>0</state>
  475. </option>
  476. <option>
  477. <name>IccCmsis</name>
  478. <state>1</state>
  479. </option>
  480. <option>
  481. <name>IccFloatSemantics</name>
  482. <state>0</state>
  483. </option>
  484. <option>
  485. <name>CCOptimizationNoSizeConstraints</name>
  486. <state>0</state>
  487. </option>
  488. <option>
  489. <name>CCNoLiteralPool</name>
  490. <state>0</state>
  491. </option>
  492. <option>
  493. <name>CCOptStrategySlave</name>
  494. <version>0</version>
  495. <state>0</state>
  496. </option>
  497. <option>
  498. <name>CCGuardCalls</name>
  499. <state>1</state>
  500. </option>
  501. <option>
  502. <name>CCEncSource</name>
  503. <state>0</state>
  504. </option>
  505. <option>
  506. <name>CCEncOutput</name>
  507. <state>0</state>
  508. </option>
  509. <option>
  510. <name>CCEncOutputBom</name>
  511. <state>1</state>
  512. </option>
  513. <option>
  514. <name>CCEncInput</name>
  515. <state>0</state>
  516. </option>
  517. <option>
  518. <name>IccExceptions2</name>
  519. <state>0</state>
  520. </option>
  521. <option>
  522. <name>IccRTTI2</name>
  523. <state>0</state>
  524. </option>
  525. <option>
  526. <name>OICompilerExtraOption</name>
  527. <state>1</state>
  528. </option>
  529. </data>
  530. </settings>
  531. <settings>
  532. <name>AARM</name>
  533. <archiveVersion>2</archiveVersion>
  534. <data>
  535. <version>10</version>
  536. <wantNonLocal>1</wantNonLocal>
  537. <debug>0</debug>
  538. <option>
  539. <name>AObjPrefix</name>
  540. <state>1</state>
  541. </option>
  542. <option>
  543. <name>AEndian</name>
  544. <state>1</state>
  545. </option>
  546. <option>
  547. <name>ACaseSensitivity</name>
  548. <state>1</state>
  549. </option>
  550. <option>
  551. <name>MacroChars</name>
  552. <version>0</version>
  553. <state>0</state>
  554. </option>
  555. <option>
  556. <name>AWarnEnable</name>
  557. <state>0</state>
  558. </option>
  559. <option>
  560. <name>AWarnWhat</name>
  561. <state>0</state>
  562. </option>
  563. <option>
  564. <name>AWarnOne</name>
  565. <state />
  566. </option>
  567. <option>
  568. <name>AWarnRange1</name>
  569. <state />
  570. </option>
  571. <option>
  572. <name>AWarnRange2</name>
  573. <state />
  574. </option>
  575. <option>
  576. <name>ADebug</name>
  577. <state>0</state>
  578. </option>
  579. <option>
  580. <name>AltRegisterNames</name>
  581. <state>0</state>
  582. </option>
  583. <option>
  584. <name>ADefines</name>
  585. <state />
  586. </option>
  587. <option>
  588. <name>AList</name>
  589. <state>0</state>
  590. </option>
  591. <option>
  592. <name>AListHeader</name>
  593. <state>1</state>
  594. </option>
  595. <option>
  596. <name>AListing</name>
  597. <state>1</state>
  598. </option>
  599. <option>
  600. <name>Includes</name>
  601. <state>0</state>
  602. </option>
  603. <option>
  604. <name>MacDefs</name>
  605. <state>0</state>
  606. </option>
  607. <option>
  608. <name>MacExps</name>
  609. <state>1</state>
  610. </option>
  611. <option>
  612. <name>MacExec</name>
  613. <state>0</state>
  614. </option>
  615. <option>
  616. <name>OnlyAssed</name>
  617. <state>0</state>
  618. </option>
  619. <option>
  620. <name>MultiLine</name>
  621. <state>0</state>
  622. </option>
  623. <option>
  624. <name>PageLengthCheck</name>
  625. <state>0</state>
  626. </option>
  627. <option>
  628. <name>PageLength</name>
  629. <state>80</state>
  630. </option>
  631. <option>
  632. <name>TabSpacing</name>
  633. <state>8</state>
  634. </option>
  635. <option>
  636. <name>AXRef</name>
  637. <state>0</state>
  638. </option>
  639. <option>
  640. <name>AXRefDefines</name>
  641. <state>0</state>
  642. </option>
  643. <option>
  644. <name>AXRefInternal</name>
  645. <state>0</state>
  646. </option>
  647. <option>
  648. <name>AXRefDual</name>
  649. <state>0</state>
  650. </option>
  651. <option>
  652. <name>AProcessor</name>
  653. <state>1</state>
  654. </option>
  655. <option>
  656. <name>AFpuProcessor</name>
  657. <state>1</state>
  658. </option>
  659. <option>
  660. <name>AOutputFile</name>
  661. <state>$FILE_BNAME$.o</state>
  662. </option>
  663. <option>
  664. <name>ALimitErrorsCheck</name>
  665. <state>0</state>
  666. </option>
  667. <option>
  668. <name>ALimitErrorsEdit</name>
  669. <state>100</state>
  670. </option>
  671. <option>
  672. <name>AIgnoreStdInclude</name>
  673. <state>0</state>
  674. </option>
  675. <option>
  676. <name>AUserIncludes</name>
  677. <state />
  678. </option>
  679. <option>
  680. <name>AExtraOptionsCheckV2</name>
  681. <state>0</state>
  682. </option>
  683. <option>
  684. <name>AExtraOptionsV2</name>
  685. <state />
  686. </option>
  687. <option>
  688. <name>AsmNoLiteralPool</name>
  689. <state>0</state>
  690. </option>
  691. </data>
  692. </settings>
  693. <settings>
  694. <name>OBJCOPY</name>
  695. <archiveVersion>0</archiveVersion>
  696. <data>
  697. <version>1</version>
  698. <wantNonLocal>1</wantNonLocal>
  699. <debug>0</debug>
  700. <option>
  701. <name>OOCOutputFormat</name>
  702. <version>3</version>
  703. <state>3</state>
  704. </option>
  705. <option>
  706. <name>OCOutputOverride</name>
  707. <state>1</state>
  708. </option>
  709. <option>
  710. <name>OOCOutputFile</name>
  711. <state>rtthread.bin</state>
  712. </option>
  713. <option>
  714. <name>OOCCommandLineProducer</name>
  715. <state>1</state>
  716. </option>
  717. <option>
  718. <name>OOCObjCopyEnable</name>
  719. <state>1</state>
  720. </option>
  721. </data>
  722. </settings>
  723. <settings>
  724. <name>CUSTOM</name>
  725. <archiveVersion>3</archiveVersion>
  726. <data>
  727. <extensions />
  728. <cmdline />
  729. <hasPrio>0</hasPrio>
  730. </data>
  731. </settings>
  732. <settings>
  733. <name>BICOMP</name>
  734. <archiveVersion>0</archiveVersion>
  735. <data />
  736. </settings>
  737. <settings>
  738. <name>BUILDACTION</name>
  739. <archiveVersion>1</archiveVersion>
  740. <data>
  741. <prebuild />
  742. <postbuild />
  743. </data>
  744. </settings>
  745. <settings>
  746. <name>ILINK</name>
  747. <archiveVersion>0</archiveVersion>
  748. <data>
  749. <version>22</version>
  750. <wantNonLocal>1</wantNonLocal>
  751. <debug>0</debug>
  752. <option>
  753. <name>IlinkLibIOConfig</name>
  754. <state>1</state>
  755. </option>
  756. <option>
  757. <name>XLinkMisraHandler</name>
  758. <state>0</state>
  759. </option>
  760. <option>
  761. <name>IlinkInputFileSlave</name>
  762. <state>0</state>
  763. </option>
  764. <option>
  765. <name>IlinkOutputFile</name>
  766. <state>Template.out</state>
  767. </option>
  768. <option>
  769. <name>IlinkDebugInfoEnable</name>
  770. <state>1</state>
  771. </option>
  772. <option>
  773. <name>IlinkKeepSymbols</name>
  774. <state />
  775. </option>
  776. <option>
  777. <name>IlinkRawBinaryFile</name>
  778. <state />
  779. </option>
  780. <option>
  781. <name>IlinkRawBinarySymbol</name>
  782. <state />
  783. </option>
  784. <option>
  785. <name>IlinkRawBinarySegment</name>
  786. <state />
  787. </option>
  788. <option>
  789. <name>IlinkRawBinaryAlign</name>
  790. <state />
  791. </option>
  792. <option>
  793. <name>IlinkDefines</name>
  794. <state />
  795. </option>
  796. <option>
  797. <name>IlinkConfigDefines</name>
  798. <state />
  799. </option>
  800. <option>
  801. <name>IlinkMapFile</name>
  802. <state>1</state>
  803. </option>
  804. <option>
  805. <name>IlinkLogFile</name>
  806. <state>0</state>
  807. </option>
  808. <option>
  809. <name>IlinkLogInitialization</name>
  810. <state>0</state>
  811. </option>
  812. <option>
  813. <name>IlinkLogModule</name>
  814. <state>0</state>
  815. </option>
  816. <option>
  817. <name>IlinkLogSection</name>
  818. <state>0</state>
  819. </option>
  820. <option>
  821. <name>IlinkLogVeneer</name>
  822. <state>0</state>
  823. </option>
  824. <option>
  825. <name>IlinkIcfOverride</name>
  826. <state>1</state>
  827. </option>
  828. <option>
  829. <name>IlinkIcfFile</name>
  830. <state>$PROJ_DIR$\linking_scripts\m2354_flash.icf</state>
  831. </option>
  832. <option>
  833. <name>IlinkIcfFileSlave</name>
  834. <state />
  835. </option>
  836. <option>
  837. <name>IlinkEnableRemarks</name>
  838. <state>0</state>
  839. </option>
  840. <option>
  841. <name>IlinkSuppressDiags</name>
  842. <state />
  843. </option>
  844. <option>
  845. <name>IlinkTreatAsRem</name>
  846. <state />
  847. </option>
  848. <option>
  849. <name>IlinkTreatAsWarn</name>
  850. <state />
  851. </option>
  852. <option>
  853. <name>IlinkTreatAsErr</name>
  854. <state />
  855. </option>
  856. <option>
  857. <name>IlinkWarningsAreErrors</name>
  858. <state>0</state>
  859. </option>
  860. <option>
  861. <name>IlinkUseExtraOptions</name>
  862. <state>0</state>
  863. </option>
  864. <option>
  865. <name>IlinkExtraOptions</name>
  866. <state />
  867. </option>
  868. <option>
  869. <name>IlinkLowLevelInterfaceSlave</name>
  870. <state>1</state>
  871. </option>
  872. <option>
  873. <name>IlinkAutoLibEnable</name>
  874. <state>1</state>
  875. </option>
  876. <option>
  877. <name>IlinkAdditionalLibs</name>
  878. <state />
  879. </option>
  880. <option>
  881. <name>IlinkOverrideProgramEntryLabel</name>
  882. <state>1</state>
  883. </option>
  884. <option>
  885. <name>IlinkProgramEntryLabelSelect</name>
  886. <state>0</state>
  887. </option>
  888. <option>
  889. <name>IlinkProgramEntryLabel</name>
  890. <state>Reset_Handler</state>
  891. </option>
  892. <option>
  893. <name>DoFill</name>
  894. <state>0</state>
  895. </option>
  896. <option>
  897. <name>FillerByte</name>
  898. <state>0xFF</state>
  899. </option>
  900. <option>
  901. <name>FillerStart</name>
  902. <state>0x0</state>
  903. </option>
  904. <option>
  905. <name>FillerEnd</name>
  906. <state>0x0</state>
  907. </option>
  908. <option>
  909. <name>CrcSize</name>
  910. <version>0</version>
  911. <state>1</state>
  912. </option>
  913. <option>
  914. <name>CrcAlign</name>
  915. <state>1</state>
  916. </option>
  917. <option>
  918. <name>CrcPoly</name>
  919. <state>0x11021</state>
  920. </option>
  921. <option>
  922. <name>CrcCompl</name>
  923. <version>0</version>
  924. <state>0</state>
  925. </option>
  926. <option>
  927. <name>CrcBitOrder</name>
  928. <version>0</version>
  929. <state>0</state>
  930. </option>
  931. <option>
  932. <name>CrcInitialValue</name>
  933. <state>0x0</state>
  934. </option>
  935. <option>
  936. <name>DoCrc</name>
  937. <state>0</state>
  938. </option>
  939. <option>
  940. <name>IlinkBE8Slave</name>
  941. <state>1</state>
  942. </option>
  943. <option>
  944. <name>IlinkBufferedTerminalOutput</name>
  945. <state>1</state>
  946. </option>
  947. <option>
  948. <name>IlinkStdoutInterfaceSlave</name>
  949. <state>1</state>
  950. </option>
  951. <option>
  952. <name>CrcFullSize</name>
  953. <state>0</state>
  954. </option>
  955. <option>
  956. <name>IlinkIElfToolPostProcess</name>
  957. <state>0</state>
  958. </option>
  959. <option>
  960. <name>IlinkLogAutoLibSelect</name>
  961. <state>0</state>
  962. </option>
  963. <option>
  964. <name>IlinkLogRedirSymbols</name>
  965. <state>0</state>
  966. </option>
  967. <option>
  968. <name>IlinkLogUnusedFragments</name>
  969. <state>0</state>
  970. </option>
  971. <option>
  972. <name>IlinkCrcReverseByteOrder</name>
  973. <state>0</state>
  974. </option>
  975. <option>
  976. <name>IlinkCrcUseAsInput</name>
  977. <state>1</state>
  978. </option>
  979. <option>
  980. <name>IlinkOptInline</name>
  981. <state>1</state>
  982. </option>
  983. <option>
  984. <name>IlinkOptExceptionsAllow</name>
  985. <state>1</state>
  986. </option>
  987. <option>
  988. <name>IlinkOptExceptionsForce</name>
  989. <state>0</state>
  990. </option>
  991. <option>
  992. <name>IlinkCmsis</name>
  993. <state>1</state>
  994. </option>
  995. <option>
  996. <name>IlinkOptMergeDuplSections</name>
  997. <state>0</state>
  998. </option>
  999. <option>
  1000. <name>IlinkOptUseVfe</name>
  1001. <state>1</state>
  1002. </option>
  1003. <option>
  1004. <name>IlinkOptForceVfe</name>
  1005. <state>0</state>
  1006. </option>
  1007. <option>
  1008. <name>IlinkStackAnalysisEnable</name>
  1009. <state>0</state>
  1010. </option>
  1011. <option>
  1012. <name>IlinkStackControlFile</name>
  1013. <state />
  1014. </option>
  1015. <option>
  1016. <name>IlinkStackCallGraphFile</name>
  1017. <state />
  1018. </option>
  1019. <option>
  1020. <name>CrcAlgorithm</name>
  1021. <version>1</version>
  1022. <state>1</state>
  1023. </option>
  1024. <option>
  1025. <name>CrcUnitSize</name>
  1026. <version>0</version>
  1027. <state>0</state>
  1028. </option>
  1029. <option>
  1030. <name>IlinkThreadsSlave</name>
  1031. <state>1</state>
  1032. </option>
  1033. <option>
  1034. <name>IlinkLogCallGraph</name>
  1035. <state>0</state>
  1036. </option>
  1037. <option>
  1038. <name>IlinkIcfFile_AltDefault</name>
  1039. <state />
  1040. </option>
  1041. <option>
  1042. <name>IlinkEncInput</name>
  1043. <state>0</state>
  1044. </option>
  1045. <option>
  1046. <name>IlinkEncOutput</name>
  1047. <state>0</state>
  1048. </option>
  1049. <option>
  1050. <name>IlinkEncOutputBom</name>
  1051. <state>1</state>
  1052. </option>
  1053. <option>
  1054. <name>IlinkHeapSelect</name>
  1055. <state>1</state>
  1056. </option>
  1057. <option>
  1058. <name>IlinkLocaleSelect</name>
  1059. <state>1</state>
  1060. </option>
  1061. <option>
  1062. <name>IlinkTrustzoneImportLibraryOut</name>
  1063. <state>###Unitialized###</state>
  1064. </option>
  1065. <option>
  1066. <name>OILinkExtraOption</name>
  1067. <state>1</state>
  1068. </option>
  1069. </data>
  1070. </settings>
  1071. <settings>
  1072. <name>IARCHIVE</name>
  1073. <archiveVersion>0</archiveVersion>
  1074. <data>
  1075. <version>0</version>
  1076. <wantNonLocal>1</wantNonLocal>
  1077. <debug>0</debug>
  1078. <option>
  1079. <name>IarchiveInputs</name>
  1080. <state />
  1081. </option>
  1082. <option>
  1083. <name>IarchiveOverride</name>
  1084. <state>0</state>
  1085. </option>
  1086. <option>
  1087. <name>IarchiveOutput</name>
  1088. <state>###Unitialized###</state>
  1089. </option>
  1090. </data>
  1091. </settings>
  1092. <settings>
  1093. <name>BILINK</name>
  1094. <archiveVersion>0</archiveVersion>
  1095. <data />
  1096. </settings>
  1097. </configuration>
  1098. <configuration>
  1099. <name>Debug</name>
  1100. <toolchain>
  1101. <name>ARM</name>
  1102. </toolchain>
  1103. <debug>1</debug>
  1104. <settings>
  1105. <name>General</name>
  1106. <archiveVersion>3</archiveVersion>
  1107. <data>
  1108. <version>31</version>
  1109. <wantNonLocal>1</wantNonLocal>
  1110. <debug>1</debug>
  1111. <option>
  1112. <name>ExePath</name>
  1113. <state>build\iar\Exe</state>
  1114. </option>
  1115. <option>
  1116. <name>ObjPath</name>
  1117. <state>build\iar\Obj</state>
  1118. </option>
  1119. <option>
  1120. <name>ListPath</name>
  1121. <state>build\iar\List</state>
  1122. </option>
  1123. <option>
  1124. <name>GEndianMode</name>
  1125. <state>0</state>
  1126. </option>
  1127. <option>
  1128. <name>Input description</name>
  1129. <state>Automatic choice of formatter, without multibyte support.</state>
  1130. </option>
  1131. <option>
  1132. <name>Output description</name>
  1133. <state>Automatic choice of formatter, without multibyte support.</state>
  1134. </option>
  1135. <option>
  1136. <name>GOutputBinary</name>
  1137. <state>0</state>
  1138. </option>
  1139. <option>
  1140. <name>OGCoreOrChip</name>
  1141. <state>1</state>
  1142. </option>
  1143. <option>
  1144. <name>GRuntimeLibSelect</name>
  1145. <version>0</version>
  1146. <state>2</state>
  1147. </option>
  1148. <option>
  1149. <name>GRuntimeLibSelectSlave</name>
  1150. <version>0</version>
  1151. <state>2</state>
  1152. </option>
  1153. <option>
  1154. <name>RTDescription</name>
  1155. <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>
  1156. </option>
  1157. <option>
  1158. <name>OGProductVersion</name>
  1159. <state>7.80.3.12143</state>
  1160. </option>
  1161. <option>
  1162. <name>OGLastSavedByProductVersion</name>
  1163. <state>8.32.1.18618</state>
  1164. </option>
  1165. <option>
  1166. <name>GeneralEnableMisra</name>
  1167. <state>0</state>
  1168. </option>
  1169. <option>
  1170. <name>GeneralMisraVerbose</name>
  1171. <state>0</state>
  1172. </option>
  1173. <option>
  1174. <name>OGChipSelectEditMenu</name>
  1175. <state>M2354 series Nuvoton M2354 series</state>
  1176. </option>
  1177. <option>
  1178. <name>GenLowLevelInterface</name>
  1179. <state>1</state>
  1180. </option>
  1181. <option>
  1182. <name>GEndianModeBE</name>
  1183. <state>1</state>
  1184. </option>
  1185. <option>
  1186. <name>OGBufferedTerminalOutput</name>
  1187. <state>0</state>
  1188. </option>
  1189. <option>
  1190. <name>GenStdoutInterface</name>
  1191. <state>0</state>
  1192. </option>
  1193. <option>
  1194. <name>GeneralMisraRules98</name>
  1195. <version>0</version>
  1196. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  1197. </option>
  1198. <option>
  1199. <name>GeneralMisraVer</name>
  1200. <state>0</state>
  1201. </option>
  1202. <option>
  1203. <name>GeneralMisraRules04</name>
  1204. <version>0</version>
  1205. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  1206. </option>
  1207. <option>
  1208. <name>RTConfigPath2</name>
  1209. <state>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</state>
  1210. </option>
  1211. <option>
  1212. <name>GBECoreSlave</name>
  1213. <version>26</version>
  1214. <state>58</state>
  1215. </option>
  1216. <option>
  1217. <name>OGUseCmsis</name>
  1218. <state>0</state>
  1219. </option>
  1220. <option>
  1221. <name>OGUseCmsisDspLib</name>
  1222. <state>0</state>
  1223. </option>
  1224. <option>
  1225. <name>GRuntimeLibThreads</name>
  1226. <state>0</state>
  1227. </option>
  1228. <option>
  1229. <name>CoreVariant</name>
  1230. <version>26</version>
  1231. <state>58</state>
  1232. </option>
  1233. <option>
  1234. <name>GFPUDeviceSlave</name>
  1235. <state>M2354 series Nuvoton M2354 series</state>
  1236. </option>
  1237. <option>
  1238. <name>FPU2</name>
  1239. <version>0</version>
  1240. <state>0</state>
  1241. </option>
  1242. <option>
  1243. <name>NrRegs</name>
  1244. <version>0</version>
  1245. <state>0</state>
  1246. </option>
  1247. <option>
  1248. <name>NEON</name>
  1249. <state>0</state>
  1250. </option>
  1251. <option>
  1252. <name>GFPUCoreSlave2</name>
  1253. <version>26</version>
  1254. <state>58</state>
  1255. </option>
  1256. <option>
  1257. <name>OGCMSISPackSelectDevice</name>
  1258. </option>
  1259. <option>
  1260. <name>OgLibHeap</name>
  1261. <state>0</state>
  1262. </option>
  1263. <option>
  1264. <name>OGLibAdditionalLocale</name>
  1265. <state>0</state>
  1266. </option>
  1267. <option>
  1268. <name>OGPrintfVariant</name>
  1269. <version>0</version>
  1270. <state>0</state>
  1271. </option>
  1272. <option>
  1273. <name>OGPrintfMultibyteSupport</name>
  1274. <state>0</state>
  1275. </option>
  1276. <option>
  1277. <name>OGScanfVariant</name>
  1278. <version>0</version>
  1279. <state>0</state>
  1280. </option>
  1281. <option>
  1282. <name>OGScanfMultibyteSupport</name>
  1283. <state>0</state>
  1284. </option>
  1285. <option>
  1286. <name>GenLocaleTags</name>
  1287. <state />
  1288. </option>
  1289. <option>
  1290. <name>GenLocaleDisplayOnly</name>
  1291. <state />
  1292. </option>
  1293. <option>
  1294. <name>DSPExtension</name>
  1295. <state>0</state>
  1296. </option>
  1297. <option>
  1298. <name>TrustZone</name>
  1299. <state>1</state>
  1300. </option>
  1301. <option>
  1302. <name>TrustZoneModes</name>
  1303. <version>0</version>
  1304. <state>1</state>
  1305. </option>
  1306. </data>
  1307. </settings>
  1308. <settings>
  1309. <name>ICCARM</name>
  1310. <archiveVersion>2</archiveVersion>
  1311. <data>
  1312. <version>35</version>
  1313. <wantNonLocal>1</wantNonLocal>
  1314. <debug>1</debug>
  1315. <option>
  1316. <name>CCDefines</name>
  1317. <state>ARM_MATH_ARMV8MBL</state>
  1318. <state>CLOCKS_PER_SEC=RT_TICK_PER_SECOND</state>
  1319. <state>RT_USING_DLIBC</state>
  1320. <state>RT_USING_LIBC</state>
  1321. <state>_DLIB_ADD_EXTRA_SYMBOLS=0</state>
  1322. <state>_DLIB_FILE_DESCRIPTOR</state>
  1323. <state>__RTTHREAD__</state>
  1324. <state>__RT_IPC_SOURCE__</state>
  1325. <state>__RT_KERNEL_SOURCE__</state>
  1326. </option>
  1327. <option>
  1328. <name>CCPreprocFile</name>
  1329. <state>0</state>
  1330. </option>
  1331. <option>
  1332. <name>CCPreprocComments</name>
  1333. <state>0</state>
  1334. </option>
  1335. <option>
  1336. <name>CCPreprocLine</name>
  1337. <state>0</state>
  1338. </option>
  1339. <option>
  1340. <name>CCListCFile</name>
  1341. <state>0</state>
  1342. </option>
  1343. <option>
  1344. <name>CCListCMnemonics</name>
  1345. <state>0</state>
  1346. </option>
  1347. <option>
  1348. <name>CCListCMessages</name>
  1349. <state>0</state>
  1350. </option>
  1351. <option>
  1352. <name>CCListAssFile</name>
  1353. <state>0</state>
  1354. </option>
  1355. <option>
  1356. <name>CCListAssSource</name>
  1357. <state>0</state>
  1358. </option>
  1359. <option>
  1360. <name>CCEnableRemarks</name>
  1361. <state>0</state>
  1362. </option>
  1363. <option>
  1364. <name>CCDiagSuppress</name>
  1365. <state />
  1366. </option>
  1367. <option>
  1368. <name>CCDiagRemark</name>
  1369. <state />
  1370. </option>
  1371. <option>
  1372. <name>CCDiagWarning</name>
  1373. <state />
  1374. </option>
  1375. <option>
  1376. <name>CCDiagError</name>
  1377. <state />
  1378. </option>
  1379. <option>
  1380. <name>CCObjPrefix</name>
  1381. <state>1</state>
  1382. </option>
  1383. <option>
  1384. <name>CCAllowList</name>
  1385. <version>1</version>
  1386. <state>00000000</state>
  1387. </option>
  1388. <option>
  1389. <name>CCDebugInfo</name>
  1390. <state>1</state>
  1391. </option>
  1392. <option>
  1393. <name>IEndianMode</name>
  1394. <state>1</state>
  1395. </option>
  1396. <option>
  1397. <name>IProcessor</name>
  1398. <state>1</state>
  1399. </option>
  1400. <option>
  1401. <name>IExtraOptionsCheck</name>
  1402. <state>0</state>
  1403. </option>
  1404. <option>
  1405. <name>IExtraOptions</name>
  1406. <state />
  1407. </option>
  1408. <option>
  1409. <name>CCLangConformance</name>
  1410. <state>0</state>
  1411. </option>
  1412. <option>
  1413. <name>CCSignedPlainChar</name>
  1414. <state>1</state>
  1415. </option>
  1416. <option>
  1417. <name>CCRequirePrototypes</name>
  1418. <state>0</state>
  1419. </option>
  1420. <option>
  1421. <name>CCDiagWarnAreErr</name>
  1422. <state>0</state>
  1423. </option>
  1424. <option>
  1425. <name>CCCompilerRuntimeInfo</name>
  1426. <state>0</state>
  1427. </option>
  1428. <option>
  1429. <name>IFpuProcessor</name>
  1430. <state>1</state>
  1431. </option>
  1432. <option>
  1433. <name>OutputFile</name>
  1434. <state>$FILE_BNAME$.o</state>
  1435. </option>
  1436. <option>
  1437. <name>CCLibConfigHeader</name>
  1438. <state>1</state>
  1439. </option>
  1440. <option>
  1441. <name>PreInclude</name>
  1442. <state />
  1443. </option>
  1444. <option>
  1445. <name>CompilerMisraOverride</name>
  1446. <state>0</state>
  1447. </option>
  1448. <option>
  1449. <name>CCIncludePath2</name>
  1450. <state />
  1451. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat</state>
  1452. <state>$PROJ_DIR$\..\..\..\components\utilities\utest</state>
  1453. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\include</state>
  1454. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\dfs_net</state>
  1455. <state>$PROJ_DIR$\..\..\..\components\drivers\smp_call</state>
  1456. <state>$PROJ_DIR$\..\..\..\components\libc\posix\ipc</state>
  1457. <state>$PROJ_DIR$\.</state>
  1458. <state>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m23</state>
  1459. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\devfs</state>
  1460. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\include</state>
  1461. <state>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\inc</state>
  1462. <state>$PROJ_DIR$\..\..\..\libcpu\arm\common</state>
  1463. <state>$PROJ_DIR$\..\..\..\components\drivers\spi</state>
  1464. <state>$PROJ_DIR$\..\libraries\m2354\USBHostLib\inc</state>
  1465. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\socket</state>
  1466. <state>$PROJ_DIR$\..\..\..\components\fal\inc</state>
  1467. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost</state>
  1468. <state>$PROJ_DIR$\board\NuClockConfig</state>
  1469. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\epoll</state>
  1470. <state>$PROJ_DIR$\..\libraries\nu_packages\Demo</state>
  1471. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal</state>
  1472. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class</state>
  1473. <state>$PROJ_DIR$\..\..\..\components\legacy\include</state>
  1474. <state>$PROJ_DIR$\..\..\..\components\net\sal\impl</state>
  1475. <state>$PROJ_DIR$\..\..\..\components\net\sal\include</state>
  1476. <state>$PROJ_DIR$\..\libraries\m2354\CMSIS\Include</state>
  1477. <state>$PROJ_DIR$\..\libraries\nu_packages\NuUtils\inc</state>
  1478. <state>$PROJ_DIR$\..\..\..\components\drivers\phy</state>
  1479. <state>$PROJ_DIR$\..\..\..\components\drivers\audio</state>
  1480. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\socket\sys_socket</state>
  1481. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\extension</state>
  1482. <state>$PROJ_DIR$\..\..\..\components\net\at\at_socket</state>
  1483. <state>$PROJ_DIR$\..\libraries\nu_packages\SLCD</state>
  1484. <state>$PROJ_DIR$\..\libraries\m2354\StdDriver\inc</state>
  1485. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd</state>
  1486. <state>$PROJ_DIR$\applications</state>
  1487. <state>$PROJ_DIR$\..\libraries\nu_packages\TPC</state>
  1488. <state>$PROJ_DIR$\..\..\..\components\net\at\include</state>
  1489. <state>$PROJ_DIR$\..\..\..\components\drivers\sdio\sdhci\include</state>
  1490. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll</state>
  1491. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core</state>
  1492. <state>$PROJ_DIR$\..\..\..\components\drivers\include</state>
  1493. <state>$PROJ_DIR$\board\NuPinConfig</state>
  1494. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice</state>
  1495. <state>$PROJ_DIR$\board</state>
  1496. <state>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto</state>
  1497. <state>$PROJ_DIR$\..\libraries\m2354\rtt_port</state>
  1498. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\include</state>
  1499. <state>$PROJ_DIR$\..\..\..\components\finsh</state>
  1500. <state>$PROJ_DIR$\..\..\..\include</state>
  1501. <state>$PROJ_DIR$\..\..\..\components\net\netdev\include</state>
  1502. <state>$PROJ_DIR$\..\libraries\m2354\Device\Nuvoton\M2354\Include</state>
  1503. </option>
  1504. <option>
  1505. <name>CCStdIncCheck</name>
  1506. <state>0</state>
  1507. </option>
  1508. <option>
  1509. <name>CCCodeSection</name>
  1510. <state>.text</state>
  1511. </option>
  1512. <option>
  1513. <name>IProcessorMode2</name>
  1514. <state>1</state>
  1515. </option>
  1516. <option>
  1517. <name>CCOptLevel</name>
  1518. <state>1</state>
  1519. </option>
  1520. <option>
  1521. <name>CCOptStrategy</name>
  1522. <version>0</version>
  1523. <state>0</state>
  1524. </option>
  1525. <option>
  1526. <name>CCOptLevelSlave</name>
  1527. <state>1</state>
  1528. </option>
  1529. <option>
  1530. <name>CompilerMisraRules98</name>
  1531. <version>0</version>
  1532. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  1533. </option>
  1534. <option>
  1535. <name>CompilerMisraRules04</name>
  1536. <version>0</version>
  1537. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  1538. </option>
  1539. <option>
  1540. <name>CCPosIndRopi</name>
  1541. <state>0</state>
  1542. </option>
  1543. <option>
  1544. <name>CCPosIndRwpi</name>
  1545. <state>0</state>
  1546. </option>
  1547. <option>
  1548. <name>CCPosIndNoDynInit</name>
  1549. <state>0</state>
  1550. </option>
  1551. <option>
  1552. <name>IccLang</name>
  1553. <state>0</state>
  1554. </option>
  1555. <option>
  1556. <name>IccCDialect</name>
  1557. <state>1</state>
  1558. </option>
  1559. <option>
  1560. <name>IccAllowVLA</name>
  1561. <state>0</state>
  1562. </option>
  1563. <option>
  1564. <name>IccStaticDestr</name>
  1565. <state>1</state>
  1566. </option>
  1567. <option>
  1568. <name>IccCppInlineSemantics</name>
  1569. <state>0</state>
  1570. </option>
  1571. <option>
  1572. <name>IccCmsis</name>
  1573. <state>1</state>
  1574. </option>
  1575. <option>
  1576. <name>IccFloatSemantics</name>
  1577. <state>0</state>
  1578. </option>
  1579. <option>
  1580. <name>CCOptimizationNoSizeConstraints</name>
  1581. <state>0</state>
  1582. </option>
  1583. <option>
  1584. <name>CCNoLiteralPool</name>
  1585. <state>0</state>
  1586. </option>
  1587. <option>
  1588. <name>CCOptStrategySlave</name>
  1589. <version>0</version>
  1590. <state>0</state>
  1591. </option>
  1592. <option>
  1593. <name>CCGuardCalls</name>
  1594. <state>1</state>
  1595. </option>
  1596. <option>
  1597. <name>CCEncSource</name>
  1598. <state>0</state>
  1599. </option>
  1600. <option>
  1601. <name>CCEncOutput</name>
  1602. <state>0</state>
  1603. </option>
  1604. <option>
  1605. <name>CCEncOutputBom</name>
  1606. <state>1</state>
  1607. </option>
  1608. <option>
  1609. <name>CCEncInput</name>
  1610. <state>0</state>
  1611. </option>
  1612. <option>
  1613. <name>IccExceptions2</name>
  1614. <state>0</state>
  1615. </option>
  1616. <option>
  1617. <name>IccRTTI2</name>
  1618. <state>0</state>
  1619. </option>
  1620. <option>
  1621. <name>OICompilerExtraOption</name>
  1622. <state>1</state>
  1623. </option>
  1624. </data>
  1625. </settings>
  1626. <settings>
  1627. <name>AARM</name>
  1628. <archiveVersion>2</archiveVersion>
  1629. <data>
  1630. <version>10</version>
  1631. <wantNonLocal>1</wantNonLocal>
  1632. <debug>1</debug>
  1633. <option>
  1634. <name>AObjPrefix</name>
  1635. <state>1</state>
  1636. </option>
  1637. <option>
  1638. <name>AEndian</name>
  1639. <state>1</state>
  1640. </option>
  1641. <option>
  1642. <name>ACaseSensitivity</name>
  1643. <state>1</state>
  1644. </option>
  1645. <option>
  1646. <name>MacroChars</name>
  1647. <version>0</version>
  1648. <state>0</state>
  1649. </option>
  1650. <option>
  1651. <name>AWarnEnable</name>
  1652. <state>0</state>
  1653. </option>
  1654. <option>
  1655. <name>AWarnWhat</name>
  1656. <state>0</state>
  1657. </option>
  1658. <option>
  1659. <name>AWarnOne</name>
  1660. <state />
  1661. </option>
  1662. <option>
  1663. <name>AWarnRange1</name>
  1664. <state />
  1665. </option>
  1666. <option>
  1667. <name>AWarnRange2</name>
  1668. <state />
  1669. </option>
  1670. <option>
  1671. <name>ADebug</name>
  1672. <state>1</state>
  1673. </option>
  1674. <option>
  1675. <name>AltRegisterNames</name>
  1676. <state>0</state>
  1677. </option>
  1678. <option>
  1679. <name>ADefines</name>
  1680. <state />
  1681. </option>
  1682. <option>
  1683. <name>AList</name>
  1684. <state>0</state>
  1685. </option>
  1686. <option>
  1687. <name>AListHeader</name>
  1688. <state>1</state>
  1689. </option>
  1690. <option>
  1691. <name>AListing</name>
  1692. <state>1</state>
  1693. </option>
  1694. <option>
  1695. <name>Includes</name>
  1696. <state>0</state>
  1697. </option>
  1698. <option>
  1699. <name>MacDefs</name>
  1700. <state>0</state>
  1701. </option>
  1702. <option>
  1703. <name>MacExps</name>
  1704. <state>1</state>
  1705. </option>
  1706. <option>
  1707. <name>MacExec</name>
  1708. <state>0</state>
  1709. </option>
  1710. <option>
  1711. <name>OnlyAssed</name>
  1712. <state>0</state>
  1713. </option>
  1714. <option>
  1715. <name>MultiLine</name>
  1716. <state>0</state>
  1717. </option>
  1718. <option>
  1719. <name>PageLengthCheck</name>
  1720. <state>0</state>
  1721. </option>
  1722. <option>
  1723. <name>PageLength</name>
  1724. <state>80</state>
  1725. </option>
  1726. <option>
  1727. <name>TabSpacing</name>
  1728. <state>8</state>
  1729. </option>
  1730. <option>
  1731. <name>AXRef</name>
  1732. <state>0</state>
  1733. </option>
  1734. <option>
  1735. <name>AXRefDefines</name>
  1736. <state>0</state>
  1737. </option>
  1738. <option>
  1739. <name>AXRefInternal</name>
  1740. <state>0</state>
  1741. </option>
  1742. <option>
  1743. <name>AXRefDual</name>
  1744. <state>0</state>
  1745. </option>
  1746. <option>
  1747. <name>AProcessor</name>
  1748. <state>1</state>
  1749. </option>
  1750. <option>
  1751. <name>AFpuProcessor</name>
  1752. <state>1</state>
  1753. </option>
  1754. <option>
  1755. <name>AOutputFile</name>
  1756. <state>$FILE_BNAME$.o</state>
  1757. </option>
  1758. <option>
  1759. <name>ALimitErrorsCheck</name>
  1760. <state>0</state>
  1761. </option>
  1762. <option>
  1763. <name>ALimitErrorsEdit</name>
  1764. <state>100</state>
  1765. </option>
  1766. <option>
  1767. <name>AIgnoreStdInclude</name>
  1768. <state>0</state>
  1769. </option>
  1770. <option>
  1771. <name>AUserIncludes</name>
  1772. <state />
  1773. </option>
  1774. <option>
  1775. <name>AExtraOptionsCheckV2</name>
  1776. <state>0</state>
  1777. </option>
  1778. <option>
  1779. <name>AExtraOptionsV2</name>
  1780. <state />
  1781. </option>
  1782. <option>
  1783. <name>AsmNoLiteralPool</name>
  1784. <state>0</state>
  1785. </option>
  1786. </data>
  1787. </settings>
  1788. <settings>
  1789. <name>OBJCOPY</name>
  1790. <archiveVersion>0</archiveVersion>
  1791. <data>
  1792. <version>1</version>
  1793. <wantNonLocal>1</wantNonLocal>
  1794. <debug>1</debug>
  1795. <option>
  1796. <name>OOCOutputFormat</name>
  1797. <version>3</version>
  1798. <state>3</state>
  1799. </option>
  1800. <option>
  1801. <name>OCOutputOverride</name>
  1802. <state>1</state>
  1803. </option>
  1804. <option>
  1805. <name>OOCOutputFile</name>
  1806. <state>rtthread.bin</state>
  1807. </option>
  1808. <option>
  1809. <name>OOCCommandLineProducer</name>
  1810. <state>1</state>
  1811. </option>
  1812. <option>
  1813. <name>OOCObjCopyEnable</name>
  1814. <state>1</state>
  1815. </option>
  1816. </data>
  1817. </settings>
  1818. <settings>
  1819. <name>CUSTOM</name>
  1820. <archiveVersion>3</archiveVersion>
  1821. <data>
  1822. <extensions />
  1823. <cmdline />
  1824. <hasPrio>0</hasPrio>
  1825. </data>
  1826. </settings>
  1827. <settings>
  1828. <name>BICOMP</name>
  1829. <archiveVersion>0</archiveVersion>
  1830. <data />
  1831. </settings>
  1832. <settings>
  1833. <name>BUILDACTION</name>
  1834. <archiveVersion>1</archiveVersion>
  1835. <data>
  1836. <prebuild />
  1837. <postbuild />
  1838. </data>
  1839. </settings>
  1840. <settings>
  1841. <name>ILINK</name>
  1842. <archiveVersion>0</archiveVersion>
  1843. <data>
  1844. <version>22</version>
  1845. <wantNonLocal>1</wantNonLocal>
  1846. <debug>1</debug>
  1847. <option>
  1848. <name>IlinkLibIOConfig</name>
  1849. <state>1</state>
  1850. </option>
  1851. <option>
  1852. <name>XLinkMisraHandler</name>
  1853. <state>0</state>
  1854. </option>
  1855. <option>
  1856. <name>IlinkInputFileSlave</name>
  1857. <state>0</state>
  1858. </option>
  1859. <option>
  1860. <name>IlinkOutputFile</name>
  1861. <state>Template.out</state>
  1862. </option>
  1863. <option>
  1864. <name>IlinkDebugInfoEnable</name>
  1865. <state>1</state>
  1866. </option>
  1867. <option>
  1868. <name>IlinkKeepSymbols</name>
  1869. <state />
  1870. </option>
  1871. <option>
  1872. <name>IlinkRawBinaryFile</name>
  1873. <state />
  1874. </option>
  1875. <option>
  1876. <name>IlinkRawBinarySymbol</name>
  1877. <state />
  1878. </option>
  1879. <option>
  1880. <name>IlinkRawBinarySegment</name>
  1881. <state />
  1882. </option>
  1883. <option>
  1884. <name>IlinkRawBinaryAlign</name>
  1885. <state />
  1886. </option>
  1887. <option>
  1888. <name>IlinkDefines</name>
  1889. <state />
  1890. </option>
  1891. <option>
  1892. <name>IlinkConfigDefines</name>
  1893. <state />
  1894. </option>
  1895. <option>
  1896. <name>IlinkMapFile</name>
  1897. <state>1</state>
  1898. </option>
  1899. <option>
  1900. <name>IlinkLogFile</name>
  1901. <state>0</state>
  1902. </option>
  1903. <option>
  1904. <name>IlinkLogInitialization</name>
  1905. <state>0</state>
  1906. </option>
  1907. <option>
  1908. <name>IlinkLogModule</name>
  1909. <state>0</state>
  1910. </option>
  1911. <option>
  1912. <name>IlinkLogSection</name>
  1913. <state>0</state>
  1914. </option>
  1915. <option>
  1916. <name>IlinkLogVeneer</name>
  1917. <state>0</state>
  1918. </option>
  1919. <option>
  1920. <name>IlinkIcfOverride</name>
  1921. <state>1</state>
  1922. </option>
  1923. <option>
  1924. <name>IlinkIcfFile</name>
  1925. <state>$PROJ_DIR$\linking_scripts\m2354_flash.icf</state>
  1926. </option>
  1927. <option>
  1928. <name>IlinkIcfFileSlave</name>
  1929. <state />
  1930. </option>
  1931. <option>
  1932. <name>IlinkEnableRemarks</name>
  1933. <state>0</state>
  1934. </option>
  1935. <option>
  1936. <name>IlinkSuppressDiags</name>
  1937. <state />
  1938. </option>
  1939. <option>
  1940. <name>IlinkTreatAsRem</name>
  1941. <state />
  1942. </option>
  1943. <option>
  1944. <name>IlinkTreatAsWarn</name>
  1945. <state />
  1946. </option>
  1947. <option>
  1948. <name>IlinkTreatAsErr</name>
  1949. <state />
  1950. </option>
  1951. <option>
  1952. <name>IlinkWarningsAreErrors</name>
  1953. <state>0</state>
  1954. </option>
  1955. <option>
  1956. <name>IlinkUseExtraOptions</name>
  1957. <state>0</state>
  1958. </option>
  1959. <option>
  1960. <name>IlinkExtraOptions</name>
  1961. <state />
  1962. </option>
  1963. <option>
  1964. <name>IlinkLowLevelInterfaceSlave</name>
  1965. <state>1</state>
  1966. </option>
  1967. <option>
  1968. <name>IlinkAutoLibEnable</name>
  1969. <state>1</state>
  1970. </option>
  1971. <option>
  1972. <name>IlinkAdditionalLibs</name>
  1973. <state />
  1974. </option>
  1975. <option>
  1976. <name>IlinkOverrideProgramEntryLabel</name>
  1977. <state>1</state>
  1978. </option>
  1979. <option>
  1980. <name>IlinkProgramEntryLabelSelect</name>
  1981. <state>0</state>
  1982. </option>
  1983. <option>
  1984. <name>IlinkProgramEntryLabel</name>
  1985. <state>Reset_Handler</state>
  1986. </option>
  1987. <option>
  1988. <name>DoFill</name>
  1989. <state>0</state>
  1990. </option>
  1991. <option>
  1992. <name>FillerByte</name>
  1993. <state>0xFF</state>
  1994. </option>
  1995. <option>
  1996. <name>FillerStart</name>
  1997. <state>0x0</state>
  1998. </option>
  1999. <option>
  2000. <name>FillerEnd</name>
  2001. <state>0x0</state>
  2002. </option>
  2003. <option>
  2004. <name>CrcSize</name>
  2005. <version>0</version>
  2006. <state>1</state>
  2007. </option>
  2008. <option>
  2009. <name>CrcAlign</name>
  2010. <state>1</state>
  2011. </option>
  2012. <option>
  2013. <name>CrcPoly</name>
  2014. <state>0x11021</state>
  2015. </option>
  2016. <option>
  2017. <name>CrcCompl</name>
  2018. <version>0</version>
  2019. <state>0</state>
  2020. </option>
  2021. <option>
  2022. <name>CrcBitOrder</name>
  2023. <version>0</version>
  2024. <state>0</state>
  2025. </option>
  2026. <option>
  2027. <name>CrcInitialValue</name>
  2028. <state>0x0</state>
  2029. </option>
  2030. <option>
  2031. <name>DoCrc</name>
  2032. <state>0</state>
  2033. </option>
  2034. <option>
  2035. <name>IlinkBE8Slave</name>
  2036. <state>1</state>
  2037. </option>
  2038. <option>
  2039. <name>IlinkBufferedTerminalOutput</name>
  2040. <state>1</state>
  2041. </option>
  2042. <option>
  2043. <name>IlinkStdoutInterfaceSlave</name>
  2044. <state>1</state>
  2045. </option>
  2046. <option>
  2047. <name>CrcFullSize</name>
  2048. <state>0</state>
  2049. </option>
  2050. <option>
  2051. <name>IlinkIElfToolPostProcess</name>
  2052. <state>0</state>
  2053. </option>
  2054. <option>
  2055. <name>IlinkLogAutoLibSelect</name>
  2056. <state>0</state>
  2057. </option>
  2058. <option>
  2059. <name>IlinkLogRedirSymbols</name>
  2060. <state>0</state>
  2061. </option>
  2062. <option>
  2063. <name>IlinkLogUnusedFragments</name>
  2064. <state>0</state>
  2065. </option>
  2066. <option>
  2067. <name>IlinkCrcReverseByteOrder</name>
  2068. <state>0</state>
  2069. </option>
  2070. <option>
  2071. <name>IlinkCrcUseAsInput</name>
  2072. <state>1</state>
  2073. </option>
  2074. <option>
  2075. <name>IlinkOptInline</name>
  2076. <state>0</state>
  2077. </option>
  2078. <option>
  2079. <name>IlinkOptExceptionsAllow</name>
  2080. <state>1</state>
  2081. </option>
  2082. <option>
  2083. <name>IlinkOptExceptionsForce</name>
  2084. <state>0</state>
  2085. </option>
  2086. <option>
  2087. <name>IlinkCmsis</name>
  2088. <state>1</state>
  2089. </option>
  2090. <option>
  2091. <name>IlinkOptMergeDuplSections</name>
  2092. <state>0</state>
  2093. </option>
  2094. <option>
  2095. <name>IlinkOptUseVfe</name>
  2096. <state>1</state>
  2097. </option>
  2098. <option>
  2099. <name>IlinkOptForceVfe</name>
  2100. <state>0</state>
  2101. </option>
  2102. <option>
  2103. <name>IlinkStackAnalysisEnable</name>
  2104. <state>0</state>
  2105. </option>
  2106. <option>
  2107. <name>IlinkStackControlFile</name>
  2108. <state />
  2109. </option>
  2110. <option>
  2111. <name>IlinkStackCallGraphFile</name>
  2112. <state />
  2113. </option>
  2114. <option>
  2115. <name>CrcAlgorithm</name>
  2116. <version>1</version>
  2117. <state>1</state>
  2118. </option>
  2119. <option>
  2120. <name>CrcUnitSize</name>
  2121. <version>0</version>
  2122. <state>0</state>
  2123. </option>
  2124. <option>
  2125. <name>IlinkThreadsSlave</name>
  2126. <state>1</state>
  2127. </option>
  2128. <option>
  2129. <name>IlinkLogCallGraph</name>
  2130. <state>0</state>
  2131. </option>
  2132. <option>
  2133. <name>IlinkIcfFile_AltDefault</name>
  2134. <state />
  2135. </option>
  2136. <option>
  2137. <name>IlinkEncInput</name>
  2138. <state>0</state>
  2139. </option>
  2140. <option>
  2141. <name>IlinkEncOutput</name>
  2142. <state>0</state>
  2143. </option>
  2144. <option>
  2145. <name>IlinkEncOutputBom</name>
  2146. <state>1</state>
  2147. </option>
  2148. <option>
  2149. <name>IlinkHeapSelect</name>
  2150. <state>1</state>
  2151. </option>
  2152. <option>
  2153. <name>IlinkLocaleSelect</name>
  2154. <state>1</state>
  2155. </option>
  2156. <option>
  2157. <name>IlinkTrustzoneImportLibraryOut</name>
  2158. <state>template_import_lib.o</state>
  2159. </option>
  2160. <option>
  2161. <name>OILinkExtraOption</name>
  2162. <state>1</state>
  2163. </option>
  2164. </data>
  2165. </settings>
  2166. <settings>
  2167. <name>IARCHIVE</name>
  2168. <archiveVersion>0</archiveVersion>
  2169. <data>
  2170. <version>0</version>
  2171. <wantNonLocal>1</wantNonLocal>
  2172. <debug>1</debug>
  2173. <option>
  2174. <name>IarchiveInputs</name>
  2175. <state />
  2176. </option>
  2177. <option>
  2178. <name>IarchiveOverride</name>
  2179. <state>0</state>
  2180. </option>
  2181. <option>
  2182. <name>IarchiveOutput</name>
  2183. <state>###Unitialized###</state>
  2184. </option>
  2185. </data>
  2186. </settings>
  2187. <settings>
  2188. <name>BILINK</name>
  2189. <archiveVersion>0</archiveVersion>
  2190. <data />
  2191. </settings>
  2192. </configuration>
  2193. <group>
  2194. <name>Applications</name>
  2195. <file>
  2196. <name>$PROJ_DIR$\applications\mnt.c</name>
  2197. </file>
  2198. <file>
  2199. <name>$PROJ_DIR$\applications\main.c</name>
  2200. </file>
  2201. </group>
  2202. <group>
  2203. <name>AT</name>
  2204. <file>
  2205. <name>$PROJ_DIR$\..\..\..\components\net\at\src\at_cli.c</name>
  2206. </file>
  2207. <file>
  2208. <name>$PROJ_DIR$\..\..\..\components\net\at\at_socket\at_socket.c</name>
  2209. </file>
  2210. <file>
  2211. <name>$PROJ_DIR$\..\..\..\components\net\at\src\at_utils.c</name>
  2212. </file>
  2213. <file>
  2214. <name>$PROJ_DIR$\..\..\..\components\net\at\src\at_client.c</name>
  2215. </file>
  2216. </group>
  2217. <group>
  2218. <name>board</name>
  2219. <file>
  2220. <name>$PROJ_DIR$\board\NuClockConfig\nutool_modclkcfg.c</name>
  2221. </file>
  2222. <file>
  2223. <name>$PROJ_DIR$\board\NuPinConfig\nutool_pincfg.c</name>
  2224. </file>
  2225. <file>
  2226. <name>$PROJ_DIR$\board\board_dev.c</name>
  2227. </file>
  2228. </group>
  2229. <group>
  2230. <name>CMSIS</name>
  2231. </group>
  2232. <group>
  2233. <name>Compiler</name>
  2234. <file>
  2235. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cctype.c</name>
  2236. </file>
  2237. <file>
  2238. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cstdlib.c</name>
  2239. </file>
  2240. <file>
  2241. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cstring.c</name>
  2242. </file>
  2243. <file>
  2244. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\ctime.c</name>
  2245. </file>
  2246. <file>
  2247. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cunistd.c</name>
  2248. </file>
  2249. <file>
  2250. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cwchar.c</name>
  2251. </file>
  2252. <file>
  2253. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\environ.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\syscalls.c</name>
  2278. </file>
  2279. </group>
  2280. <group>
  2281. <name>DeviceDrivers</name>
  2282. <file>
  2283. <name>$PROJ_DIR$\..\..\..\components\drivers\audio\dev_audio.c</name>
  2284. </file>
  2285. <file>
  2286. <name>$PROJ_DIR$\..\..\..\components\drivers\audio\dev_audio_pipe.c</name>
  2287. </file>
  2288. <file>
  2289. <name>$PROJ_DIR$\..\..\..\components\drivers\can\dev_can.c</name>
  2290. </file>
  2291. <file>
  2292. <name>$PROJ_DIR$\..\..\..\components\drivers\core\device.c</name>
  2293. </file>
  2294. <file>
  2295. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_crc.c</name>
  2296. </file>
  2297. <file>
  2298. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_hash.c</name>
  2299. </file>
  2300. <file>
  2301. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_rng.c</name>
  2302. </file>
  2303. <file>
  2304. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_symmetric.c</name>
  2305. </file>
  2306. <file>
  2307. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hwcrypto.c</name>
  2308. </file>
  2309. <file>
  2310. <name>$PROJ_DIR$\..\..\..\components\drivers\hwtimer\hwtimer.c</name>
  2311. </file>
  2312. <file>
  2313. <name>$PROJ_DIR$\..\..\..\components\drivers\i2c\dev_i2c_bit_ops.c</name>
  2314. </file>
  2315. <file>
  2316. <name>$PROJ_DIR$\..\..\..\components\drivers\i2c\dev_i2c_core.c</name>
  2317. </file>
  2318. <file>
  2319. <name>$PROJ_DIR$\..\..\..\components\drivers\i2c\dev_i2c_dev.c</name>
  2320. </file>
  2321. <file>
  2322. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\completion_comm.c</name>
  2323. </file>
  2324. <file>
  2325. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\completion_up.c</name>
  2326. </file>
  2327. <file>
  2328. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\condvar.c</name>
  2329. </file>
  2330. <file>
  2331. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\dataqueue.c</name>
  2332. </file>
  2333. <file>
  2334. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\pipe.c</name>
  2335. </file>
  2336. <file>
  2337. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\ringblk_buf.c</name>
  2338. </file>
  2339. <file>
  2340. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\ringbuffer.c</name>
  2341. </file>
  2342. <file>
  2343. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\waitqueue.c</name>
  2344. </file>
  2345. <file>
  2346. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\workqueue.c</name>
  2347. </file>
  2348. <file>
  2349. <name>$PROJ_DIR$\..\..\..\components\drivers\misc\adc.c</name>
  2350. </file>
  2351. <file>
  2352. <name>$PROJ_DIR$\..\..\..\components\drivers\misc\rt_drv_pwm.c</name>
  2353. </file>
  2354. <file>
  2355. <name>$PROJ_DIR$\..\..\..\components\drivers\pin\dev_pin.c</name>
  2356. </file>
  2357. <file>
  2358. <name>$PROJ_DIR$\..\..\..\components\drivers\pm\lptimer.c</name>
  2359. </file>
  2360. <file>
  2361. <name>$PROJ_DIR$\..\..\..\components\drivers\pm\pm.c</name>
  2362. </file>
  2363. <file>
  2364. <name>$PROJ_DIR$\..\..\..\components\drivers\rtc\dev_rtc.c</name>
  2365. </file>
  2366. <file>
  2367. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_block.c</name>
  2368. </file>
  2369. <file>
  2370. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_mmc.c</name>
  2371. </file>
  2372. <file>
  2373. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_mmcsd_core.c</name>
  2374. </file>
  2375. <file>
  2376. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_sd.c</name>
  2377. </file>
  2378. <file>
  2379. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_sdio.c</name>
  2380. </file>
  2381. <file>
  2382. <name>$PROJ_DIR$\..\..\..\components\drivers\sensor\v1\sensor.c</name>
  2383. </file>
  2384. <file>
  2385. <name>$PROJ_DIR$\..\..\..\components\drivers\sensor\v1\sensor_cmd.c</name>
  2386. </file>
  2387. <file>
  2388. <name>$PROJ_DIR$\..\..\..\components\drivers\serial\dev_serial.c</name>
  2389. </file>
  2390. <file>
  2391. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_qspi_core.c</name>
  2392. </file>
  2393. <file>
  2394. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_spi.c</name>
  2395. </file>
  2396. <file>
  2397. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_spi_core.c</name>
  2398. </file>
  2399. <file>
  2400. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_spi_flash_sfud.c</name>
  2401. </file>
  2402. <file>
  2403. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\src\sfud.c</name>
  2404. </file>
  2405. <file>
  2406. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c</name>
  2407. </file>
  2408. <file>
  2409. <name>$PROJ_DIR$\..\..\..\components\drivers\watchdog\dev_watchdog.c</name>
  2410. </file>
  2411. </group>
  2412. <group>
  2413. <name>Drivers</name>
  2414. <file>
  2415. <name>$PROJ_DIR$\..\libraries\m2354\Device\Nuvoton\M2354\Source\IAR\startup_M2354.s</name>
  2416. </file>
  2417. <file>
  2418. <name>$PROJ_DIR$\..\libraries\m2354\Device\Nuvoton\M2354\Source\system_M2354.c</name>
  2419. </file>
  2420. <file>
  2421. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_bpwm.c</name>
  2422. </file>
  2423. <file>
  2424. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_bpwm_capture.c</name>
  2425. </file>
  2426. <file>
  2427. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_can.c</name>
  2428. </file>
  2429. <file>
  2430. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_clk.c</name>
  2431. </file>
  2432. <file>
  2433. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_common.c</name>
  2434. </file>
  2435. <file>
  2436. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_crc.c</name>
  2437. </file>
  2438. <file>
  2439. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_crypto.c</name>
  2440. </file>
  2441. <file>
  2442. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_eadc.c</name>
  2443. </file>
  2444. <file>
  2445. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_ebi.c</name>
  2446. </file>
  2447. <file>
  2448. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_ecap.c</name>
  2449. </file>
  2450. <file>
  2451. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_epwm.c</name>
  2452. </file>
  2453. <file>
  2454. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_epwm_capture.c</name>
  2455. </file>
  2456. <file>
  2457. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_fmc.c</name>
  2458. </file>
  2459. <file>
  2460. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_gpio.c</name>
  2461. </file>
  2462. <file>
  2463. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_i2c.c</name>
  2464. </file>
  2465. <file>
  2466. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_i2s.c</name>
  2467. </file>
  2468. <file>
  2469. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_otg.c</name>
  2470. </file>
  2471. <file>
  2472. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_pdma.c</name>
  2473. </file>
  2474. <file>
  2475. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_qei.c</name>
  2476. </file>
  2477. <file>
  2478. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_qspi.c</name>
  2479. </file>
  2480. <file>
  2481. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_rtc.c</name>
  2482. </file>
  2483. <file>
  2484. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_scuart.c</name>
  2485. </file>
  2486. <file>
  2487. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_sdh.c</name>
  2488. </file>
  2489. <file>
  2490. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_sdio.c</name>
  2491. </file>
  2492. <file>
  2493. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_slcd.c</name>
  2494. </file>
  2495. <file>
  2496. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_softi2c.c</name>
  2497. </file>
  2498. <file>
  2499. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_spi.c</name>
  2500. </file>
  2501. <file>
  2502. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_spii2s.c</name>
  2503. </file>
  2504. <file>
  2505. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_timer.c</name>
  2506. </file>
  2507. <file>
  2508. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_timer_capture.c</name>
  2509. </file>
  2510. <file>
  2511. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_tpwm.c</name>
  2512. </file>
  2513. <file>
  2514. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_trng.c</name>
  2515. </file>
  2516. <file>
  2517. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_uart.c</name>
  2518. </file>
  2519. <file>
  2520. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_ui2c.c</name>
  2521. </file>
  2522. <file>
  2523. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_usbd.c</name>
  2524. </file>
  2525. <file>
  2526. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_usbhost.c</name>
  2527. </file>
  2528. <file>
  2529. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_uspi.c</name>
  2530. </file>
  2531. <file>
  2532. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_uuart.c</name>
  2533. </file>
  2534. <file>
  2535. <name>$PROJ_DIR$\..\libraries\m2354\rtt_port\drv_wdt.c</name>
  2536. </file>
  2537. </group>
  2538. <group>
  2539. <name>Fal</name>
  2540. <file>
  2541. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal_partition.c</name>
  2542. </file>
  2543. <file>
  2544. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal_flash.c</name>
  2545. </file>
  2546. <file>
  2547. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal.c</name>
  2548. </file>
  2549. <file>
  2550. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal_rtt.c</name>
  2551. </file>
  2552. </group>
  2553. <group>
  2554. <name>Filesystem</name>
  2555. <file>
  2556. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\devfs\devfs.c</name>
  2557. </file>
  2558. <file>
  2559. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat\dfs_elm.c</name>
  2560. </file>
  2561. <file>
  2562. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat\ff.c</name>
  2563. </file>
  2564. <file>
  2565. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat\ffunicode.c</name>
  2566. </file>
  2567. <file>
  2568. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs.c</name>
  2569. </file>
  2570. <file>
  2571. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs_file.c</name>
  2572. </file>
  2573. <file>
  2574. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs_fs.c</name>
  2575. </file>
  2576. <file>
  2577. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs_posix.c</name>
  2578. </file>
  2579. </group>
  2580. <group>
  2581. <name>Finsh</name>
  2582. <file>
  2583. <name>$PROJ_DIR$\..\..\..\components\finsh\msh.c</name>
  2584. </file>
  2585. <file>
  2586. <name>$PROJ_DIR$\..\..\..\components\finsh\msh_file.c</name>
  2587. </file>
  2588. <file>
  2589. <name>$PROJ_DIR$\..\..\..\components\finsh\cmd.c</name>
  2590. </file>
  2591. <file>
  2592. <name>$PROJ_DIR$\..\..\..\components\finsh\shell.c</name>
  2593. </file>
  2594. <file>
  2595. <name>$PROJ_DIR$\..\..\..\components\finsh\msh_parse.c</name>
  2596. </file>
  2597. </group>
  2598. <group>
  2599. <name>Kernel</name>
  2600. <file>
  2601. <name>$PROJ_DIR$\..\..\..\src\clock.c</name>
  2602. </file>
  2603. <file>
  2604. <name>$PROJ_DIR$\..\..\..\src\components.c</name>
  2605. </file>
  2606. <file>
  2607. <name>$PROJ_DIR$\..\..\..\src\cpu_up.c</name>
  2608. </file>
  2609. <file>
  2610. <name>$PROJ_DIR$\..\..\..\src\defunct.c</name>
  2611. </file>
  2612. <file>
  2613. <name>$PROJ_DIR$\..\..\..\src\idle.c</name>
  2614. </file>
  2615. <file>
  2616. <name>$PROJ_DIR$\..\..\..\src\ipc.c</name>
  2617. </file>
  2618. <file>
  2619. <name>$PROJ_DIR$\..\..\..\src\irq.c</name>
  2620. </file>
  2621. <file>
  2622. <name>$PROJ_DIR$\..\..\..\src\kservice.c</name>
  2623. </file>
  2624. <file>
  2625. <name>$PROJ_DIR$\..\..\..\src\mem.c</name>
  2626. </file>
  2627. <file>
  2628. <name>$PROJ_DIR$\..\..\..\src\mempool.c</name>
  2629. </file>
  2630. <file>
  2631. <name>$PROJ_DIR$\..\..\..\src\object.c</name>
  2632. </file>
  2633. <file>
  2634. <name>$PROJ_DIR$\..\..\..\src\scheduler_comm.c</name>
  2635. </file>
  2636. <file>
  2637. <name>$PROJ_DIR$\..\..\..\src\scheduler_up.c</name>
  2638. </file>
  2639. <file>
  2640. <name>$PROJ_DIR$\..\..\..\src\signal.c</name>
  2641. </file>
  2642. <file>
  2643. <name>$PROJ_DIR$\..\..\..\src\thread.c</name>
  2644. </file>
  2645. <file>
  2646. <name>$PROJ_DIR$\..\..\..\src\timer.c</name>
  2647. </file>
  2648. </group>
  2649. <group>
  2650. <name>klibc</name>
  2651. <file>
  2652. <name>$PROJ_DIR$\..\..\..\src\klibc\rt_vsnprintf_tiny.c</name>
  2653. </file>
  2654. <file>
  2655. <name>$PROJ_DIR$\..\..\..\src\klibc\kstring.c</name>
  2656. </file>
  2657. <file>
  2658. <name>$PROJ_DIR$\..\..\..\src\klibc\rt_vsscanf.c</name>
  2659. </file>
  2660. <file>
  2661. <name>$PROJ_DIR$\..\..\..\src\klibc\kstdio.c</name>
  2662. </file>
  2663. <file>
  2664. <name>$PROJ_DIR$\..\..\..\src\klibc\kerrno.c</name>
  2665. </file>
  2666. </group>
  2667. <group>
  2668. <name>libcpu</name>
  2669. <file>
  2670. <name>$PROJ_DIR$\..\..\..\libcpu\arm\common\atomic_arm.c</name>
  2671. </file>
  2672. <file>
  2673. <name>$PROJ_DIR$\..\..\..\libcpu\arm\common\div0.c</name>
  2674. </file>
  2675. <file>
  2676. <name>$PROJ_DIR$\..\..\..\libcpu\arm\common\showmem.c</name>
  2677. </file>
  2678. <file>
  2679. <name>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m23\context_iar.S</name>
  2680. </file>
  2681. <file>
  2682. <name>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m23\cpuport.c</name>
  2683. </file>
  2684. </group>
  2685. <group>
  2686. <name>Libraries</name>
  2687. <file>
  2688. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_sdh.c</name>
  2689. </file>
  2690. <file>
  2691. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_bpwm.c</name>
  2692. </file>
  2693. <file>
  2694. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_dac.c</name>
  2695. </file>
  2696. <file>
  2697. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_lcd.c</name>
  2698. </file>
  2699. <file>
  2700. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_rng.c</name>
  2701. </file>
  2702. <file>
  2703. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_ewdt.c</name>
  2704. </file>
  2705. <file>
  2706. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_ecap.c</name>
  2707. </file>
  2708. <file>
  2709. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_can.c</name>
  2710. </file>
  2711. <file>
  2712. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_usbd.c</name>
  2713. </file>
  2714. <file>
  2715. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_timer.c</name>
  2716. </file>
  2717. <file>
  2718. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_wwdt.c</name>
  2719. </file>
  2720. <file>
  2721. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_usci_i2c.c</name>
  2722. </file>
  2723. <file>
  2724. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_spi.c</name>
  2725. </file>
  2726. <file>
  2727. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_epwm.c</name>
  2728. </file>
  2729. <file>
  2730. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_gpio.c</name>
  2731. </file>
  2732. <file>
  2733. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_crypto.c</name>
  2734. </file>
  2735. <file>
  2736. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_rtc.c</name>
  2737. </file>
  2738. <file>
  2739. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_sc.c</name>
  2740. </file>
  2741. <file>
  2742. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_fmc.c</name>
  2743. </file>
  2744. <file>
  2745. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_clk.c</name>
  2746. </file>
  2747. <file>
  2748. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_i2c.c</name>
  2749. </file>
  2750. <file>
  2751. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_timer_pwm.c</name>
  2752. </file>
  2753. <file>
  2754. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_dpm.c</name>
  2755. </file>
  2756. <file>
  2757. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_ebi.c</name>
  2758. </file>
  2759. <file>
  2760. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_eadc.c</name>
  2761. </file>
  2762. <file>
  2763. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_trng.c</name>
  2764. </file>
  2765. <file>
  2766. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_sys.c</name>
  2767. </file>
  2768. <file>
  2769. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_i2s.c</name>
  2770. </file>
  2771. <file>
  2772. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_uart.c</name>
  2773. </file>
  2774. <file>
  2775. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_qei.c</name>
  2776. </file>
  2777. <file>
  2778. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_crc.c</name>
  2779. </file>
  2780. <file>
  2781. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_scuart.c</name>
  2782. </file>
  2783. <file>
  2784. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_pdma.c</name>
  2785. </file>
  2786. <file>
  2787. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_usci_spi.c</name>
  2788. </file>
  2789. <file>
  2790. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_ewwdt.c</name>
  2791. </file>
  2792. <file>
  2793. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_acmp.c</name>
  2794. </file>
  2795. <file>
  2796. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_fvc.c</name>
  2797. </file>
  2798. <file>
  2799. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_tamper.c</name>
  2800. </file>
  2801. <file>
  2802. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_wdt.c</name>
  2803. </file>
  2804. <file>
  2805. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_keystore.c</name>
  2806. </file>
  2807. <file>
  2808. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_usci_uart.c</name>
  2809. </file>
  2810. <file>
  2811. <name>$PROJ_DIR$\..\libraries\m2354\StdDriver\src\nu_qspi.c</name>
  2812. </file>
  2813. </group>
  2814. <group>
  2815. <name>m2354_usbhostlib</name>
  2816. <file>
  2817. <name>$PROJ_DIR$\..\libraries\m2354\USBHostLib\src\ohci.c</name>
  2818. </file>
  2819. <file>
  2820. <name>$PROJ_DIR$\..\libraries\m2354\USBHostLib\src\mem_alloc.c</name>
  2821. </file>
  2822. <file>
  2823. <name>$PROJ_DIR$\..\libraries\m2354\USBHostLib\src\usb_core.c</name>
  2824. </file>
  2825. </group>
  2826. <group>
  2827. <name>nu_pkgs_demo</name>
  2828. <file>
  2829. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\ccap_saver.c</name>
  2830. </file>
  2831. <file>
  2832. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\wormhole_demo.c</name>
  2833. </file>
  2834. <file>
  2835. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\smp_demo.c</name>
  2836. </file>
  2837. <file>
  2838. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\atdev_utils.c</name>
  2839. </file>
  2840. <file>
  2841. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\hwsem_counter.c</name>
  2842. </file>
  2843. <file>
  2844. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\ccap_demo.c</name>
  2845. </file>
  2846. <file>
  2847. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\slcd_show_tick.c</name>
  2848. </file>
  2849. <file>
  2850. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\usbd_cdc_vcom_echo.c</name>
  2851. </file>
  2852. <file>
  2853. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\usbd_hid_dance_mouse.c</name>
  2854. </file>
  2855. </group>
  2856. <group>
  2857. <name>nu_pkgs_slcd</name>
  2858. <file>
  2859. <name>$PROJ_DIR$\..\libraries\nu_packages\SLCD\slcd_rhe6616tp01.c</name>
  2860. </file>
  2861. </group>
  2862. <group>
  2863. <name>nu_pkgs_tpc</name>
  2864. </group>
  2865. <group>
  2866. <name>numicro_common</name>
  2867. </group>
  2868. <group>
  2869. <name>POSIX</name>
  2870. <file>
  2871. <name>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll\poll.c</name>
  2872. </file>
  2873. <file>
  2874. <name>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll\select.c</name>
  2875. </file>
  2876. </group>
  2877. <group>
  2878. <name>rt_usbd</name>
  2879. <file>
  2880. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice\class\hid.c</name>
  2881. </file>
  2882. <file>
  2883. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice\core\usbdevice_core.c</name>
  2884. </file>
  2885. <file>
  2886. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice\core\usbdevice.c</name>
  2887. </file>
  2888. </group>
  2889. <group>
  2890. <name>rt_usbh</name>
  2891. <file>
  2892. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\driver.c</name>
  2893. </file>
  2894. <file>
  2895. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\usbhost.c</name>
  2896. </file>
  2897. <file>
  2898. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\usbhost_core.c</name>
  2899. </file>
  2900. <file>
  2901. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class\udisk.c</name>
  2902. </file>
  2903. <file>
  2904. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\hub.c</name>
  2905. </file>
  2906. <file>
  2907. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class\mass.c</name>
  2908. </file>
  2909. </group>
  2910. <group>
  2911. <name>SAL</name>
  2912. <file>
  2913. <name>$PROJ_DIR$\..\..\..\components\net\netdev\src\netdev.c</name>
  2914. </file>
  2915. <file>
  2916. <name>$PROJ_DIR$\..\..\..\components\net\netdev\src\netdev_ipaddr.c</name>
  2917. </file>
  2918. <file>
  2919. <name>$PROJ_DIR$\..\..\..\components\net\sal\dfs_net\dfs_net.c</name>
  2920. </file>
  2921. <file>
  2922. <name>$PROJ_DIR$\..\..\..\components\net\sal\impl\af_inet_at.c</name>
  2923. </file>
  2924. <file>
  2925. <name>$PROJ_DIR$\..\..\..\components\net\sal\socket\net_netdb.c</name>
  2926. </file>
  2927. <file>
  2928. <name>$PROJ_DIR$\..\..\..\components\net\sal\socket\net_sockets.c</name>
  2929. </file>
  2930. <file>
  2931. <name>$PROJ_DIR$\..\..\..\components\net\sal\src\sal_socket.c</name>
  2932. </file>
  2933. </group>
  2934. <group>
  2935. <name>UTest</name>
  2936. <file>
  2937. <name>$PROJ_DIR$\..\..\..\components\utilities\utest\utest.c</name>
  2938. </file>
  2939. <file>
  2940. <name>$PROJ_DIR$\..\..\..\components\utilities\utest\TC_uassert.c</name>
  2941. </file>
  2942. </group>
  2943. <group>
  2944. <name>utestcases</name>
  2945. </group>
  2946. </project>