project.ewp 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  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>No specifier n, no float nor long long, no scan set, no assignment suppressing, with multibyte support.</state>
  35. </option>
  36. <option>
  37. <name>Output description</name>
  38. <state>No specifier a, A, no specifier n, no float nor long long, with 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>6.21.1.52845</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>M481AE series Nuvoton M481AE series (M481AE,M482AE,M483AE,M485AE,M487AE)</state>
  81. </option>
  82. <option>
  83. <name>GenLowLevelInterface</name>
  84. <state>1</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>39</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>39</state>
  137. </option>
  138. <option>
  139. <name>GFPUDeviceSlave</name>
  140. <state>M481AE series Nuvoton M481AE series (M481AE,M482AE,M483AE,M485AE,M487AE)</state>
  141. </option>
  142. <option>
  143. <name>FPU2</name>
  144. <version>0</version>
  145. <state>4</state>
  146. </option>
  147. <option>
  148. <name>NrRegs</name>
  149. <version>0</version>
  150. <state>1</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>39</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>3</state>
  176. </option>
  177. <option>
  178. <name>OGPrintfMultibyteSupport</name>
  179. <state>1</state>
  180. </option>
  181. <option>
  182. <name>OGScanfVariant</name>
  183. <version>0</version>
  184. <state>3</state>
  185. </option>
  186. <option>
  187. <name>OGScanfMultibyteSupport</name>
  188. <state>1</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>1</state>
  201. </option>
  202. <option>
  203. <name>TrustZone</name>
  204. <state>0</state>
  205. </option>
  206. <option>
  207. <name>TrustZoneModes</name>
  208. <version>0</version>
  209. <state>0</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>CCOptimizationNoSizeConstraints</name>
  222. <state>0</state>
  223. </option>
  224. <option>
  225. <name>CCDefines</name>
  226. <state>ARM_MATH_CM4</state>
  227. <state>CLOCKS_PER_SEC=RT_TICK_PER_SECOND</state>
  228. <state>RT_USING_DLIBC</state>
  229. <state>RT_USING_LIBC</state>
  230. <state>_DLIB_ADD_EXTRA_SYMBOLS=0</state>
  231. <state>_DLIB_FILE_DESCRIPTOR</state>
  232. <state>__RTTHREAD__</state>
  233. <state>__RT_IPC_SOURCE__</state>
  234. <state>__RT_KERNEL_SOURCE__</state>
  235. </option>
  236. <option>
  237. <name>CCPreprocFile</name>
  238. <state>0</state>
  239. </option>
  240. <option>
  241. <name>CCPreprocComments</name>
  242. <state>0</state>
  243. </option>
  244. <option>
  245. <name>CCPreprocLine</name>
  246. <state>0</state>
  247. </option>
  248. <option>
  249. <name>CCListCFile</name>
  250. <state>0</state>
  251. </option>
  252. <option>
  253. <name>CCListCMnemonics</name>
  254. <state>0</state>
  255. </option>
  256. <option>
  257. <name>CCListCMessages</name>
  258. <state>0</state>
  259. </option>
  260. <option>
  261. <name>CCListAssFile</name>
  262. <state>0</state>
  263. </option>
  264. <option>
  265. <name>CCListAssSource</name>
  266. <state>0</state>
  267. </option>
  268. <option>
  269. <name>CCEnableRemarks</name>
  270. <state>0</state>
  271. </option>
  272. <option>
  273. <name>CCDiagSuppress</name>
  274. <state>Pa082,Pa050</state>
  275. </option>
  276. <option>
  277. <name>CCDiagRemark</name>
  278. <state />
  279. </option>
  280. <option>
  281. <name>CCDiagWarning</name>
  282. <state />
  283. </option>
  284. <option>
  285. <name>CCDiagError</name>
  286. <state />
  287. </option>
  288. <option>
  289. <name>CCObjPrefix</name>
  290. <state>1</state>
  291. </option>
  292. <option>
  293. <name>CCAllowList</name>
  294. <version>1</version>
  295. <state>10010100</state>
  296. </option>
  297. <option>
  298. <name>CCDebugInfo</name>
  299. <state>1</state>
  300. </option>
  301. <option>
  302. <name>IEndianMode</name>
  303. <state>1</state>
  304. </option>
  305. <option>
  306. <name>IProcessor</name>
  307. <state>1</state>
  308. </option>
  309. <option>
  310. <name>IExtraOptionsCheck</name>
  311. <state>0</state>
  312. </option>
  313. <option>
  314. <name>IExtraOptions</name>
  315. <state />
  316. </option>
  317. <option>
  318. <name>CCLangConformance</name>
  319. <state>0</state>
  320. </option>
  321. <option>
  322. <name>CCSignedPlainChar</name>
  323. <state>1</state>
  324. </option>
  325. <option>
  326. <name>CCRequirePrototypes</name>
  327. <state>0</state>
  328. </option>
  329. <option>
  330. <name>CCDiagWarnAreErr</name>
  331. <state>0</state>
  332. </option>
  333. <option>
  334. <name>CCCompilerRuntimeInfo</name>
  335. <state>0</state>
  336. </option>
  337. <option>
  338. <name>IFpuProcessor</name>
  339. <state>1</state>
  340. </option>
  341. <option>
  342. <name>OutputFile</name>
  343. <state>$FILE_BNAME$.o</state>
  344. </option>
  345. <option>
  346. <name>CCLibConfigHeader</name>
  347. <state>1</state>
  348. </option>
  349. <option>
  350. <name>PreInclude</name>
  351. <state />
  352. </option>
  353. <option>
  354. <name>CompilerMisraOverride</name>
  355. <state>0</state>
  356. </option>
  357. <option>
  358. <name>CCIncludePath2</name>
  359. <state />
  360. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class</state>
  361. <state>$PROJ_DIR$\..\libraries\m460\rtt_port\emac</state>
  362. <state>$PROJ_DIR$\..\..\..\components\legacy\include</state>
  363. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\dfs_net</state>
  364. <state>$PROJ_DIR$\..\..\..\components\drivers\sdio\sdhci\include</state>
  365. <state>$PROJ_DIR$\..\..\..\components\net\at\at_socket</state>
  366. <state>$PROJ_DIR$\..\..\..\components\legacy</state>
  367. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd</state>
  368. <state>$PROJ_DIR$\..\..\..\components\utilities\ulog</state>
  369. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice</state>
  370. <state>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto</state>
  371. <state>$PROJ_DIR$\..\libraries\m460\USBHostLib\inc</state>
  372. <state>$PROJ_DIR$\..\libraries\nu_packages\NuUtils\inc</state>
  373. <state>$PROJ_DIR$\..\..\..\components\net\at\include</state>
  374. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\devfs</state>
  375. <state>$PROJ_DIR$\..\..\..\components\drivers\spi</state>
  376. <state>$PROJ_DIR$\..\..\..\libcpu\arm\common</state>
  377. <state>$PROJ_DIR$\..\..\..\components\net\lwip\port</state>
  378. <state>$PROJ_DIR$\..\..\..\components\fal\inc</state>
  379. <state>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\include</state>
  380. <state>$PROJ_DIR$\applications</state>
  381. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\socket\sys_socket</state>
  382. <state>$PROJ_DIR$\..\..\..\components\utilities\utest</state>
  383. <state>$PROJ_DIR$\..\..\..\components\drivers\phy</state>
  384. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\include</state>
  385. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\include</state>
  386. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost</state>
  387. <state>$PROJ_DIR$\..\..\..\components\drivers\smp_call</state>
  388. <state>$PROJ_DIR$\..\..\..\components\drivers\include</state>
  389. <state>$PROJ_DIR$\..\libraries\nu_packages\NCT7717U</state>
  390. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\include</state>
  391. <state>$PROJ_DIR$\..\..\..\include</state>
  392. <state>$PROJ_DIR$\..\..\..\components\legacy\dfs</state>
  393. <state>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\include\netif</state>
  394. <state>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4</state>
  395. <state>$PROJ_DIR$\board\NuPinConfig</state>
  396. <state>$PROJ_DIR$\board</state>
  397. <state>$PROJ_DIR$\..\..\..\components\net\sal\include</state>
  398. <state>$PROJ_DIR$\..\libraries\m460\StdDriver\inc</state>
  399. <state>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core</state>
  400. <state>$PROJ_DIR$\..\..\..\components\net\sal\impl</state>
  401. <state>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat</state>
  402. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\extension</state>
  403. <state>$PROJ_DIR$\..\libraries\nu_packages\Demo</state>
  404. <state>$PROJ_DIR$\.</state>
  405. <state>$PROJ_DIR$\..\..\..\components\drivers\audio</state>
  406. <state>$PROJ_DIR$\..\libraries\m460\rtt_port</state>
  407. <state>$PROJ_DIR$\..\..\..\components\finsh</state>
  408. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\epoll</state>
  409. <state>$PROJ_DIR$\..\libraries\nu_packages\TPC</state>
  410. <state>$PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal</state>
  411. <state>$PROJ_DIR$\..\libraries\m460\Device\Nuvoton\m460\Include</state>
  412. <state>$PROJ_DIR$\..\..\..\components\libc\posix\ipc</state>
  413. <state>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\inc</state>
  414. <state>$PROJ_DIR$\..\libraries\m460\CMSIS\Include</state>
  415. <state>$PROJ_DIR$\..\..\..\components\net\sal\include\socket</state>
  416. <state>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll</state>
  417. <state>$PROJ_DIR$\..\..\..\components\net\netdev\include</state>
  418. </option>
  419. <option>
  420. <name>CCStdIncCheck</name>
  421. <state>0</state>
  422. </option>
  423. <option>
  424. <name>CCCodeSection</name>
  425. <state>.text</state>
  426. </option>
  427. <option>
  428. <name>IProcessorMode2</name>
  429. <state>1</state>
  430. </option>
  431. <option>
  432. <name>CCOptLevel</name>
  433. <state>2</state>
  434. </option>
  435. <option>
  436. <name>CCOptStrategy</name>
  437. <version>0</version>
  438. <state>0</state>
  439. </option>
  440. <option>
  441. <name>CCOptLevelSlave</name>
  442. <state>2</state>
  443. </option>
  444. <option>
  445. <name>CompilerMisraRules98</name>
  446. <version>0</version>
  447. <state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
  448. </option>
  449. <option>
  450. <name>CompilerMisraRules04</name>
  451. <version>0</version>
  452. <state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
  453. </option>
  454. <option>
  455. <name>CCPosIndRopi</name>
  456. <state>0</state>
  457. </option>
  458. <option>
  459. <name>CCPosIndRwpi</name>
  460. <state>0</state>
  461. </option>
  462. <option>
  463. <name>CCPosIndNoDynInit</name>
  464. <state>0</state>
  465. </option>
  466. <option>
  467. <name>IccLang</name>
  468. <state>0</state>
  469. </option>
  470. <option>
  471. <name>IccCDialect</name>
  472. <state>1</state>
  473. </option>
  474. <option>
  475. <name>IccAllowVLA</name>
  476. <state>0</state>
  477. </option>
  478. <option>
  479. <name>IccStaticDestr</name>
  480. <state>1</state>
  481. </option>
  482. <option>
  483. <name>IccCppInlineSemantics</name>
  484. <state>0</state>
  485. </option>
  486. <option>
  487. <name>IccCmsis</name>
  488. <state>1</state>
  489. </option>
  490. <option>
  491. <name>IccFloatSemantics</name>
  492. <state>0</state>
  493. </option>
  494. <option>
  495. <name>CCNoLiteralPool</name>
  496. <state>0</state>
  497. </option>
  498. <option>
  499. <name>CCOptStrategySlave</name>
  500. <version>0</version>
  501. <state>0</state>
  502. </option>
  503. <option>
  504. <name>CCGuardCalls</name>
  505. <state>1</state>
  506. </option>
  507. <option>
  508. <name>CCEncSource</name>
  509. <state>0</state>
  510. </option>
  511. <option>
  512. <name>CCEncOutput</name>
  513. <state>0</state>
  514. </option>
  515. <option>
  516. <name>CCEncOutputBom</name>
  517. <state>1</state>
  518. </option>
  519. <option>
  520. <name>CCEncInput</name>
  521. <state>0</state>
  522. </option>
  523. <option>
  524. <name>IccExceptions2</name>
  525. <state>0</state>
  526. </option>
  527. <option>
  528. <name>IccRTTI2</name>
  529. <state>0</state>
  530. </option>
  531. <option>
  532. <name>OICompilerExtraOption</name>
  533. <state>1</state>
  534. </option>
  535. </data>
  536. </settings>
  537. <settings>
  538. <name>AARM</name>
  539. <archiveVersion>2</archiveVersion>
  540. <data>
  541. <version>10</version>
  542. <wantNonLocal>1</wantNonLocal>
  543. <debug>0</debug>
  544. <option>
  545. <name>AObjPrefix</name>
  546. <state>1</state>
  547. </option>
  548. <option>
  549. <name>AEndian</name>
  550. <state>1</state>
  551. </option>
  552. <option>
  553. <name>ACaseSensitivity</name>
  554. <state>1</state>
  555. </option>
  556. <option>
  557. <name>MacroChars</name>
  558. <version>0</version>
  559. <state>0</state>
  560. </option>
  561. <option>
  562. <name>AWarnEnable</name>
  563. <state>0</state>
  564. </option>
  565. <option>
  566. <name>AWarnWhat</name>
  567. <state>0</state>
  568. </option>
  569. <option>
  570. <name>AWarnOne</name>
  571. <state />
  572. </option>
  573. <option>
  574. <name>AWarnRange1</name>
  575. <state />
  576. </option>
  577. <option>
  578. <name>AWarnRange2</name>
  579. <state />
  580. </option>
  581. <option>
  582. <name>ADebug</name>
  583. <state>1</state>
  584. </option>
  585. <option>
  586. <name>AltRegisterNames</name>
  587. <state>0</state>
  588. </option>
  589. <option>
  590. <name>ADefines</name>
  591. <state />
  592. </option>
  593. <option>
  594. <name>AList</name>
  595. <state>0</state>
  596. </option>
  597. <option>
  598. <name>AListHeader</name>
  599. <state>1</state>
  600. </option>
  601. <option>
  602. <name>AListing</name>
  603. <state>1</state>
  604. </option>
  605. <option>
  606. <name>Includes</name>
  607. <state>0</state>
  608. </option>
  609. <option>
  610. <name>MacDefs</name>
  611. <state>0</state>
  612. </option>
  613. <option>
  614. <name>MacExps</name>
  615. <state>1</state>
  616. </option>
  617. <option>
  618. <name>MacExec</name>
  619. <state>0</state>
  620. </option>
  621. <option>
  622. <name>OnlyAssed</name>
  623. <state>0</state>
  624. </option>
  625. <option>
  626. <name>MultiLine</name>
  627. <state>0</state>
  628. </option>
  629. <option>
  630. <name>PageLengthCheck</name>
  631. <state>0</state>
  632. </option>
  633. <option>
  634. <name>PageLength</name>
  635. <state>80</state>
  636. </option>
  637. <option>
  638. <name>TabSpacing</name>
  639. <state>8</state>
  640. </option>
  641. <option>
  642. <name>AXRef</name>
  643. <state>0</state>
  644. </option>
  645. <option>
  646. <name>AXRefDefines</name>
  647. <state>0</state>
  648. </option>
  649. <option>
  650. <name>AXRefInternal</name>
  651. <state>0</state>
  652. </option>
  653. <option>
  654. <name>AXRefDual</name>
  655. <state>0</state>
  656. </option>
  657. <option>
  658. <name>AProcessor</name>
  659. <state>1</state>
  660. </option>
  661. <option>
  662. <name>AFpuProcessor</name>
  663. <state>1</state>
  664. </option>
  665. <option>
  666. <name>AOutputFile</name>
  667. <state>$FILE_BNAME$.o</state>
  668. </option>
  669. <option>
  670. <name>ALimitErrorsCheck</name>
  671. <state>0</state>
  672. </option>
  673. <option>
  674. <name>ALimitErrorsEdit</name>
  675. <state>100</state>
  676. </option>
  677. <option>
  678. <name>AIgnoreStdInclude</name>
  679. <state>0</state>
  680. </option>
  681. <option>
  682. <name>AUserIncludes</name>
  683. <state />
  684. </option>
  685. <option>
  686. <name>AExtraOptionsCheckV2</name>
  687. <state>0</state>
  688. </option>
  689. <option>
  690. <name>AExtraOptionsV2</name>
  691. <state />
  692. </option>
  693. <option>
  694. <name>AsmNoLiteralPool</name>
  695. <state>0</state>
  696. </option>
  697. </data>
  698. </settings>
  699. <settings>
  700. <name>OBJCOPY</name>
  701. <archiveVersion>0</archiveVersion>
  702. <data>
  703. <version>1</version>
  704. <wantNonLocal>1</wantNonLocal>
  705. <debug>0</debug>
  706. <option>
  707. <name>OOCOutputFormat</name>
  708. <version>3</version>
  709. <state>3</state>
  710. </option>
  711. <option>
  712. <name>OCOutputOverride</name>
  713. <state>1</state>
  714. </option>
  715. <option>
  716. <name>OOCOutputFile</name>
  717. <state>rtthread.bin</state>
  718. </option>
  719. <option>
  720. <name>OOCCommandLineProducer</name>
  721. <state>1</state>
  722. </option>
  723. <option>
  724. <name>OOCObjCopyEnable</name>
  725. <state>1</state>
  726. </option>
  727. </data>
  728. </settings>
  729. <settings>
  730. <name>CUSTOM</name>
  731. <archiveVersion>3</archiveVersion>
  732. <data>
  733. <extensions />
  734. <cmdline />
  735. <hasPrio>0</hasPrio>
  736. </data>
  737. </settings>
  738. <settings>
  739. <name>BICOMP</name>
  740. <archiveVersion>0</archiveVersion>
  741. <data />
  742. </settings>
  743. <settings>
  744. <name>BUILDACTION</name>
  745. <archiveVersion>1</archiveVersion>
  746. <data>
  747. <prebuild />
  748. <postbuild />
  749. </data>
  750. </settings>
  751. <settings>
  752. <name>ILINK</name>
  753. <archiveVersion>0</archiveVersion>
  754. <data>
  755. <version>22</version>
  756. <wantNonLocal>1</wantNonLocal>
  757. <debug>0</debug>
  758. <option>
  759. <name>IlinkLibIOConfig</name>
  760. <state>1</state>
  761. </option>
  762. <option>
  763. <name>XLinkMisraHandler</name>
  764. <state>0</state>
  765. </option>
  766. <option>
  767. <name>IlinkInputFileSlave</name>
  768. <state>0</state>
  769. </option>
  770. <option>
  771. <name>IlinkOutputFile</name>
  772. <state>Template.out</state>
  773. </option>
  774. <option>
  775. <name>IlinkDebugInfoEnable</name>
  776. <state>1</state>
  777. </option>
  778. <option>
  779. <name>IlinkKeepSymbols</name>
  780. <state />
  781. </option>
  782. <option>
  783. <name>IlinkRawBinaryFile</name>
  784. <state />
  785. </option>
  786. <option>
  787. <name>IlinkRawBinarySymbol</name>
  788. <state />
  789. </option>
  790. <option>
  791. <name>IlinkRawBinarySegment</name>
  792. <state />
  793. </option>
  794. <option>
  795. <name>IlinkRawBinaryAlign</name>
  796. <state />
  797. </option>
  798. <option>
  799. <name>IlinkDefines</name>
  800. <state />
  801. </option>
  802. <option>
  803. <name>IlinkConfigDefines</name>
  804. <state />
  805. </option>
  806. <option>
  807. <name>IlinkMapFile</name>
  808. <state>0</state>
  809. </option>
  810. <option>
  811. <name>IlinkLogFile</name>
  812. <state>0</state>
  813. </option>
  814. <option>
  815. <name>IlinkLogInitialization</name>
  816. <state>0</state>
  817. </option>
  818. <option>
  819. <name>IlinkLogModule</name>
  820. <state>0</state>
  821. </option>
  822. <option>
  823. <name>IlinkLogSection</name>
  824. <state>0</state>
  825. </option>
  826. <option>
  827. <name>IlinkLogVeneer</name>
  828. <state>0</state>
  829. </option>
  830. <option>
  831. <name>IlinkIcfOverride</name>
  832. <state>1</state>
  833. </option>
  834. <option>
  835. <name>IlinkIcfFile</name>
  836. <state>$PROJ_DIR$\linking_scripts\m460_flash.icf</state>
  837. </option>
  838. <option>
  839. <name>IlinkIcfFileSlave</name>
  840. <state />
  841. </option>
  842. <option>
  843. <name>IlinkEnableRemarks</name>
  844. <state>0</state>
  845. </option>
  846. <option>
  847. <name>IlinkSuppressDiags</name>
  848. <state />
  849. </option>
  850. <option>
  851. <name>IlinkTreatAsRem</name>
  852. <state />
  853. </option>
  854. <option>
  855. <name>IlinkTreatAsWarn</name>
  856. <state />
  857. </option>
  858. <option>
  859. <name>IlinkTreatAsErr</name>
  860. <state />
  861. </option>
  862. <option>
  863. <name>IlinkWarningsAreErrors</name>
  864. <state>0</state>
  865. </option>
  866. <option>
  867. <name>IlinkUseExtraOptions</name>
  868. <state>0</state>
  869. </option>
  870. <option>
  871. <name>IlinkExtraOptions</name>
  872. <state />
  873. </option>
  874. <option>
  875. <name>IlinkLowLevelInterfaceSlave</name>
  876. <state>1</state>
  877. </option>
  878. <option>
  879. <name>IlinkAutoLibEnable</name>
  880. <state>1</state>
  881. </option>
  882. <option>
  883. <name>IlinkAdditionalLibs</name>
  884. <state />
  885. </option>
  886. <option>
  887. <name>IlinkOverrideProgramEntryLabel</name>
  888. <state>1</state>
  889. </option>
  890. <option>
  891. <name>IlinkProgramEntryLabelSelect</name>
  892. <state>0</state>
  893. </option>
  894. <option>
  895. <name>IlinkProgramEntryLabel</name>
  896. <state>Reset_Handler</state>
  897. </option>
  898. <option>
  899. <name>DoFill</name>
  900. <state>0</state>
  901. </option>
  902. <option>
  903. <name>FillerByte</name>
  904. <state>0xFF</state>
  905. </option>
  906. <option>
  907. <name>FillerStart</name>
  908. <state>0x0</state>
  909. </option>
  910. <option>
  911. <name>FillerEnd</name>
  912. <state>0x0</state>
  913. </option>
  914. <option>
  915. <name>CrcSize</name>
  916. <version>0</version>
  917. <state>1</state>
  918. </option>
  919. <option>
  920. <name>CrcAlign</name>
  921. <state>1</state>
  922. </option>
  923. <option>
  924. <name>CrcPoly</name>
  925. <state>0x11021</state>
  926. </option>
  927. <option>
  928. <name>CrcCompl</name>
  929. <version>0</version>
  930. <state>0</state>
  931. </option>
  932. <option>
  933. <name>CrcBitOrder</name>
  934. <version>0</version>
  935. <state>0</state>
  936. </option>
  937. <option>
  938. <name>CrcInitialValue</name>
  939. <state>0x0</state>
  940. </option>
  941. <option>
  942. <name>DoCrc</name>
  943. <state>0</state>
  944. </option>
  945. <option>
  946. <name>IlinkBE8Slave</name>
  947. <state>1</state>
  948. </option>
  949. <option>
  950. <name>IlinkBufferedTerminalOutput</name>
  951. <state>1</state>
  952. </option>
  953. <option>
  954. <name>IlinkStdoutInterfaceSlave</name>
  955. <state>1</state>
  956. </option>
  957. <option>
  958. <name>CrcFullSize</name>
  959. <state>0</state>
  960. </option>
  961. <option>
  962. <name>IlinkIElfToolPostProcess</name>
  963. <state>0</state>
  964. </option>
  965. <option>
  966. <name>IlinkLogAutoLibSelect</name>
  967. <state>0</state>
  968. </option>
  969. <option>
  970. <name>IlinkLogRedirSymbols</name>
  971. <state>0</state>
  972. </option>
  973. <option>
  974. <name>IlinkLogUnusedFragments</name>
  975. <state>0</state>
  976. </option>
  977. <option>
  978. <name>IlinkCrcReverseByteOrder</name>
  979. <state>0</state>
  980. </option>
  981. <option>
  982. <name>IlinkCrcUseAsInput</name>
  983. <state>1</state>
  984. </option>
  985. <option>
  986. <name>IlinkOptInline</name>
  987. <state>0</state>
  988. </option>
  989. <option>
  990. <name>IlinkOptExceptionsAllow</name>
  991. <state>1</state>
  992. </option>
  993. <option>
  994. <name>IlinkOptExceptionsForce</name>
  995. <state>0</state>
  996. </option>
  997. <option>
  998. <name>IlinkCmsis</name>
  999. <state>1</state>
  1000. </option>
  1001. <option>
  1002. <name>IlinkOptMergeDuplSections</name>
  1003. <state>0</state>
  1004. </option>
  1005. <option>
  1006. <name>IlinkOptUseVfe</name>
  1007. <state>1</state>
  1008. </option>
  1009. <option>
  1010. <name>IlinkOptForceVfe</name>
  1011. <state>0</state>
  1012. </option>
  1013. <option>
  1014. <name>IlinkStackAnalysisEnable</name>
  1015. <state>0</state>
  1016. </option>
  1017. <option>
  1018. <name>IlinkStackControlFile</name>
  1019. <state />
  1020. </option>
  1021. <option>
  1022. <name>IlinkStackCallGraphFile</name>
  1023. <state />
  1024. </option>
  1025. <option>
  1026. <name>CrcAlgorithm</name>
  1027. <version>1</version>
  1028. <state>1</state>
  1029. </option>
  1030. <option>
  1031. <name>CrcUnitSize</name>
  1032. <version>0</version>
  1033. <state>0</state>
  1034. </option>
  1035. <option>
  1036. <name>IlinkThreadsSlave</name>
  1037. <state>1</state>
  1038. </option>
  1039. <option>
  1040. <name>IlinkLogCallGraph</name>
  1041. <state>0</state>
  1042. </option>
  1043. <option>
  1044. <name>IlinkIcfFile_AltDefault</name>
  1045. <state />
  1046. </option>
  1047. <option>
  1048. <name>IlinkEncInput</name>
  1049. <state>0</state>
  1050. </option>
  1051. <option>
  1052. <name>IlinkEncOutput</name>
  1053. <state>0</state>
  1054. </option>
  1055. <option>
  1056. <name>IlinkEncOutputBom</name>
  1057. <state>1</state>
  1058. </option>
  1059. <option>
  1060. <name>IlinkHeapSelect</name>
  1061. <state>1</state>
  1062. </option>
  1063. <option>
  1064. <name>IlinkLocaleSelect</name>
  1065. <state>1</state>
  1066. </option>
  1067. <option>
  1068. <name>IlinkTrustzoneImportLibraryOut</name>
  1069. <state>###Unitialized###</state>
  1070. </option>
  1071. <option>
  1072. <name>OILinkExtraOption</name>
  1073. <state>1</state>
  1074. </option>
  1075. </data>
  1076. </settings>
  1077. <settings>
  1078. <name>IARCHIVE</name>
  1079. <archiveVersion>0</archiveVersion>
  1080. <data>
  1081. <version>0</version>
  1082. <wantNonLocal>1</wantNonLocal>
  1083. <debug>0</debug>
  1084. <option>
  1085. <name>IarchiveInputs</name>
  1086. <state />
  1087. </option>
  1088. <option>
  1089. <name>IarchiveOverride</name>
  1090. <state>0</state>
  1091. </option>
  1092. <option>
  1093. <name>IarchiveOutput</name>
  1094. <state>###Unitialized###</state>
  1095. </option>
  1096. </data>
  1097. </settings>
  1098. <settings>
  1099. <name>BILINK</name>
  1100. <archiveVersion>0</archiveVersion>
  1101. <data />
  1102. </settings>
  1103. </configuration>
  1104. <group>
  1105. <name>Applications</name>
  1106. <file>
  1107. <name>$PROJ_DIR$\applications\main.c</name>
  1108. </file>
  1109. <file>
  1110. <name>$PROJ_DIR$\applications\mnt.c</name>
  1111. </file>
  1112. </group>
  1113. <group>
  1114. <name>AT</name>
  1115. <file>
  1116. <name>$PROJ_DIR$\..\..\..\components\net\at\src\at_cli.c</name>
  1117. </file>
  1118. <file>
  1119. <name>$PROJ_DIR$\..\..\..\components\net\at\at_socket\at_socket.c</name>
  1120. </file>
  1121. <file>
  1122. <name>$PROJ_DIR$\..\..\..\components\net\at\src\at_client.c</name>
  1123. </file>
  1124. <file>
  1125. <name>$PROJ_DIR$\..\..\..\components\net\at\src\at_utils.c</name>
  1126. </file>
  1127. </group>
  1128. <group>
  1129. <name>CMSIS</name>
  1130. </group>
  1131. <group>
  1132. <name>Compiler</name>
  1133. <file>
  1134. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cctype.c</name>
  1135. </file>
  1136. <file>
  1137. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cstdlib.c</name>
  1138. </file>
  1139. <file>
  1140. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cstring.c</name>
  1141. </file>
  1142. <file>
  1143. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\ctime.c</name>
  1144. </file>
  1145. <file>
  1146. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cunistd.c</name>
  1147. </file>
  1148. <file>
  1149. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\common\cwchar.c</name>
  1150. </file>
  1151. <file>
  1152. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\environ.c</name>
  1153. </file>
  1154. <file>
  1155. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_close.c</name>
  1156. </file>
  1157. <file>
  1158. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_lseek.c</name>
  1159. </file>
  1160. <file>
  1161. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_mem.c</name>
  1162. </file>
  1163. <file>
  1164. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_open.c</name>
  1165. </file>
  1166. <file>
  1167. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_read.c</name>
  1168. </file>
  1169. <file>
  1170. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_remove.c</name>
  1171. </file>
  1172. <file>
  1173. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscall_write.c</name>
  1174. </file>
  1175. <file>
  1176. <name>$PROJ_DIR$\..\..\..\components\libc\compilers\dlib\syscalls.c</name>
  1177. </file>
  1178. </group>
  1179. <group>
  1180. <name>DeviceDrivers</name>
  1181. <file>
  1182. <name>$PROJ_DIR$\..\..\..\components\drivers\audio\dev_audio.c</name>
  1183. </file>
  1184. <file>
  1185. <name>$PROJ_DIR$\..\..\..\components\drivers\audio\dev_audio_pipe.c</name>
  1186. </file>
  1187. <file>
  1188. <name>$PROJ_DIR$\..\..\..\components\drivers\block\blk.c</name>
  1189. </file>
  1190. <file>
  1191. <name>$PROJ_DIR$\..\..\..\components\drivers\block\blk_dev.c</name>
  1192. </file>
  1193. <file>
  1194. <name>$PROJ_DIR$\..\..\..\components\drivers\block\blk_dfs.c</name>
  1195. </file>
  1196. <file>
  1197. <name>$PROJ_DIR$\..\..\..\components\drivers\block\blk_partition.c</name>
  1198. </file>
  1199. <file>
  1200. <name>$PROJ_DIR$\..\..\..\components\drivers\block\partitions\dfs.c</name>
  1201. </file>
  1202. <file>
  1203. <name>$PROJ_DIR$\..\..\..\components\drivers\block\partitions\efi.c</name>
  1204. </file>
  1205. <file>
  1206. <name>$PROJ_DIR$\..\..\..\components\drivers\can\dev_can.c</name>
  1207. </file>
  1208. <file>
  1209. <name>$PROJ_DIR$\..\..\..\components\drivers\core\device.c</name>
  1210. </file>
  1211. <file>
  1212. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_crc.c</name>
  1213. </file>
  1214. <file>
  1215. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_hash.c</name>
  1216. </file>
  1217. <file>
  1218. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_rng.c</name>
  1219. </file>
  1220. <file>
  1221. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hw_symmetric.c</name>
  1222. </file>
  1223. <file>
  1224. <name>$PROJ_DIR$\..\..\..\components\drivers\hwcrypto\hwcrypto.c</name>
  1225. </file>
  1226. <file>
  1227. <name>$PROJ_DIR$\..\..\..\components\drivers\hwtimer\hwtimer.c</name>
  1228. </file>
  1229. <file>
  1230. <name>$PROJ_DIR$\..\..\..\components\drivers\i2c\dev_i2c_bit_ops.c</name>
  1231. </file>
  1232. <file>
  1233. <name>$PROJ_DIR$\..\..\..\components\drivers\i2c\dev_i2c_core.c</name>
  1234. </file>
  1235. <file>
  1236. <name>$PROJ_DIR$\..\..\..\components\drivers\i2c\dev_i2c_dev.c</name>
  1237. </file>
  1238. <file>
  1239. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\completion_comm.c</name>
  1240. </file>
  1241. <file>
  1242. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\completion_up.c</name>
  1243. </file>
  1244. <file>
  1245. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\condvar.c</name>
  1246. </file>
  1247. <file>
  1248. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\dataqueue.c</name>
  1249. </file>
  1250. <file>
  1251. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\pipe.c</name>
  1252. </file>
  1253. <file>
  1254. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\ringblk_buf.c</name>
  1255. </file>
  1256. <file>
  1257. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\ringbuffer.c</name>
  1258. </file>
  1259. <file>
  1260. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\waitqueue.c</name>
  1261. </file>
  1262. <file>
  1263. <name>$PROJ_DIR$\..\..\..\components\drivers\ipc\workqueue.c</name>
  1264. </file>
  1265. <file>
  1266. <name>$PROJ_DIR$\..\..\..\components\drivers\misc\rt_drv_pwm.c</name>
  1267. </file>
  1268. <file>
  1269. <name>$PROJ_DIR$\..\..\..\components\drivers\misc\rt_inputcapture.c</name>
  1270. </file>
  1271. <file>
  1272. <name>$PROJ_DIR$\..\..\..\components\drivers\pin\dev_pin.c</name>
  1273. </file>
  1274. <file>
  1275. <name>$PROJ_DIR$\..\..\..\components\drivers\rtc\dev_rtc.c</name>
  1276. </file>
  1277. <file>
  1278. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_block.c</name>
  1279. </file>
  1280. <file>
  1281. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_mmc.c</name>
  1282. </file>
  1283. <file>
  1284. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_mmcsd_core.c</name>
  1285. </file>
  1286. <file>
  1287. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_sd.c</name>
  1288. </file>
  1289. <file>
  1290. <name>$PROJ_DIR$\..\..\..\components\drivers\sdio\dev_sdio.c</name>
  1291. </file>
  1292. <file>
  1293. <name>$PROJ_DIR$\..\..\..\components\drivers\sensor\v2\sensor.c</name>
  1294. </file>
  1295. <file>
  1296. <name>$PROJ_DIR$\..\..\..\components\drivers\sensor\v2\sensor_cmd.c</name>
  1297. </file>
  1298. <file>
  1299. <name>$PROJ_DIR$\..\..\..\components\drivers\serial\dev_serial.c</name>
  1300. </file>
  1301. <file>
  1302. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_qspi_core.c</name>
  1303. </file>
  1304. <file>
  1305. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_spi.c</name>
  1306. </file>
  1307. <file>
  1308. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_spi_core.c</name>
  1309. </file>
  1310. <file>
  1311. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\dev_spi_flash_sfud.c</name>
  1312. </file>
  1313. <file>
  1314. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\src\sfud.c</name>
  1315. </file>
  1316. <file>
  1317. <name>$PROJ_DIR$\..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c</name>
  1318. </file>
  1319. <file>
  1320. <name>$PROJ_DIR$\..\..\..\components\drivers\watchdog\dev_watchdog.c</name>
  1321. </file>
  1322. </group>
  1323. <group>
  1324. <name>Drivers</name>
  1325. <file>
  1326. <name>$PROJ_DIR$\..\libraries\m460\Device\Nuvoton\m460\Source\IAR\startup_M460.s</name>
  1327. </file>
  1328. <file>
  1329. <name>$PROJ_DIR$\..\libraries\m460\Device\Nuvoton\m460\Source\system_m460.c</name>
  1330. </file>
  1331. <file>
  1332. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_bpwm.c</name>
  1333. </file>
  1334. <file>
  1335. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_bpwm_capture.c</name>
  1336. </file>
  1337. <file>
  1338. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_canfd.c</name>
  1339. </file>
  1340. <file>
  1341. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_ccap.c</name>
  1342. </file>
  1343. <file>
  1344. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_common.c</name>
  1345. </file>
  1346. <file>
  1347. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_crc.c</name>
  1348. </file>
  1349. <file>
  1350. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_crypto.c</name>
  1351. </file>
  1352. <file>
  1353. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_dac.c</name>
  1354. </file>
  1355. <file>
  1356. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_eadc.c</name>
  1357. </file>
  1358. <file>
  1359. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_ebi.c</name>
  1360. </file>
  1361. <file>
  1362. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_ecap.c</name>
  1363. </file>
  1364. <file>
  1365. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_epwm.c</name>
  1366. </file>
  1367. <file>
  1368. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_epwm_capture.c</name>
  1369. </file>
  1370. <file>
  1371. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_eqei.c</name>
  1372. </file>
  1373. <file>
  1374. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_fmc.c</name>
  1375. </file>
  1376. <file>
  1377. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_gpio.c</name>
  1378. </file>
  1379. <file>
  1380. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_hsotg.c</name>
  1381. </file>
  1382. <file>
  1383. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_hsusbd.c</name>
  1384. </file>
  1385. <file>
  1386. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_i2c.c</name>
  1387. </file>
  1388. <file>
  1389. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_i2s.c</name>
  1390. </file>
  1391. <file>
  1392. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_pdma.c</name>
  1393. </file>
  1394. <file>
  1395. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_qspi.c</name>
  1396. </file>
  1397. <file>
  1398. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_rtc.c</name>
  1399. </file>
  1400. <file>
  1401. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_scuart.c</name>
  1402. </file>
  1403. <file>
  1404. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_sdh.c</name>
  1405. </file>
  1406. <file>
  1407. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_sdio.c</name>
  1408. </file>
  1409. <file>
  1410. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_softi2c.c</name>
  1411. </file>
  1412. <file>
  1413. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_spi.c</name>
  1414. </file>
  1415. <file>
  1416. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_spii2s.c</name>
  1417. </file>
  1418. <file>
  1419. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_timer.c</name>
  1420. </file>
  1421. <file>
  1422. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_tpwm.c</name>
  1423. </file>
  1424. <file>
  1425. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_trng.c</name>
  1426. </file>
  1427. <file>
  1428. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_uart.c</name>
  1429. </file>
  1430. <file>
  1431. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_ui2c.c</name>
  1432. </file>
  1433. <file>
  1434. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_usbd.c</name>
  1435. </file>
  1436. <file>
  1437. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_usbhost.c</name>
  1438. </file>
  1439. <file>
  1440. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_uspi.c</name>
  1441. </file>
  1442. <file>
  1443. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_uuart.c</name>
  1444. </file>
  1445. <file>
  1446. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\drv_wdt.c</name>
  1447. </file>
  1448. <file>
  1449. <name>$PROJ_DIR$\board\NuPinConfig\nutool_pincfg.c</name>
  1450. </file>
  1451. <file>
  1452. <name>$PROJ_DIR$\board\board_dev.c</name>
  1453. </file>
  1454. <file>
  1455. <name>$PROJ_DIR$\board\nutool_modclkcfg.c</name>
  1456. </file>
  1457. <file>
  1458. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\emac\drv_emac.c</name>
  1459. </file>
  1460. <file>
  1461. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\emac\mii.c</name>
  1462. </file>
  1463. <file>
  1464. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\emac\synopGMAC_Dev.c</name>
  1465. </file>
  1466. <file>
  1467. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\emac\synopGMAC_network_interface.c</name>
  1468. </file>
  1469. <file>
  1470. <name>$PROJ_DIR$\..\libraries\m460\rtt_port\emac\synopGMAC_plat.c</name>
  1471. </file>
  1472. </group>
  1473. <group>
  1474. <name>Fal</name>
  1475. <file>
  1476. <name>$PROJ_DIR$\..\..\..\components\fal\samples\porting\fal_flash_sfud_port.c</name>
  1477. </file>
  1478. <file>
  1479. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal_rtt.c</name>
  1480. </file>
  1481. <file>
  1482. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal_partition.c</name>
  1483. </file>
  1484. <file>
  1485. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal.c</name>
  1486. </file>
  1487. <file>
  1488. <name>$PROJ_DIR$\..\..\..\components\fal\src\fal_flash.c</name>
  1489. </file>
  1490. </group>
  1491. <group>
  1492. <name>Filesystem</name>
  1493. <file>
  1494. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\devfs\devfs.c</name>
  1495. </file>
  1496. <file>
  1497. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat\dfs_elm.c</name>
  1498. </file>
  1499. <file>
  1500. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat\ff.c</name>
  1501. </file>
  1502. <file>
  1503. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\filesystems\elmfat\ffunicode.c</name>
  1504. </file>
  1505. <file>
  1506. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs.c</name>
  1507. </file>
  1508. <file>
  1509. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs_file.c</name>
  1510. </file>
  1511. <file>
  1512. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs_fs.c</name>
  1513. </file>
  1514. <file>
  1515. <name>$PROJ_DIR$\..\..\..\components\dfs\dfs_v1\src\dfs_posix.c</name>
  1516. </file>
  1517. </group>
  1518. <group>
  1519. <name>Finsh</name>
  1520. <file>
  1521. <name>$PROJ_DIR$\..\..\..\components\finsh\msh_parse.c</name>
  1522. </file>
  1523. <file>
  1524. <name>$PROJ_DIR$\..\..\..\components\finsh\shell.c</name>
  1525. </file>
  1526. <file>
  1527. <name>$PROJ_DIR$\..\..\..\components\finsh\cmd.c</name>
  1528. </file>
  1529. <file>
  1530. <name>$PROJ_DIR$\..\..\..\components\finsh\msh.c</name>
  1531. </file>
  1532. <file>
  1533. <name>$PROJ_DIR$\..\..\..\components\finsh\msh_file.c</name>
  1534. </file>
  1535. </group>
  1536. <group>
  1537. <name>Kernel</name>
  1538. <file>
  1539. <name>$PROJ_DIR$\..\..\..\src\clock.c</name>
  1540. </file>
  1541. <file>
  1542. <name>$PROJ_DIR$\..\..\..\src\components.c</name>
  1543. </file>
  1544. <file>
  1545. <name>$PROJ_DIR$\..\..\..\src\cpu_up.c</name>
  1546. </file>
  1547. <file>
  1548. <name>$PROJ_DIR$\..\..\..\src\defunct.c</name>
  1549. </file>
  1550. <file>
  1551. <name>$PROJ_DIR$\..\..\..\src\idle.c</name>
  1552. </file>
  1553. <file>
  1554. <name>$PROJ_DIR$\..\..\..\src\ipc.c</name>
  1555. </file>
  1556. <file>
  1557. <name>$PROJ_DIR$\..\..\..\src\irq.c</name>
  1558. </file>
  1559. <file>
  1560. <name>$PROJ_DIR$\..\..\..\src\kservice.c</name>
  1561. </file>
  1562. <file>
  1563. <name>$PROJ_DIR$\..\..\..\src\mem.c</name>
  1564. </file>
  1565. <file>
  1566. <name>$PROJ_DIR$\..\..\..\src\mempool.c</name>
  1567. </file>
  1568. <file>
  1569. <name>$PROJ_DIR$\..\..\..\src\object.c</name>
  1570. </file>
  1571. <file>
  1572. <name>$PROJ_DIR$\..\..\..\src\scheduler_comm.c</name>
  1573. </file>
  1574. <file>
  1575. <name>$PROJ_DIR$\..\..\..\src\scheduler_up.c</name>
  1576. </file>
  1577. <file>
  1578. <name>$PROJ_DIR$\..\..\..\src\signal.c</name>
  1579. </file>
  1580. <file>
  1581. <name>$PROJ_DIR$\..\..\..\src\thread.c</name>
  1582. </file>
  1583. <file>
  1584. <name>$PROJ_DIR$\..\..\..\src\timer.c</name>
  1585. </file>
  1586. </group>
  1587. <group>
  1588. <name>klibc</name>
  1589. <file>
  1590. <name>$PROJ_DIR$\..\..\..\src\klibc\kerrno.c</name>
  1591. </file>
  1592. <file>
  1593. <name>$PROJ_DIR$\..\..\..\src\klibc\rt_vsnprintf_std.c</name>
  1594. </file>
  1595. <file>
  1596. <name>$PROJ_DIR$\..\..\..\src\klibc\rt_vsscanf.c</name>
  1597. </file>
  1598. <file>
  1599. <name>$PROJ_DIR$\..\..\..\src\klibc\kstring.c</name>
  1600. </file>
  1601. <file>
  1602. <name>$PROJ_DIR$\..\..\..\src\klibc\kstdio.c</name>
  1603. </file>
  1604. </group>
  1605. <group>
  1606. <name>Legacy</name>
  1607. <file>
  1608. <name>$PROJ_DIR$\..\..\..\components\legacy\ipc\workqueue_legacy.c</name>
  1609. </file>
  1610. </group>
  1611. <group>
  1612. <name>libcpu</name>
  1613. <file>
  1614. <name>$PROJ_DIR$\..\..\..\libcpu\arm\common\atomic_arm.c</name>
  1615. </file>
  1616. <file>
  1617. <name>$PROJ_DIR$\..\..\..\libcpu\arm\common\div0.c</name>
  1618. </file>
  1619. <file>
  1620. <name>$PROJ_DIR$\..\..\..\libcpu\arm\common\showmem.c</name>
  1621. </file>
  1622. <file>
  1623. <name>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4\context_iar.S</name>
  1624. </file>
  1625. <file>
  1626. <name>$PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4\cpuport.c</name>
  1627. </file>
  1628. </group>
  1629. <group>
  1630. <name>Libraries</name>
  1631. <file>
  1632. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_rtc.c</name>
  1633. </file>
  1634. <file>
  1635. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_epwm.c</name>
  1636. </file>
  1637. <file>
  1638. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_timer_pwm.c</name>
  1639. </file>
  1640. <file>
  1641. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_crypto.c</name>
  1642. </file>
  1643. <file>
  1644. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_i2s.c</name>
  1645. </file>
  1646. <file>
  1647. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_clk.c</name>
  1648. </file>
  1649. <file>
  1650. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_dac.c</name>
  1651. </file>
  1652. <file>
  1653. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_sys.c</name>
  1654. </file>
  1655. <file>
  1656. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_timer.c</name>
  1657. </file>
  1658. <file>
  1659. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_hsusbd.c</name>
  1660. </file>
  1661. <file>
  1662. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_pdma.c</name>
  1663. </file>
  1664. <file>
  1665. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_bpwm.c</name>
  1666. </file>
  1667. <file>
  1668. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_hbi.c</name>
  1669. </file>
  1670. <file>
  1671. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_sc.c</name>
  1672. </file>
  1673. <file>
  1674. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_eqei.c</name>
  1675. </file>
  1676. <file>
  1677. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_spi.c</name>
  1678. </file>
  1679. <file>
  1680. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_fmc.c</name>
  1681. </file>
  1682. <file>
  1683. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_kpi.c</name>
  1684. </file>
  1685. <file>
  1686. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_ecap.c</name>
  1687. </file>
  1688. <file>
  1689. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_uart.c</name>
  1690. </file>
  1691. <file>
  1692. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_usci_i2c.c</name>
  1693. </file>
  1694. <file>
  1695. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_rng.c</name>
  1696. </file>
  1697. <file>
  1698. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_canfd.c</name>
  1699. </file>
  1700. <file>
  1701. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_trng.c</name>
  1702. </file>
  1703. <file>
  1704. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_scuart.c</name>
  1705. </file>
  1706. <file>
  1707. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_sdh.c</name>
  1708. </file>
  1709. <file>
  1710. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_gpio.c</name>
  1711. </file>
  1712. <file>
  1713. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_wdt.c</name>
  1714. </file>
  1715. <file>
  1716. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_keystore.c</name>
  1717. </file>
  1718. <file>
  1719. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_ebi.c</name>
  1720. </file>
  1721. <file>
  1722. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_usci_spi.c</name>
  1723. </file>
  1724. <file>
  1725. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_usci_uart.c</name>
  1726. </file>
  1727. <file>
  1728. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_qspi.c</name>
  1729. </file>
  1730. <file>
  1731. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_ccap.c</name>
  1732. </file>
  1733. <file>
  1734. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_eadc.c</name>
  1735. </file>
  1736. <file>
  1737. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_usbd.c</name>
  1738. </file>
  1739. <file>
  1740. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_i2c.c</name>
  1741. </file>
  1742. <file>
  1743. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_spim.c</name>
  1744. </file>
  1745. <file>
  1746. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_acmp.c</name>
  1747. </file>
  1748. <file>
  1749. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_crc.c</name>
  1750. </file>
  1751. <file>
  1752. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_bmc.c</name>
  1753. </file>
  1754. <file>
  1755. <name>$PROJ_DIR$\..\libraries\m460\StdDriver\src\nu_wwdt.c</name>
  1756. </file>
  1757. </group>
  1758. <group>
  1759. <name>lwIP</name>
  1760. <file>
  1761. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\api_lib.c</name>
  1762. </file>
  1763. <file>
  1764. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\api_msg.c</name>
  1765. </file>
  1766. <file>
  1767. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\err.c</name>
  1768. </file>
  1769. <file>
  1770. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\if_api.c</name>
  1771. </file>
  1772. <file>
  1773. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\netbuf.c</name>
  1774. </file>
  1775. <file>
  1776. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\netdb.c</name>
  1777. </file>
  1778. <file>
  1779. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\netifapi.c</name>
  1780. </file>
  1781. <file>
  1782. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\sockets.c</name>
  1783. </file>
  1784. <file>
  1785. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\api\tcpip.c</name>
  1786. </file>
  1787. <file>
  1788. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\apps\ping\ping.c</name>
  1789. </file>
  1790. <file>
  1791. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\altcp.c</name>
  1792. </file>
  1793. <file>
  1794. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\altcp_alloc.c</name>
  1795. </file>
  1796. <file>
  1797. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\altcp_tcp.c</name>
  1798. </file>
  1799. <file>
  1800. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\def.c</name>
  1801. </file>
  1802. <file>
  1803. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\dns.c</name>
  1804. </file>
  1805. <file>
  1806. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\inet_chksum.c</name>
  1807. </file>
  1808. <file>
  1809. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\init.c</name>
  1810. </file>
  1811. <file>
  1812. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ip.c</name>
  1813. </file>
  1814. <file>
  1815. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\autoip.c</name>
  1816. </file>
  1817. <file>
  1818. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\dhcp.c</name>
  1819. </file>
  1820. <file>
  1821. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\etharp.c</name>
  1822. </file>
  1823. <file>
  1824. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\icmp.c</name>
  1825. </file>
  1826. <file>
  1827. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\igmp.c</name>
  1828. </file>
  1829. <file>
  1830. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\ip4.c</name>
  1831. </file>
  1832. <file>
  1833. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\ip4_addr.c</name>
  1834. </file>
  1835. <file>
  1836. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\ipv4\ip4_frag.c</name>
  1837. </file>
  1838. <file>
  1839. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\memp.c</name>
  1840. </file>
  1841. <file>
  1842. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\netif.c</name>
  1843. </file>
  1844. <file>
  1845. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\pbuf.c</name>
  1846. </file>
  1847. <file>
  1848. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\raw.c</name>
  1849. </file>
  1850. <file>
  1851. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\stats.c</name>
  1852. </file>
  1853. <file>
  1854. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\sys.c</name>
  1855. </file>
  1856. <file>
  1857. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\tcp.c</name>
  1858. </file>
  1859. <file>
  1860. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\tcp_in.c</name>
  1861. </file>
  1862. <file>
  1863. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\tcp_out.c</name>
  1864. </file>
  1865. <file>
  1866. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\timeouts.c</name>
  1867. </file>
  1868. <file>
  1869. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\core\udp.c</name>
  1870. </file>
  1871. <file>
  1872. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\netif\ethernet.c</name>
  1873. </file>
  1874. <file>
  1875. <name>$PROJ_DIR$\..\..\..\components\net\lwip\lwip-2.1.2\src\netif\lowpan6.c</name>
  1876. </file>
  1877. <file>
  1878. <name>$PROJ_DIR$\..\..\..\components\net\lwip\port\ethernetif.c</name>
  1879. </file>
  1880. <file>
  1881. <name>$PROJ_DIR$\..\..\..\components\net\lwip\port\sys_arch.c</name>
  1882. </file>
  1883. </group>
  1884. <group>
  1885. <name>m460_usbhostlib</name>
  1886. <file>
  1887. <name>$PROJ_DIR$\..\libraries\m460\USBHostLib\src\ehci_iso.c</name>
  1888. </file>
  1889. <file>
  1890. <name>$PROJ_DIR$\..\libraries\m460\USBHostLib\src\mem_alloc.c</name>
  1891. </file>
  1892. <file>
  1893. <name>$PROJ_DIR$\..\libraries\m460\USBHostLib\src\usb_core.c</name>
  1894. </file>
  1895. <file>
  1896. <name>$PROJ_DIR$\..\libraries\m460\USBHostLib\src\ehci.c</name>
  1897. </file>
  1898. <file>
  1899. <name>$PROJ_DIR$\..\libraries\m460\USBHostLib\src\ohci.c</name>
  1900. </file>
  1901. </group>
  1902. <group>
  1903. <name>nu_pkgs_demo</name>
  1904. <file>
  1905. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\ccap_saver.c</name>
  1906. </file>
  1907. <file>
  1908. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\hwsem_counter.c</name>
  1909. </file>
  1910. <file>
  1911. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\wormhole_demo.c</name>
  1912. </file>
  1913. <file>
  1914. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\usbd_hid_dance_mouse.c</name>
  1915. </file>
  1916. <file>
  1917. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\ccap_demo.c</name>
  1918. </file>
  1919. <file>
  1920. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\usbd_cdc_vcom_echo.c</name>
  1921. </file>
  1922. <file>
  1923. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\smp_demo.c</name>
  1924. </file>
  1925. <file>
  1926. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\slcd_show_tick.c</name>
  1927. </file>
  1928. <file>
  1929. <name>$PROJ_DIR$\..\libraries\nu_packages\Demo\atdev_utils.c</name>
  1930. </file>
  1931. </group>
  1932. <group>
  1933. <name>nu_pkgs_nct7717u</name>
  1934. <file>
  1935. <name>$PROJ_DIR$\..\libraries\nu_packages\NCT7717U\sensor_nct7717u.c</name>
  1936. </file>
  1937. </group>
  1938. <group>
  1939. <name>nu_pkgs_tpc</name>
  1940. </group>
  1941. <group>
  1942. <name>numicro_common</name>
  1943. </group>
  1944. <group>
  1945. <name>POSIX</name>
  1946. <file>
  1947. <name>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll\poll.c</name>
  1948. </file>
  1949. <file>
  1950. <name>$PROJ_DIR$\..\..\..\components\libc\posix\io\poll\select.c</name>
  1951. </file>
  1952. </group>
  1953. <group>
  1954. <name>rt_usbd</name>
  1955. <file>
  1956. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice\class\mstorage.c</name>
  1957. </file>
  1958. <file>
  1959. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice\core\usbdevice.c</name>
  1960. </file>
  1961. <file>
  1962. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbdevice\core\usbdevice_core.c</name>
  1963. </file>
  1964. </group>
  1965. <group>
  1966. <name>rt_usbh</name>
  1967. <file>
  1968. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\driver.c</name>
  1969. </file>
  1970. <file>
  1971. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\usbhost.c</name>
  1972. </file>
  1973. <file>
  1974. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class\udisk.c</name>
  1975. </file>
  1976. <file>
  1977. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\hub.c</name>
  1978. </file>
  1979. <file>
  1980. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\core\usbhost_core.c</name>
  1981. </file>
  1982. <file>
  1983. <name>$PROJ_DIR$\..\..\..\components\legacy\usb\usbhost\class\mass.c</name>
  1984. </file>
  1985. </group>
  1986. <group>
  1987. <name>SAL</name>
  1988. <file>
  1989. <name>$PROJ_DIR$\..\..\..\components\net\netdev\src\netdev.c</name>
  1990. </file>
  1991. <file>
  1992. <name>$PROJ_DIR$\..\..\..\components\net\netdev\src\netdev_ipaddr.c</name>
  1993. </file>
  1994. <file>
  1995. <name>$PROJ_DIR$\..\..\..\components\net\sal\dfs_net\dfs_net.c</name>
  1996. </file>
  1997. <file>
  1998. <name>$PROJ_DIR$\..\..\..\components\net\sal\impl\af_inet_at.c</name>
  1999. </file>
  2000. <file>
  2001. <name>$PROJ_DIR$\..\..\..\components\net\sal\impl\af_inet_lwip.c</name>
  2002. </file>
  2003. <file>
  2004. <name>$PROJ_DIR$\..\..\..\components\net\sal\socket\net_netdb.c</name>
  2005. </file>
  2006. <file>
  2007. <name>$PROJ_DIR$\..\..\..\components\net\sal\socket\net_sockets.c</name>
  2008. </file>
  2009. <file>
  2010. <name>$PROJ_DIR$\..\..\..\components\net\sal\src\sal_socket.c</name>
  2011. </file>
  2012. </group>
  2013. <group>
  2014. <name>UTest</name>
  2015. <file>
  2016. <name>$PROJ_DIR$\..\..\..\components\utilities\utest\TC_uassert.c</name>
  2017. </file>
  2018. <file>
  2019. <name>$PROJ_DIR$\..\..\..\components\utilities\utest\utest.c</name>
  2020. </file>
  2021. </group>
  2022. <group>
  2023. <name>utestcases</name>
  2024. </group>
  2025. <group>
  2026. <name>Utilities</name>
  2027. <file>
  2028. <name>$PROJ_DIR$\..\..\..\components\utilities\ulog\backend\console_be.c</name>
  2029. </file>
  2030. <file>
  2031. <name>$PROJ_DIR$\..\..\..\components\utilities\ulog\ulog.c</name>
  2032. </file>
  2033. </group>
  2034. </project>