threadx_smpdemo.ewp 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <fileVersion>4</fileVersion>
  4. <configuration>
  5. <name>Debug</name>
  6. <toolchain>
  7. <name>RISCV</name>
  8. </toolchain>
  9. <debug>1</debug>
  10. <settings>
  11. <name>General</name>
  12. <archiveVersion>5</archiveVersion>
  13. <data>
  14. <version>11</version>
  15. <wantNonLocal>1</wantNonLocal>
  16. <debug>1</debug>
  17. <option>
  18. <name>GDeviceSelect</name>
  19. <state>NX900 Nuclei NX900</state>
  20. </option>
  21. <option>
  22. <name>GOutputBinary</name>
  23. <state>0</state>
  24. </option>
  25. <option>
  26. <name>ExePath</name>
  27. <state>Debug\Exe</state>
  28. </option>
  29. <option>
  30. <name>ObjPath</name>
  31. <state>Debug\Obj</state>
  32. </option>
  33. <option>
  34. <name>ListPath</name>
  35. <state>Debug\List</state>
  36. </option>
  37. <option>
  38. <name>BrowseInfoPath</name>
  39. <state>Debug\BrowseInfo</state>
  40. </option>
  41. <option>
  42. <name>GRuntimeLibSelect</name>
  43. <version>1</version>
  44. <state>1</state>
  45. </option>
  46. <option>
  47. <name>GRTDescription</name>
  48. <state>A compact configuration of the C/C++14 runtime library. No locale interface, C locale, no file descriptor support, no multibytes in printf and scanf, and no hex floats in strtod.</state>
  49. </option>
  50. <option>
  51. <name>GRTConfigPath</name>
  52. <state>$TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h</state>
  53. </option>
  54. <option>
  55. <name>GRuntimeLibSelectSlave</name>
  56. <version>1</version>
  57. <state>1</state>
  58. </option>
  59. <option>
  60. <name>GRuntimeLibThreads</name>
  61. <state>0</state>
  62. </option>
  63. <option>
  64. <name>GInputDescription</name>
  65. <state>Automatic choice of formatter, without multibyte support.</state>
  66. </option>
  67. <option>
  68. <name>GOutputDescription</name>
  69. <state>Automatic choice of formatter, without multibyte support.</state>
  70. </option>
  71. <option>
  72. <name>GenMathFunctionVariant</name>
  73. <version>0</version>
  74. <state>0</state>
  75. </option>
  76. <option>
  77. <name>GenMathFunctionDescription</name>
  78. <state>Default variants of cos, sin, tan, log, log10, pow, and exp.</state>
  79. </option>
  80. <option>
  81. <name>GGeneralStack</name>
  82. <state>0x1000</state>
  83. </option>
  84. <option>
  85. <name>GHeapSize</name>
  86. <state>0x1000</state>
  87. </option>
  88. <option>
  89. <name>GNumCores</name>
  90. <state>1</state>
  91. </option>
  92. <option>
  93. <name>OGPrintfVariant</name>
  94. <version>0</version>
  95. <state>0</state>
  96. </option>
  97. <option>
  98. <name>OGPrintfMultibyteSupport</name>
  99. <state>0</state>
  100. </option>
  101. <option>
  102. <name>OGScanfVariant</name>
  103. <version>0</version>
  104. <state>0</state>
  105. </option>
  106. <option>
  107. <name>OGScanfMultibyteSupport</name>
  108. <state>0</state>
  109. </option>
  110. <option>
  111. <name>OgLibHeap</name>
  112. <state>0</state>
  113. </option>
  114. <option>
  115. <name>OGLibAdditionalLocale</name>
  116. <state>0</state>
  117. </option>
  118. <option>
  119. <name>GenLocaleTags</name>
  120. <state></state>
  121. </option>
  122. <option>
  123. <name>GenLocaleDisplayOnly</name>
  124. <state></state>
  125. </option>
  126. <option>
  127. <name>GDeviceSelectSlave</name>
  128. <state>N300 Nuclei N300</state>
  129. </option>
  130. <option>
  131. <name>GGeneralAutoVectorSetup</name>
  132. <state>0</state>
  133. </option>
  134. <option>
  135. <name>GDeviceCoreIBASRadioSlave</name>
  136. <state>1</state>
  137. </option>
  138. <option>
  139. <name>GDeviceMultSlave</name>
  140. <state>1</state>
  141. </option>
  142. <option>
  143. <name>GDeviceAtomicSlave</name>
  144. <state>1</state>
  145. </option>
  146. <option>
  147. <name>GDeviceCompactSlave</name>
  148. <state>1</state>
  149. </option>
  150. <option>
  151. <name>GDeviceFloatSelectSlave</name>
  152. <version>1</version>
  153. <state>2</state>
  154. </option>
  155. <option>
  156. <name>GCoreDevice</name>
  157. <state>RV64IMAFDC</state>
  158. </option>
  159. <option>
  160. <name>RadioStdOutErr</name>
  161. <state>0</state>
  162. </option>
  163. <option>
  164. <name>RadioLibLowLev</name>
  165. <state>1</state>
  166. </option>
  167. <option>
  168. <name>OGBufferedTerminalOutput</name>
  169. <state>0</state>
  170. </option>
  171. <option>
  172. <name>GDeviceUserLvlIntSlave</name>
  173. <state>0</state>
  174. </option>
  175. <option>
  176. <name>GDeviceBitmanipASlave</name>
  177. <state>0</state>
  178. </option>
  179. <option>
  180. <name>GDeviceBitmanipBSlave</name>
  181. <state>0</state>
  182. </option>
  183. <option>
  184. <name>GDeviceBitmanipCSlave</name>
  185. <state>0</state>
  186. </option>
  187. <option>
  188. <name>GDeviceXandesperfSlave</name>
  189. <state>0</state>
  190. </option>
  191. <option>
  192. <name>GDeviceBitmanipSSlave</name>
  193. <state>0</state>
  194. </option>
  195. <option>
  196. <name>BuildFilesPath</name>
  197. <state>Debug\</state>
  198. </option>
  199. <option>
  200. <name>GDeviceBitmanipCountZeroesSlave</name>
  201. <state>0</state>
  202. </option>
  203. <option>
  204. <name>GCodeModelSlave</name>
  205. <state>1</state>
  206. </option>
  207. <option>
  208. <name>GDeviceXCoDenseSlave</name>
  209. <state>0</state>
  210. </option>
  211. <option>
  212. <name>GDeviceXCoDenseJalSlave</name>
  213. <state>0</state>
  214. </option>
  215. <option>
  216. <name>GDeviceXZenVBitfieldsSlave</name>
  217. <state>0</state>
  218. </option>
  219. <option>
  220. <name>GDeviceNXPVirgoSupervisorSlave</name>
  221. <state>0</state>
  222. </option>
  223. <option>
  224. <name>GDeviceResumableNMISlave</name>
  225. <state>0</state>
  226. </option>
  227. <option>
  228. <name>GDevicePackedSIMDZpsfoperandSlave</name>
  229. <state>0</state>
  230. </option>
  231. <option>
  232. <name>GDeviceDspRadioSlave</name>
  233. <state>0</state>
  234. </option>
  235. <option>
  236. <name>GDeviceCacheManagementSlave</name>
  237. <state>0</state>
  238. </option>
  239. <option>
  240. <name>GDeviceCachePrefetchSlave</name>
  241. <state>0</state>
  242. </option>
  243. <option>
  244. <name>GDeviceCacheZeroSlave</name>
  245. <state>0</state>
  246. </option>
  247. <option>
  248. <name>GDeviceCacheEswinSlave</name>
  249. <state>0</state>
  250. </option>
  251. <option>
  252. <name>GDeviceCodesizeBasicSlave</name>
  253. <state>0</state>
  254. </option>
  255. <option>
  256. <name>GDeviceCodesizePushPopSlave</name>
  257. <state>0</state>
  258. </option>
  259. <option>
  260. <name>GDeviceCryptoNistSlave</name>
  261. <state>0</state>
  262. </option>
  263. <option>
  264. <name>GDeviceCryptoShangMiSlave</name>
  265. <state>0</state>
  266. </option>
  267. <option>
  268. <name>GGeneralMisalignedDataAccess</name>
  269. <state>0</state>
  270. </option>
  271. </data>
  272. </settings>
  273. <settings>
  274. <name>ICCRISCV</name>
  275. <archiveVersion>5</archiveVersion>
  276. <data>
  277. <version>9</version>
  278. <wantNonLocal>1</wantNonLocal>
  279. <debug>1</debug>
  280. <option>
  281. <name>ICore</name>
  282. <state>1</state>
  283. </option>
  284. <option>
  285. <name>CCObjPrefix</name>
  286. <state>1</state>
  287. </option>
  288. <option>
  289. <name>CCLibConfigHeader</name>
  290. <state>1</state>
  291. </option>
  292. <option>
  293. <name>IccLang</name>
  294. <state>0</state>
  295. </option>
  296. <option>
  297. <name>IccCDialect</name>
  298. <state>1</state>
  299. </option>
  300. <option>
  301. <name>IccAllowVLA</name>
  302. <state>0</state>
  303. </option>
  304. <option>
  305. <name>IccCppInlineSemantics</name>
  306. <state>0</state>
  307. </option>
  308. <option>
  309. <name>IccRequirePrototypes</name>
  310. <state>0</state>
  311. </option>
  312. <option>
  313. <name>IccStaticDestr</name>
  314. <state>1</state>
  315. </option>
  316. <option>
  317. <name>IccLanguageConformance</name>
  318. <state>0</state>
  319. </option>
  320. <option>
  321. <name>IccCharIs</name>
  322. <state>1</state>
  323. </option>
  324. <option>
  325. <name>IccFloatSemantics</name>
  326. <state>0</state>
  327. </option>
  328. <option>
  329. <name>CCOptLevel</name>
  330. <state>3</state>
  331. </option>
  332. <option>
  333. <name>CCOptStrategy</name>
  334. <version>0</version>
  335. <state>1</state>
  336. </option>
  337. <option>
  338. <name>CCNoSizeConst</name>
  339. <state>0</state>
  340. </option>
  341. <option>
  342. <name>CCOptLevelSlave</name>
  343. <state>3</state>
  344. </option>
  345. <option>
  346. <name>CCAllowList</name>
  347. <version>0</version>
  348. <state>1111111</state>
  349. </option>
  350. <option>
  351. <name>CCDebugInfo</name>
  352. <state>1</state>
  353. </option>
  354. <option>
  355. <name>CCExtraOptionsCheck</name>
  356. <state>0</state>
  357. </option>
  358. <option>
  359. <name>CCExtraOptions</name>
  360. <state></state>
  361. </option>
  362. <option>
  363. <name>OutputFile</name>
  364. <state>$FILE_BNAME$.o</state>
  365. </option>
  366. <option>
  367. <name>CCDefines</name>
  368. <state>RTOS_THREADX</state>
  369. <state>SMP_CPU_CNT=2</state>
  370. </option>
  371. <option>
  372. <name>CCPreprocFile</name>
  373. <state>0</state>
  374. </option>
  375. <option>
  376. <name>CCPreprocComments</name>
  377. <state>0</state>
  378. </option>
  379. <option>
  380. <name>CCPreprocLine</name>
  381. <state>1</state>
  382. </option>
  383. <option>
  384. <name>CCListCFile</name>
  385. <state>0</state>
  386. </option>
  387. <option>
  388. <name>CCListCMnemonics</name>
  389. <state>0</state>
  390. </option>
  391. <option>
  392. <name>CCListCMessages</name>
  393. <state>0</state>
  394. </option>
  395. <option>
  396. <name>CCListAssFile</name>
  397. <state>1</state>
  398. </option>
  399. <option>
  400. <name>CCListAssSource</name>
  401. <state>1</state>
  402. </option>
  403. <option>
  404. <name>CCEnableRemarks</name>
  405. <state>0</state>
  406. </option>
  407. <option>
  408. <name>CCDiagSuppress</name>
  409. <state></state>
  410. </option>
  411. <option>
  412. <name>CCDiagRemark</name>
  413. <state></state>
  414. </option>
  415. <option>
  416. <name>CCDiagWarning</name>
  417. <state></state>
  418. </option>
  419. <option>
  420. <name>CCDiagError</name>
  421. <state></state>
  422. </option>
  423. <option>
  424. <name>CCDiagWarnAreErr</name>
  425. <state>0</state>
  426. </option>
  427. <option>
  428. <name>CCCompilerRuntimeInfo</name>
  429. <state>1</state>
  430. </option>
  431. <option>
  432. <name>PreInclude</name>
  433. <state></state>
  434. </option>
  435. <option>
  436. <name>CCIncludePath2</name>
  437. <state>$PROJ_DIR$\..\..\..\NMSIS\Core\Include</state>
  438. <state>$PROJ_DIR$\..\..\..\SoC\evalsoc\Board\nuclei_fpga_eval\Include</state>
  439. <state>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include</state>
  440. <state>$PROJ_DIR$\..\..\..\application\threadx\smpdemo</state>
  441. <state>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc</state>
  442. <state>$PROJ_DIR$\..\..\..\OS\ThreadX\ports_smp\nuclei</state>
  443. </option>
  444. <option>
  445. <name>CCStdIncCheck</name>
  446. <state>0</state>
  447. </option>
  448. <option>
  449. <name>CCCodeSection</name>
  450. <state>.text</state>
  451. </option>
  452. <option>
  453. <name>CCEncSource</name>
  454. <state>0</state>
  455. </option>
  456. <option>
  457. <name>CCEncOutput</name>
  458. <state>0</state>
  459. </option>
  460. <option>
  461. <name>CCEncOutputBom</name>
  462. <state>1</state>
  463. </option>
  464. <option>
  465. <name>CCEncInput</name>
  466. <state>0</state>
  467. </option>
  468. <option>
  469. <name>CCGuardCalls</name>
  470. <state>1</state>
  471. </option>
  472. <option>
  473. <name>ICodeModel</name>
  474. <state>1</state>
  475. </option>
  476. <option>
  477. <name>IMisalignedDataAccess</name>
  478. <state>0</state>
  479. </option>
  480. </data>
  481. </settings>
  482. <settings>
  483. <name>IASMRISCV</name>
  484. <archiveVersion>5</archiveVersion>
  485. <data>
  486. <version>1</version>
  487. <wantNonLocal>1</wantNonLocal>
  488. <debug>1</debug>
  489. <option>
  490. <name>AsmCore</name>
  491. <state>0</state>
  492. </option>
  493. <option>
  494. <name>AsmObjPrefix</name>
  495. <state>1</state>
  496. </option>
  497. <option>
  498. <name>AsmOutputFile</name>
  499. <state>$FILE_BNAME$.o</state>
  500. </option>
  501. <option>
  502. <name>AsmCaseSensitivity</name>
  503. <state>1</state>
  504. </option>
  505. <option>
  506. <name>AsmAllowMnemonics</name>
  507. <state>0</state>
  508. </option>
  509. <option>
  510. <name>AsmAllowDirectives</name>
  511. <state>0</state>
  512. </option>
  513. <option>
  514. <name>AsmMacroChars</name>
  515. <version>0</version>
  516. <state>0</state>
  517. </option>
  518. <option>
  519. <name>AsmDebugInfo</name>
  520. <state>1</state>
  521. </option>
  522. <option>
  523. <name>AsmListFile</name>
  524. <state>0</state>
  525. </option>
  526. <option>
  527. <name>AsmListNoDiagnostics</name>
  528. <state>0</state>
  529. </option>
  530. <option>
  531. <name>AsmListIncludeCrossRef</name>
  532. <state>0</state>
  533. </option>
  534. <option>
  535. <name>AsmListMacroDefinitions</name>
  536. <state>0</state>
  537. </option>
  538. <option>
  539. <name>AsmListNoMacroExpansion</name>
  540. <state>0</state>
  541. </option>
  542. <option>
  543. <name>AsmListAssembledOnly</name>
  544. <state>0</state>
  545. </option>
  546. <option>
  547. <name>AsmListTruncateMultiline</name>
  548. <state>0</state>
  549. </option>
  550. <option>
  551. <name>AsmStdIncludeIgnore</name>
  552. <state>0</state>
  553. </option>
  554. <option>
  555. <name>AsmIncludePath</name>
  556. <state>$PROJ_DIR$\..\..\..\NMSIS\Core\Include</state>
  557. <state>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include</state>
  558. </option>
  559. <option>
  560. <name>AsmDefines</name>
  561. <state>SMP_CPU_CNT=2</state>
  562. </option>
  563. <option>
  564. <name>PreInclude</name>
  565. <state></state>
  566. </option>
  567. <option>
  568. <name>AsmPreprocOutput</name>
  569. <state>0</state>
  570. </option>
  571. <option>
  572. <name>AsmPreprocComment</name>
  573. <state>0</state>
  574. </option>
  575. <option>
  576. <name>AsmPreprocLine</name>
  577. <state>0</state>
  578. </option>
  579. <option>
  580. <name>AsmEnableRemarks</name>
  581. <state>0</state>
  582. </option>
  583. <option>
  584. <name>AsmDiagnosticsSuppress</name>
  585. <state></state>
  586. </option>
  587. <option>
  588. <name>AsmDiagnosticsRemark</name>
  589. <state></state>
  590. </option>
  591. <option>
  592. <name>AsmDiagnosticsWarning</name>
  593. <state></state>
  594. </option>
  595. <option>
  596. <name>AsmDiagnosticsError</name>
  597. <state></state>
  598. </option>
  599. <option>
  600. <name>AsmDiagnosticsWarningsAreErrors</name>
  601. <state>0</state>
  602. </option>
  603. <option>
  604. <name>AsmLimitNumberOfErrors</name>
  605. <state>0</state>
  606. </option>
  607. <option>
  608. <name>AsmMaxNumberOfErrors</name>
  609. <state>100</state>
  610. </option>
  611. <option>
  612. <name>AsmUseExtraOptions</name>
  613. <state>0</state>
  614. </option>
  615. <option>
  616. <name>AsmExtraOptions</name>
  617. <state></state>
  618. </option>
  619. <option>
  620. <name>ACodeModel</name>
  621. <state>1</state>
  622. </option>
  623. </data>
  624. </settings>
  625. <settings>
  626. <name>OBJCOPY</name>
  627. <archiveVersion>5</archiveVersion>
  628. <data>
  629. <version>0</version>
  630. <wantNonLocal>1</wantNonLocal>
  631. <debug>1</debug>
  632. <option>
  633. <name>OOCOutputFormat</name>
  634. <version>0</version>
  635. <state>0</state>
  636. </option>
  637. <option>
  638. <name>OCOutputOverride</name>
  639. <state>0</state>
  640. </option>
  641. <option>
  642. <name>OOCOutputFile</name>
  643. <state>threadx_smpdemo.srec</state>
  644. </option>
  645. <option>
  646. <name>OOCCommandLineProducer</name>
  647. <state>1</state>
  648. </option>
  649. <option>
  650. <name>OOCObjCopyEnable</name>
  651. <state>0</state>
  652. </option>
  653. </data>
  654. </settings>
  655. <settings>
  656. <name>CUSTOM</name>
  657. <archiveVersion>3</archiveVersion>
  658. <data>
  659. <extensions></extensions>
  660. <cmdline></cmdline>
  661. <hasPrio>1</hasPrio>
  662. <buildSequence>inputOutputBased</buildSequence>
  663. </data>
  664. </settings>
  665. <settings>
  666. <name>ILINK</name>
  667. <archiveVersion>5</archiveVersion>
  668. <data>
  669. <version>10</version>
  670. <wantNonLocal>1</wantNonLocal>
  671. <debug>1</debug>
  672. <option>
  673. <name>IlinkLibIOConfig</name>
  674. <state>1</state>
  675. </option>
  676. <option>
  677. <name>IlinkStackSize</name>
  678. <state>1</state>
  679. </option>
  680. <option>
  681. <name>IlinkHeapSize</name>
  682. <state>1</state>
  683. </option>
  684. <option>
  685. <name>IlinkHeapSelect</name>
  686. <state>1</state>
  687. </option>
  688. <option>
  689. <name>IlinkLocaleSelect</name>
  690. <state>1</state>
  691. </option>
  692. <option>
  693. <name>IlinkInputFileSlave</name>
  694. <state>0</state>
  695. </option>
  696. <option>
  697. <name>IlinkOutputFile</name>
  698. <state>threadx_smpdemo.out</state>
  699. </option>
  700. <option>
  701. <name>IlinkDebugInfoEnable</name>
  702. <state>1</state>
  703. </option>
  704. <option>
  705. <name>IlinkKeepSymbols</name>
  706. <state></state>
  707. </option>
  708. <option>
  709. <name>IlinkRawBinaryFile</name>
  710. <state></state>
  711. </option>
  712. <option>
  713. <name>IlinkRawBinarySymbol</name>
  714. <state></state>
  715. </option>
  716. <option>
  717. <name>IlinkRawBinarySegment</name>
  718. <state></state>
  719. </option>
  720. <option>
  721. <name>IlinkRawBinaryAlign</name>
  722. <state></state>
  723. </option>
  724. <option>
  725. <name>IlinkDefines</name>
  726. <state></state>
  727. </option>
  728. <option>
  729. <name>IlinkConfigDefines</name>
  730. <state>SMP_CPU_CNT=2</state>
  731. </option>
  732. <option>
  733. <name>IlinkMapFile</name>
  734. <state>1</state>
  735. </option>
  736. <option>
  737. <name>IlinkLogFile</name>
  738. <state>0</state>
  739. </option>
  740. <option>
  741. <name>IlinkLogInitialization</name>
  742. <state>0</state>
  743. </option>
  744. <option>
  745. <name>IlinkLogModule</name>
  746. <state>0</state>
  747. </option>
  748. <option>
  749. <name>IlinkLogSection</name>
  750. <state>0</state>
  751. </option>
  752. <option>
  753. <name>IlinkLogVeneer</name>
  754. <state>0</state>
  755. </option>
  756. <option>
  757. <name>IlinkIcfOverride</name>
  758. <state>1</state>
  759. </option>
  760. <option>
  761. <name>IlinkIcfFile</name>
  762. <state>$PROJ_DIR$\..\..\..\application\threadx\smpdemo\iar_evalsoc_smp.icf</state>
  763. </option>
  764. <option>
  765. <name>IlinkIcfFileSlave</name>
  766. <state></state>
  767. </option>
  768. <option>
  769. <name>IlinkEnableRemarks</name>
  770. <state>0</state>
  771. </option>
  772. <option>
  773. <name>IlinkSuppressDiags</name>
  774. <state></state>
  775. </option>
  776. <option>
  777. <name>IlinkTreatAsRem</name>
  778. <state></state>
  779. </option>
  780. <option>
  781. <name>IlinkTreatAsWarn</name>
  782. <state></state>
  783. </option>
  784. <option>
  785. <name>IlinkTreatAsErr</name>
  786. <state></state>
  787. </option>
  788. <option>
  789. <name>IlinkWarningsAreErrors</name>
  790. <state>0</state>
  791. </option>
  792. <option>
  793. <name>IlinkAutoLibEnable</name>
  794. <state>1</state>
  795. </option>
  796. <option>
  797. <name>IlinkAdditionalLibs</name>
  798. <state></state>
  799. </option>
  800. <option>
  801. <name>IlinkOverrideProgramEntryLabel</name>
  802. <state>0</state>
  803. </option>
  804. <option>
  805. <name>IlinkProgramEntryLabelSelect</name>
  806. <state>0</state>
  807. </option>
  808. <option>
  809. <name>IlinkProgramEntryLabel</name>
  810. <state>__iar_program_start</state>
  811. </option>
  812. <option>
  813. <name>DoFill</name>
  814. <state>0</state>
  815. </option>
  816. <option>
  817. <name>FillerByte</name>
  818. <state>0xFF</state>
  819. </option>
  820. <option>
  821. <name>FillerStart</name>
  822. <state>0x0</state>
  823. </option>
  824. <option>
  825. <name>FillerEnd</name>
  826. <state>0x0</state>
  827. </option>
  828. <option>
  829. <name>CrcSize</name>
  830. <version>0</version>
  831. <state>1</state>
  832. </option>
  833. <option>
  834. <name>CrcAlign</name>
  835. <state>1</state>
  836. </option>
  837. <option>
  838. <name>CrcPoly</name>
  839. <state>0x11021</state>
  840. </option>
  841. <option>
  842. <name>CrcCompl</name>
  843. <version>0</version>
  844. <state>0</state>
  845. </option>
  846. <option>
  847. <name>CrcBitOrder</name>
  848. <version>0</version>
  849. <state>0</state>
  850. </option>
  851. <option>
  852. <name>CrcInitialValue</name>
  853. <state>0x0</state>
  854. </option>
  855. <option>
  856. <name>DoCrc</name>
  857. <state>0</state>
  858. </option>
  859. <option>
  860. <name>CrcFullSize</name>
  861. <state>0</state>
  862. </option>
  863. <option>
  864. <name>IlinkLogAutoLibSelect</name>
  865. <state>0</state>
  866. </option>
  867. <option>
  868. <name>IlinkLogRedirSymbols</name>
  869. <state>0</state>
  870. </option>
  871. <option>
  872. <name>IlinkLogUnusedFragments</name>
  873. <state>0</state>
  874. </option>
  875. <option>
  876. <name>IlinkCrcReverseByteOrder</name>
  877. <state>0</state>
  878. </option>
  879. <option>
  880. <name>IlinkCrcUseAsInput</name>
  881. <state>1</state>
  882. </option>
  883. <option>
  884. <name>CrcAlgorithm</name>
  885. <version>1</version>
  886. <state>1</state>
  887. </option>
  888. <option>
  889. <name>CrcUnitSize</name>
  890. <version>0</version>
  891. <state>0</state>
  892. </option>
  893. <option>
  894. <name>IlinkIcfFile_AltDefault</name>
  895. <state></state>
  896. </option>
  897. <option>
  898. <name>IlinkOptMergeDuplSections</name>
  899. <state>0</state>
  900. </option>
  901. <option>
  902. <name>IlinkOptUseVfe</name>
  903. <state>1</state>
  904. </option>
  905. <option>
  906. <name>IlinkOptForceVfe</name>
  907. <state>0</state>
  908. </option>
  909. <option>
  910. <name>IlinkStackAnalysisEnable</name>
  911. <state>0</state>
  912. </option>
  913. <option>
  914. <name>IlinkStackControlFile</name>
  915. <state></state>
  916. </option>
  917. <option>
  918. <name>IlinkStackCallGraphFile</name>
  919. <state></state>
  920. </option>
  921. <option>
  922. <name>IlinkLogCallGraph</name>
  923. <state>0</state>
  924. </option>
  925. <option>
  926. <name>IlinkEncInput</name>
  927. <state>0</state>
  928. </option>
  929. <option>
  930. <name>IlinkEncOutput</name>
  931. <state>0</state>
  932. </option>
  933. <option>
  934. <name>IlinkEncOutputBom</name>
  935. <state>1</state>
  936. </option>
  937. <option>
  938. <name>IlinkUseExtraOptions</name>
  939. <state>0</state>
  940. </option>
  941. <option>
  942. <name>IlinkExtraOptions</name>
  943. <state></state>
  944. </option>
  945. <option>
  946. <name>IlinkThreadsSlave</name>
  947. <state>1</state>
  948. </option>
  949. <option>
  950. <name>IlinkRawBinaryFile2</name>
  951. <state></state>
  952. </option>
  953. <option>
  954. <name>IlinkRawBinarySymbol2</name>
  955. <state></state>
  956. </option>
  957. <option>
  958. <name>IlinkRawBinarySegment2</name>
  959. <state></state>
  960. </option>
  961. <option>
  962. <name>IlinkRawBinaryAlign2</name>
  963. <state></state>
  964. </option>
  965. <option>
  966. <name>IlinkAutoVectorSetupSlave</name>
  967. <state>1</state>
  968. </option>
  969. <option>
  970. <name>ILINKStdOutErr</name>
  971. <state>1</state>
  972. </option>
  973. <option>
  974. <name>IlinkLogCrtRoutineSelection</name>
  975. <state>0</state>
  976. </option>
  977. <option>
  978. <name>IlinkLogFragmentInfo</name>
  979. <state>0</state>
  980. </option>
  981. <option>
  982. <name>IlinkLogInlining</name>
  983. <state>0</state>
  984. </option>
  985. <option>
  986. <name>IlinkLogMerging</name>
  987. <state>0</state>
  988. </option>
  989. <option>
  990. <name>IlinkDemangle</name>
  991. <state>0</state>
  992. </option>
  993. <option>
  994. <name>IlinkBufferedTerminalOutput</name>
  995. <state>1</state>
  996. </option>
  997. <option>
  998. <name>IlinkCspyDebugSupportEnable2</name>
  999. <state>1</state>
  1000. </option>
  1001. <option>
  1002. <name>IlinkWrapperFileEnable</name>
  1003. <state>0</state>
  1004. </option>
  1005. <option>
  1006. <name>IlinkWrapperFile</name>
  1007. <state></state>
  1008. </option>
  1009. <option>
  1010. <name>ILinkCodeModel</name>
  1011. <state>1</state>
  1012. </option>
  1013. <option>
  1014. <name>ILinkCore</name>
  1015. <state>1</state>
  1016. </option>
  1017. <option>
  1018. <name>ILinkCoDenseJal</name>
  1019. <state>1</state>
  1020. </option>
  1021. <option>
  1022. <name>ILinkMisalignedDataAccess</name>
  1023. <state>0</state>
  1024. </option>
  1025. </data>
  1026. </settings>
  1027. <settings>
  1028. <name>IARCHIVE</name>
  1029. <archiveVersion>5</archiveVersion>
  1030. <data>
  1031. <version>0</version>
  1032. <wantNonLocal>1</wantNonLocal>
  1033. <debug>1</debug>
  1034. <option>
  1035. <name>IarchiveInputs</name>
  1036. <state></state>
  1037. </option>
  1038. <option>
  1039. <name>IarchiveOverride</name>
  1040. <state>0</state>
  1041. </option>
  1042. <option>
  1043. <name>IarchiveOutput</name>
  1044. <state>###Uninitialized###</state>
  1045. </option>
  1046. </data>
  1047. </settings>
  1048. <settings>
  1049. <name>BUILDACTION</name>
  1050. <archiveVersion>2</archiveVersion>
  1051. <data />
  1052. </settings>
  1053. </configuration>
  1054. <configuration>
  1055. <name>Release</name>
  1056. <toolchain>
  1057. <name>RISCV</name>
  1058. </toolchain>
  1059. <debug>0</debug>
  1060. <settings>
  1061. <name>General</name>
  1062. <archiveVersion>5</archiveVersion>
  1063. <data>
  1064. <version>11</version>
  1065. <wantNonLocal>1</wantNonLocal>
  1066. <debug>0</debug>
  1067. <option>
  1068. <name>GDeviceSelect</name>
  1069. <state></state>
  1070. </option>
  1071. <option>
  1072. <name>GOutputBinary</name>
  1073. <state>0</state>
  1074. </option>
  1075. <option>
  1076. <name>ExePath</name>
  1077. <state>Release\Exe</state>
  1078. </option>
  1079. <option>
  1080. <name>ObjPath</name>
  1081. <state>Release\Obj</state>
  1082. </option>
  1083. <option>
  1084. <name>ListPath</name>
  1085. <state>Release\List</state>
  1086. </option>
  1087. <option>
  1088. <name>BrowseInfoPath</name>
  1089. <state>Release\BrowseInfo</state>
  1090. </option>
  1091. <option>
  1092. <name>GRuntimeLibSelect</name>
  1093. <version>1</version>
  1094. <state>1</state>
  1095. </option>
  1096. <option>
  1097. <name>GRTDescription</name>
  1098. <state></state>
  1099. </option>
  1100. <option>
  1101. <name>GRTConfigPath</name>
  1102. <state></state>
  1103. </option>
  1104. <option>
  1105. <name>GRuntimeLibSelectSlave</name>
  1106. <version>1</version>
  1107. <state>1</state>
  1108. </option>
  1109. <option>
  1110. <name>GRuntimeLibThreads</name>
  1111. <state>0</state>
  1112. </option>
  1113. <option>
  1114. <name>GInputDescription</name>
  1115. <state></state>
  1116. </option>
  1117. <option>
  1118. <name>GOutputDescription</name>
  1119. <state></state>
  1120. </option>
  1121. <option>
  1122. <name>GenMathFunctionVariant</name>
  1123. <version>0</version>
  1124. <state>0</state>
  1125. </option>
  1126. <option>
  1127. <name>GenMathFunctionDescription</name>
  1128. <state></state>
  1129. </option>
  1130. <option>
  1131. <name>GGeneralStack</name>
  1132. <state>###Uninitialized###</state>
  1133. </option>
  1134. <option>
  1135. <name>GHeapSize</name>
  1136. <state>###Uninitialized###</state>
  1137. </option>
  1138. <option>
  1139. <name>GNumCores</name>
  1140. <state></state>
  1141. </option>
  1142. <option>
  1143. <name>OGPrintfVariant</name>
  1144. <version>0</version>
  1145. <state>0</state>
  1146. </option>
  1147. <option>
  1148. <name>OGPrintfMultibyteSupport</name>
  1149. <state>0</state>
  1150. </option>
  1151. <option>
  1152. <name>OGScanfVariant</name>
  1153. <version>0</version>
  1154. <state>0</state>
  1155. </option>
  1156. <option>
  1157. <name>OGScanfMultibyteSupport</name>
  1158. <state>0</state>
  1159. </option>
  1160. <option>
  1161. <name>OgLibHeap</name>
  1162. <state>0</state>
  1163. </option>
  1164. <option>
  1165. <name>OGLibAdditionalLocale</name>
  1166. <state>0</state>
  1167. </option>
  1168. <option>
  1169. <name>GenLocaleTags</name>
  1170. <state></state>
  1171. </option>
  1172. <option>
  1173. <name>GenLocaleDisplayOnly</name>
  1174. <state></state>
  1175. </option>
  1176. <option>
  1177. <name>GDeviceSelectSlave</name>
  1178. <state>RV32 RV32</state>
  1179. </option>
  1180. <option>
  1181. <name>GGeneralAutoVectorSetup</name>
  1182. <state>0</state>
  1183. </option>
  1184. <option>
  1185. <name>GDeviceCoreIBASRadioSlave</name>
  1186. <state>1</state>
  1187. </option>
  1188. <option>
  1189. <name>GDeviceMultSlave</name>
  1190. <state>1</state>
  1191. </option>
  1192. <option>
  1193. <name>GDeviceAtomicSlave</name>
  1194. <state>1</state>
  1195. </option>
  1196. <option>
  1197. <name>GDeviceCompactSlave</name>
  1198. <state>1</state>
  1199. </option>
  1200. <option>
  1201. <name>GDeviceFloatSelectSlave</name>
  1202. <version>1</version>
  1203. <state>2</state>
  1204. </option>
  1205. <option>
  1206. <name>GCoreDevice</name>
  1207. <state>###Uninitialized###</state>
  1208. </option>
  1209. <option>
  1210. <name>RadioStdOutErr</name>
  1211. <state>0</state>
  1212. </option>
  1213. <option>
  1214. <name>RadioLibLowLev</name>
  1215. <state>1</state>
  1216. </option>
  1217. <option>
  1218. <name>OGBufferedTerminalOutput</name>
  1219. <state>0</state>
  1220. </option>
  1221. <option>
  1222. <name>GDeviceUserLvlIntSlave</name>
  1223. <state>1</state>
  1224. </option>
  1225. <option>
  1226. <name>GDeviceBitmanipASlave</name>
  1227. <state>1</state>
  1228. </option>
  1229. <option>
  1230. <name>GDeviceBitmanipBSlave</name>
  1231. <state>1</state>
  1232. </option>
  1233. <option>
  1234. <name>GDeviceBitmanipCSlave</name>
  1235. <state>1</state>
  1236. </option>
  1237. <option>
  1238. <name>GDeviceXandesperfSlave</name>
  1239. <state>1</state>
  1240. </option>
  1241. <option>
  1242. <name>GDeviceBitmanipSSlave</name>
  1243. <state>1</state>
  1244. </option>
  1245. <option>
  1246. <name>BuildFilesPath</name>
  1247. <state>Release\</state>
  1248. </option>
  1249. <option>
  1250. <name>GDeviceBitmanipCountZeroesSlave</name>
  1251. <state>1</state>
  1252. </option>
  1253. <option>
  1254. <name>GCodeModelSlave</name>
  1255. <state>1</state>
  1256. </option>
  1257. <option>
  1258. <name>GDeviceXCoDenseSlave</name>
  1259. <state>1</state>
  1260. </option>
  1261. <option>
  1262. <name>GDeviceXCoDenseJalSlave</name>
  1263. <state>0</state>
  1264. </option>
  1265. <option>
  1266. <name>GDeviceXZenVBitfieldsSlave</name>
  1267. <state>1</state>
  1268. </option>
  1269. <option>
  1270. <name>GDeviceNXPVirgoSupervisorSlave</name>
  1271. <state>1</state>
  1272. </option>
  1273. <option>
  1274. <name>GDeviceResumableNMISlave</name>
  1275. <state>1</state>
  1276. </option>
  1277. <option>
  1278. <name>GDevicePackedSIMDZpsfoperandSlave</name>
  1279. <state>0</state>
  1280. </option>
  1281. <option>
  1282. <name>GDeviceDspRadioSlave</name>
  1283. <state>0</state>
  1284. </option>
  1285. <option>
  1286. <name>GDeviceCacheManagementSlave</name>
  1287. <state>1</state>
  1288. </option>
  1289. <option>
  1290. <name>GDeviceCachePrefetchSlave</name>
  1291. <state>1</state>
  1292. </option>
  1293. <option>
  1294. <name>GDeviceCacheZeroSlave</name>
  1295. <state>1</state>
  1296. </option>
  1297. <option>
  1298. <name>GDeviceCacheEswinSlave</name>
  1299. <state>1</state>
  1300. </option>
  1301. <option>
  1302. <name>GDeviceCodesizeBasicSlave</name>
  1303. <state>0</state>
  1304. </option>
  1305. <option>
  1306. <name>GDeviceCodesizePushPopSlave</name>
  1307. <state>0</state>
  1308. </option>
  1309. <option>
  1310. <name>GDeviceCryptoNistSlave</name>
  1311. <state>1</state>
  1312. </option>
  1313. <option>
  1314. <name>GDeviceCryptoShangMiSlave</name>
  1315. <state>1</state>
  1316. </option>
  1317. <option>
  1318. <name>GGeneralMisalignedDataAccess</name>
  1319. <state>0</state>
  1320. </option>
  1321. </data>
  1322. </settings>
  1323. <settings>
  1324. <name>ICCRISCV</name>
  1325. <archiveVersion>5</archiveVersion>
  1326. <data>
  1327. <version>9</version>
  1328. <wantNonLocal>1</wantNonLocal>
  1329. <debug>0</debug>
  1330. <option>
  1331. <name>ICore</name>
  1332. <state>1</state>
  1333. </option>
  1334. <option>
  1335. <name>CCObjPrefix</name>
  1336. <state>1</state>
  1337. </option>
  1338. <option>
  1339. <name>CCLibConfigHeader</name>
  1340. <state>1</state>
  1341. </option>
  1342. <option>
  1343. <name>IccLang</name>
  1344. <state>0</state>
  1345. </option>
  1346. <option>
  1347. <name>IccCDialect</name>
  1348. <state>1</state>
  1349. </option>
  1350. <option>
  1351. <name>IccAllowVLA</name>
  1352. <state>0</state>
  1353. </option>
  1354. <option>
  1355. <name>IccCppInlineSemantics</name>
  1356. <state>0</state>
  1357. </option>
  1358. <option>
  1359. <name>IccRequirePrototypes</name>
  1360. <state>0</state>
  1361. </option>
  1362. <option>
  1363. <name>IccStaticDestr</name>
  1364. <state>1</state>
  1365. </option>
  1366. <option>
  1367. <name>IccLanguageConformance</name>
  1368. <state>0</state>
  1369. </option>
  1370. <option>
  1371. <name>IccCharIs</name>
  1372. <state>1</state>
  1373. </option>
  1374. <option>
  1375. <name>IccFloatSemantics</name>
  1376. <state>0</state>
  1377. </option>
  1378. <option>
  1379. <name>CCOptLevel</name>
  1380. <state>3</state>
  1381. </option>
  1382. <option>
  1383. <name>CCOptStrategy</name>
  1384. <version>0</version>
  1385. <state>0</state>
  1386. </option>
  1387. <option>
  1388. <name>CCNoSizeConst</name>
  1389. <state>0</state>
  1390. </option>
  1391. <option>
  1392. <name>CCOptLevelSlave</name>
  1393. <state>3</state>
  1394. </option>
  1395. <option>
  1396. <name>CCAllowList</name>
  1397. <version>0</version>
  1398. <state>1111111</state>
  1399. </option>
  1400. <option>
  1401. <name>CCDebugInfo</name>
  1402. <state>0</state>
  1403. </option>
  1404. <option>
  1405. <name>CCExtraOptionsCheck</name>
  1406. <state>0</state>
  1407. </option>
  1408. <option>
  1409. <name>CCExtraOptions</name>
  1410. <state></state>
  1411. </option>
  1412. <option>
  1413. <name>OutputFile</name>
  1414. <state></state>
  1415. </option>
  1416. <option>
  1417. <name>CCDefines</name>
  1418. <state>NDEBUG</state>
  1419. </option>
  1420. <option>
  1421. <name>CCPreprocFile</name>
  1422. <state>0</state>
  1423. </option>
  1424. <option>
  1425. <name>CCPreprocComments</name>
  1426. <state>0</state>
  1427. </option>
  1428. <option>
  1429. <name>CCPreprocLine</name>
  1430. <state>1</state>
  1431. </option>
  1432. <option>
  1433. <name>CCListCFile</name>
  1434. <state>0</state>
  1435. </option>
  1436. <option>
  1437. <name>CCListCMnemonics</name>
  1438. <state>0</state>
  1439. </option>
  1440. <option>
  1441. <name>CCListCMessages</name>
  1442. <state>0</state>
  1443. </option>
  1444. <option>
  1445. <name>CCListAssFile</name>
  1446. <state>0</state>
  1447. </option>
  1448. <option>
  1449. <name>CCListAssSource</name>
  1450. <state>0</state>
  1451. </option>
  1452. <option>
  1453. <name>CCEnableRemarks</name>
  1454. <state>0</state>
  1455. </option>
  1456. <option>
  1457. <name>CCDiagSuppress</name>
  1458. <state></state>
  1459. </option>
  1460. <option>
  1461. <name>CCDiagRemark</name>
  1462. <state></state>
  1463. </option>
  1464. <option>
  1465. <name>CCDiagWarning</name>
  1466. <state></state>
  1467. </option>
  1468. <option>
  1469. <name>CCDiagError</name>
  1470. <state></state>
  1471. </option>
  1472. <option>
  1473. <name>CCDiagWarnAreErr</name>
  1474. <state>0</state>
  1475. </option>
  1476. <option>
  1477. <name>CCCompilerRuntimeInfo</name>
  1478. <state>0</state>
  1479. </option>
  1480. <option>
  1481. <name>PreInclude</name>
  1482. <state></state>
  1483. </option>
  1484. <option>
  1485. <name>CCIncludePath2</name>
  1486. <state></state>
  1487. </option>
  1488. <option>
  1489. <name>CCStdIncCheck</name>
  1490. <state>0</state>
  1491. </option>
  1492. <option>
  1493. <name>CCCodeSection</name>
  1494. <state>.text</state>
  1495. </option>
  1496. <option>
  1497. <name>CCEncSource</name>
  1498. <state>0</state>
  1499. </option>
  1500. <option>
  1501. <name>CCEncOutput</name>
  1502. <state>0</state>
  1503. </option>
  1504. <option>
  1505. <name>CCEncOutputBom</name>
  1506. <state>1</state>
  1507. </option>
  1508. <option>
  1509. <name>CCEncInput</name>
  1510. <state>0</state>
  1511. </option>
  1512. <option>
  1513. <name>CCGuardCalls</name>
  1514. <state>1</state>
  1515. </option>
  1516. <option>
  1517. <name>ICodeModel</name>
  1518. <state>1</state>
  1519. </option>
  1520. <option>
  1521. <name>IMisalignedDataAccess</name>
  1522. <state>0</state>
  1523. </option>
  1524. </data>
  1525. </settings>
  1526. <settings>
  1527. <name>IASMRISCV</name>
  1528. <archiveVersion>5</archiveVersion>
  1529. <data>
  1530. <version>1</version>
  1531. <wantNonLocal>1</wantNonLocal>
  1532. <debug>0</debug>
  1533. <option>
  1534. <name>AsmCore</name>
  1535. <state>0</state>
  1536. </option>
  1537. <option>
  1538. <name>AsmObjPrefix</name>
  1539. <state>1</state>
  1540. </option>
  1541. <option>
  1542. <name>AsmOutputFile</name>
  1543. <state></state>
  1544. </option>
  1545. <option>
  1546. <name>AsmCaseSensitivity</name>
  1547. <state>1</state>
  1548. </option>
  1549. <option>
  1550. <name>AsmAllowMnemonics</name>
  1551. <state>0</state>
  1552. </option>
  1553. <option>
  1554. <name>AsmAllowDirectives</name>
  1555. <state>0</state>
  1556. </option>
  1557. <option>
  1558. <name>AsmMacroChars</name>
  1559. <version>0</version>
  1560. <state>0</state>
  1561. </option>
  1562. <option>
  1563. <name>AsmDebugInfo</name>
  1564. <state>0</state>
  1565. </option>
  1566. <option>
  1567. <name>AsmListFile</name>
  1568. <state>0</state>
  1569. </option>
  1570. <option>
  1571. <name>AsmListNoDiagnostics</name>
  1572. <state>0</state>
  1573. </option>
  1574. <option>
  1575. <name>AsmListIncludeCrossRef</name>
  1576. <state>0</state>
  1577. </option>
  1578. <option>
  1579. <name>AsmListMacroDefinitions</name>
  1580. <state>0</state>
  1581. </option>
  1582. <option>
  1583. <name>AsmListNoMacroExpansion</name>
  1584. <state>0</state>
  1585. </option>
  1586. <option>
  1587. <name>AsmListAssembledOnly</name>
  1588. <state>0</state>
  1589. </option>
  1590. <option>
  1591. <name>AsmListTruncateMultiline</name>
  1592. <state>0</state>
  1593. </option>
  1594. <option>
  1595. <name>AsmStdIncludeIgnore</name>
  1596. <state>0</state>
  1597. </option>
  1598. <option>
  1599. <name>AsmIncludePath</name>
  1600. <state></state>
  1601. </option>
  1602. <option>
  1603. <name>AsmDefines</name>
  1604. <state></state>
  1605. </option>
  1606. <option>
  1607. <name>PreInclude</name>
  1608. <state></state>
  1609. </option>
  1610. <option>
  1611. <name>AsmPreprocOutput</name>
  1612. <state>0</state>
  1613. </option>
  1614. <option>
  1615. <name>AsmPreprocComment</name>
  1616. <state>0</state>
  1617. </option>
  1618. <option>
  1619. <name>AsmPreprocLine</name>
  1620. <state>0</state>
  1621. </option>
  1622. <option>
  1623. <name>AsmEnableRemarks</name>
  1624. <state>0</state>
  1625. </option>
  1626. <option>
  1627. <name>AsmDiagnosticsSuppress</name>
  1628. <state></state>
  1629. </option>
  1630. <option>
  1631. <name>AsmDiagnosticsRemark</name>
  1632. <state></state>
  1633. </option>
  1634. <option>
  1635. <name>AsmDiagnosticsWarning</name>
  1636. <state></state>
  1637. </option>
  1638. <option>
  1639. <name>AsmDiagnosticsError</name>
  1640. <state></state>
  1641. </option>
  1642. <option>
  1643. <name>AsmDiagnosticsWarningsAreErrors</name>
  1644. <state>0</state>
  1645. </option>
  1646. <option>
  1647. <name>AsmLimitNumberOfErrors</name>
  1648. <state>0</state>
  1649. </option>
  1650. <option>
  1651. <name>AsmMaxNumberOfErrors</name>
  1652. <state>100</state>
  1653. </option>
  1654. <option>
  1655. <name>AsmUseExtraOptions</name>
  1656. <state>0</state>
  1657. </option>
  1658. <option>
  1659. <name>AsmExtraOptions</name>
  1660. <state></state>
  1661. </option>
  1662. <option>
  1663. <name>ACodeModel</name>
  1664. <state>1</state>
  1665. </option>
  1666. </data>
  1667. </settings>
  1668. <settings>
  1669. <name>OBJCOPY</name>
  1670. <archiveVersion>5</archiveVersion>
  1671. <data>
  1672. <version>0</version>
  1673. <wantNonLocal>1</wantNonLocal>
  1674. <debug>0</debug>
  1675. <option>
  1676. <name>OOCOutputFormat</name>
  1677. <version>0</version>
  1678. <state>0</state>
  1679. </option>
  1680. <option>
  1681. <name>OCOutputOverride</name>
  1682. <state>0</state>
  1683. </option>
  1684. <option>
  1685. <name>OOCOutputFile</name>
  1686. <state></state>
  1687. </option>
  1688. <option>
  1689. <name>OOCCommandLineProducer</name>
  1690. <state>1</state>
  1691. </option>
  1692. <option>
  1693. <name>OOCObjCopyEnable</name>
  1694. <state>0</state>
  1695. </option>
  1696. </data>
  1697. </settings>
  1698. <settings>
  1699. <name>CUSTOM</name>
  1700. <archiveVersion>3</archiveVersion>
  1701. <data>
  1702. <extensions></extensions>
  1703. <cmdline></cmdline>
  1704. <hasPrio>0</hasPrio>
  1705. <buildSequence>inputOutputBased</buildSequence>
  1706. </data>
  1707. </settings>
  1708. <settings>
  1709. <name>ILINK</name>
  1710. <archiveVersion>5</archiveVersion>
  1711. <data>
  1712. <version>10</version>
  1713. <wantNonLocal>1</wantNonLocal>
  1714. <debug>0</debug>
  1715. <option>
  1716. <name>IlinkLibIOConfig</name>
  1717. <state>1</state>
  1718. </option>
  1719. <option>
  1720. <name>IlinkStackSize</name>
  1721. <state>1</state>
  1722. </option>
  1723. <option>
  1724. <name>IlinkHeapSize</name>
  1725. <state>1</state>
  1726. </option>
  1727. <option>
  1728. <name>IlinkHeapSelect</name>
  1729. <state>1</state>
  1730. </option>
  1731. <option>
  1732. <name>IlinkLocaleSelect</name>
  1733. <state>1</state>
  1734. </option>
  1735. <option>
  1736. <name>IlinkInputFileSlave</name>
  1737. <state>0</state>
  1738. </option>
  1739. <option>
  1740. <name>IlinkOutputFile</name>
  1741. <state>###Unitialized###</state>
  1742. </option>
  1743. <option>
  1744. <name>IlinkDebugInfoEnable</name>
  1745. <state>1</state>
  1746. </option>
  1747. <option>
  1748. <name>IlinkKeepSymbols</name>
  1749. <state></state>
  1750. </option>
  1751. <option>
  1752. <name>IlinkRawBinaryFile</name>
  1753. <state></state>
  1754. </option>
  1755. <option>
  1756. <name>IlinkRawBinarySymbol</name>
  1757. <state></state>
  1758. </option>
  1759. <option>
  1760. <name>IlinkRawBinarySegment</name>
  1761. <state></state>
  1762. </option>
  1763. <option>
  1764. <name>IlinkRawBinaryAlign</name>
  1765. <state></state>
  1766. </option>
  1767. <option>
  1768. <name>IlinkDefines</name>
  1769. <state></state>
  1770. </option>
  1771. <option>
  1772. <name>IlinkConfigDefines</name>
  1773. <state></state>
  1774. </option>
  1775. <option>
  1776. <name>IlinkMapFile</name>
  1777. <state>1</state>
  1778. </option>
  1779. <option>
  1780. <name>IlinkLogFile</name>
  1781. <state>0</state>
  1782. </option>
  1783. <option>
  1784. <name>IlinkLogInitialization</name>
  1785. <state>0</state>
  1786. </option>
  1787. <option>
  1788. <name>IlinkLogModule</name>
  1789. <state>0</state>
  1790. </option>
  1791. <option>
  1792. <name>IlinkLogSection</name>
  1793. <state>0</state>
  1794. </option>
  1795. <option>
  1796. <name>IlinkLogVeneer</name>
  1797. <state>0</state>
  1798. </option>
  1799. <option>
  1800. <name>IlinkIcfOverride</name>
  1801. <state>0</state>
  1802. </option>
  1803. <option>
  1804. <name>IlinkIcfFile</name>
  1805. <state>lnk0t.icf</state>
  1806. </option>
  1807. <option>
  1808. <name>IlinkIcfFileSlave</name>
  1809. <state></state>
  1810. </option>
  1811. <option>
  1812. <name>IlinkEnableRemarks</name>
  1813. <state>0</state>
  1814. </option>
  1815. <option>
  1816. <name>IlinkSuppressDiags</name>
  1817. <state></state>
  1818. </option>
  1819. <option>
  1820. <name>IlinkTreatAsRem</name>
  1821. <state></state>
  1822. </option>
  1823. <option>
  1824. <name>IlinkTreatAsWarn</name>
  1825. <state></state>
  1826. </option>
  1827. <option>
  1828. <name>IlinkTreatAsErr</name>
  1829. <state></state>
  1830. </option>
  1831. <option>
  1832. <name>IlinkWarningsAreErrors</name>
  1833. <state>0</state>
  1834. </option>
  1835. <option>
  1836. <name>IlinkAutoLibEnable</name>
  1837. <state>1</state>
  1838. </option>
  1839. <option>
  1840. <name>IlinkAdditionalLibs</name>
  1841. <state></state>
  1842. </option>
  1843. <option>
  1844. <name>IlinkOverrideProgramEntryLabel</name>
  1845. <state>0</state>
  1846. </option>
  1847. <option>
  1848. <name>IlinkProgramEntryLabelSelect</name>
  1849. <state>0</state>
  1850. </option>
  1851. <option>
  1852. <name>IlinkProgramEntryLabel</name>
  1853. <state></state>
  1854. </option>
  1855. <option>
  1856. <name>DoFill</name>
  1857. <state>0</state>
  1858. </option>
  1859. <option>
  1860. <name>FillerByte</name>
  1861. <state>0xFF</state>
  1862. </option>
  1863. <option>
  1864. <name>FillerStart</name>
  1865. <state>0x0</state>
  1866. </option>
  1867. <option>
  1868. <name>FillerEnd</name>
  1869. <state>0x0</state>
  1870. </option>
  1871. <option>
  1872. <name>CrcSize</name>
  1873. <version>0</version>
  1874. <state>1</state>
  1875. </option>
  1876. <option>
  1877. <name>CrcAlign</name>
  1878. <state>1</state>
  1879. </option>
  1880. <option>
  1881. <name>CrcPoly</name>
  1882. <state>0x11021</state>
  1883. </option>
  1884. <option>
  1885. <name>CrcCompl</name>
  1886. <version>0</version>
  1887. <state>0</state>
  1888. </option>
  1889. <option>
  1890. <name>CrcBitOrder</name>
  1891. <version>0</version>
  1892. <state>0</state>
  1893. </option>
  1894. <option>
  1895. <name>CrcInitialValue</name>
  1896. <state>0x0</state>
  1897. </option>
  1898. <option>
  1899. <name>DoCrc</name>
  1900. <state>0</state>
  1901. </option>
  1902. <option>
  1903. <name>CrcFullSize</name>
  1904. <state>0</state>
  1905. </option>
  1906. <option>
  1907. <name>IlinkLogAutoLibSelect</name>
  1908. <state>0</state>
  1909. </option>
  1910. <option>
  1911. <name>IlinkLogRedirSymbols</name>
  1912. <state>0</state>
  1913. </option>
  1914. <option>
  1915. <name>IlinkLogUnusedFragments</name>
  1916. <state>0</state>
  1917. </option>
  1918. <option>
  1919. <name>IlinkCrcReverseByteOrder</name>
  1920. <state>0</state>
  1921. </option>
  1922. <option>
  1923. <name>IlinkCrcUseAsInput</name>
  1924. <state>1</state>
  1925. </option>
  1926. <option>
  1927. <name>CrcAlgorithm</name>
  1928. <version>1</version>
  1929. <state>1</state>
  1930. </option>
  1931. <option>
  1932. <name>CrcUnitSize</name>
  1933. <version>0</version>
  1934. <state>0</state>
  1935. </option>
  1936. <option>
  1937. <name>IlinkIcfFile_AltDefault</name>
  1938. <state></state>
  1939. </option>
  1940. <option>
  1941. <name>IlinkOptMergeDuplSections</name>
  1942. <state>0</state>
  1943. </option>
  1944. <option>
  1945. <name>IlinkOptUseVfe</name>
  1946. <state>1</state>
  1947. </option>
  1948. <option>
  1949. <name>IlinkOptForceVfe</name>
  1950. <state>0</state>
  1951. </option>
  1952. <option>
  1953. <name>IlinkStackAnalysisEnable</name>
  1954. <state>0</state>
  1955. </option>
  1956. <option>
  1957. <name>IlinkStackControlFile</name>
  1958. <state></state>
  1959. </option>
  1960. <option>
  1961. <name>IlinkStackCallGraphFile</name>
  1962. <state></state>
  1963. </option>
  1964. <option>
  1965. <name>IlinkLogCallGraph</name>
  1966. <state>0</state>
  1967. </option>
  1968. <option>
  1969. <name>IlinkEncInput</name>
  1970. <state>0</state>
  1971. </option>
  1972. <option>
  1973. <name>IlinkEncOutput</name>
  1974. <state>0</state>
  1975. </option>
  1976. <option>
  1977. <name>IlinkEncOutputBom</name>
  1978. <state>1</state>
  1979. </option>
  1980. <option>
  1981. <name>IlinkUseExtraOptions</name>
  1982. <state>0</state>
  1983. </option>
  1984. <option>
  1985. <name>IlinkExtraOptions</name>
  1986. <state></state>
  1987. </option>
  1988. <option>
  1989. <name>IlinkThreadsSlave</name>
  1990. <state>1</state>
  1991. </option>
  1992. <option>
  1993. <name>IlinkRawBinaryFile2</name>
  1994. <state></state>
  1995. </option>
  1996. <option>
  1997. <name>IlinkRawBinarySymbol2</name>
  1998. <state></state>
  1999. </option>
  2000. <option>
  2001. <name>IlinkRawBinarySegment2</name>
  2002. <state></state>
  2003. </option>
  2004. <option>
  2005. <name>IlinkRawBinaryAlign2</name>
  2006. <state></state>
  2007. </option>
  2008. <option>
  2009. <name>IlinkAutoVectorSetupSlave</name>
  2010. <state>1</state>
  2011. </option>
  2012. <option>
  2013. <name>ILINKStdOutErr</name>
  2014. <state>1</state>
  2015. </option>
  2016. <option>
  2017. <name>IlinkLogCrtRoutineSelection</name>
  2018. <state>0</state>
  2019. </option>
  2020. <option>
  2021. <name>IlinkLogFragmentInfo</name>
  2022. <state>0</state>
  2023. </option>
  2024. <option>
  2025. <name>IlinkLogInlining</name>
  2026. <state>0</state>
  2027. </option>
  2028. <option>
  2029. <name>IlinkLogMerging</name>
  2030. <state>0</state>
  2031. </option>
  2032. <option>
  2033. <name>IlinkDemangle</name>
  2034. <state>0</state>
  2035. </option>
  2036. <option>
  2037. <name>IlinkBufferedTerminalOutput</name>
  2038. <state>1</state>
  2039. </option>
  2040. <option>
  2041. <name>IlinkCspyDebugSupportEnable2</name>
  2042. <state>1</state>
  2043. </option>
  2044. <option>
  2045. <name>IlinkWrapperFileEnable</name>
  2046. <state>0</state>
  2047. </option>
  2048. <option>
  2049. <name>IlinkWrapperFile</name>
  2050. <state></state>
  2051. </option>
  2052. <option>
  2053. <name>ILinkCodeModel</name>
  2054. <state>1</state>
  2055. </option>
  2056. <option>
  2057. <name>ILinkCore</name>
  2058. <state>1</state>
  2059. </option>
  2060. <option>
  2061. <name>ILinkCoDenseJal</name>
  2062. <state>1</state>
  2063. </option>
  2064. <option>
  2065. <name>ILinkMisalignedDataAccess</name>
  2066. <state>0</state>
  2067. </option>
  2068. </data>
  2069. </settings>
  2070. <settings>
  2071. <name>IARCHIVE</name>
  2072. <archiveVersion>5</archiveVersion>
  2073. <data>
  2074. <version>0</version>
  2075. <wantNonLocal>1</wantNonLocal>
  2076. <debug>0</debug>
  2077. <option>
  2078. <name>IarchiveInputs</name>
  2079. <state></state>
  2080. </option>
  2081. <option>
  2082. <name>IarchiveOverride</name>
  2083. <state>0</state>
  2084. </option>
  2085. <option>
  2086. <name>IarchiveOutput</name>
  2087. <state>###Uninitialized###</state>
  2088. </option>
  2089. </data>
  2090. </settings>
  2091. <settings>
  2092. <name>BUILDACTION</name>
  2093. <archiveVersion>2</archiveVersion>
  2094. <data />
  2095. </settings>
  2096. </configuration>
  2097. <group>
  2098. <name>application</name>
  2099. <file>
  2100. <name>$PROJ_DIR$\..\..\..\application\threadx\smpdemo\main.c</name>
  2101. </file>
  2102. <file>
  2103. <name>$PROJ_DIR$\..\..\..\application\threadx\smpdemo\tx_user.h</name>
  2104. </file>
  2105. </group>
  2106. <group>
  2107. <name>nuclei_sdk</name>
  2108. <group>
  2109. <name>NMSIS</name>
  2110. <group>
  2111. <name>Core</name>
  2112. <group>
  2113. <name>Include</name>
  2114. <file>
  2115. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_compatiable.h</name>
  2116. </file>
  2117. <file>
  2118. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_base.h</name>
  2119. </file>
  2120. <file>
  2121. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_bitmanip.h</name>
  2122. </file>
  2123. <file>
  2124. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_cache.h</name>
  2125. </file>
  2126. <file>
  2127. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_cidu.h</name>
  2128. </file>
  2129. <file>
  2130. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_dsp.h</name>
  2131. </file>
  2132. <file>
  2133. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_eclic.h</name>
  2134. </file>
  2135. <file>
  2136. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_fpu.h</name>
  2137. </file>
  2138. <file>
  2139. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_plic.h</name>
  2140. </file>
  2141. <file>
  2142. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_pma.h</name>
  2143. </file>
  2144. <file>
  2145. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_pmp.h</name>
  2146. </file>
  2147. <file>
  2148. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_spmp.h</name>
  2149. </file>
  2150. <file>
  2151. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_timer.h</name>
  2152. </file>
  2153. <file>
  2154. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\core_feature_vector.h</name>
  2155. </file>
  2156. <file>
  2157. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\nmsis_bench.h</name>
  2158. </file>
  2159. <file>
  2160. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\nmsis_compiler.h</name>
  2161. </file>
  2162. <file>
  2163. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\nmsis_core.h</name>
  2164. </file>
  2165. <file>
  2166. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\nmsis_gcc.h</name>
  2167. </file>
  2168. <file>
  2169. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\nmsis_iar.h</name>
  2170. </file>
  2171. <file>
  2172. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\nmsis_version.h</name>
  2173. </file>
  2174. <file>
  2175. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\riscv_bits.h</name>
  2176. </file>
  2177. <file>
  2178. <name>$PROJ_DIR$\..\..\..\NMSIS\Core\Include\riscv_encoding.h</name>
  2179. </file>
  2180. </group>
  2181. </group>
  2182. </group>
  2183. <group>
  2184. <name>OS</name>
  2185. <group>
  2186. <name>ThreadX</name>
  2187. <group>
  2188. <name>common_smp</name>
  2189. <group>
  2190. <name>inc</name>
  2191. <file>
  2192. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_api.h</name>
  2193. </file>
  2194. <file>
  2195. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_block_pool.h</name>
  2196. </file>
  2197. <file>
  2198. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_byte_pool.h</name>
  2199. </file>
  2200. <file>
  2201. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_event_flags.h</name>
  2202. </file>
  2203. <file>
  2204. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_initialize.h</name>
  2205. </file>
  2206. <file>
  2207. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_mutex.h</name>
  2208. </file>
  2209. <file>
  2210. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_queue.h</name>
  2211. </file>
  2212. <file>
  2213. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_semaphore.h</name>
  2214. </file>
  2215. <file>
  2216. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_thread.h</name>
  2217. </file>
  2218. <file>
  2219. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_timer.h</name>
  2220. </file>
  2221. <file>
  2222. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_trace.h</name>
  2223. </file>
  2224. <file>
  2225. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\inc\tx_user_sample.h</name>
  2226. </file>
  2227. </group>
  2228. <group>
  2229. <name>src</name>
  2230. <file>
  2231. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_allocate.c</name>
  2232. </file>
  2233. <file>
  2234. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_cleanup.c</name>
  2235. </file>
  2236. <file>
  2237. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_create.c</name>
  2238. </file>
  2239. <file>
  2240. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_delete.c</name>
  2241. </file>
  2242. <file>
  2243. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_info_get.c</name>
  2244. </file>
  2245. <file>
  2246. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_initialize.c</name>
  2247. </file>
  2248. <file>
  2249. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_performance_info_get.c</name>
  2250. </file>
  2251. <file>
  2252. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_performance_system_info_get.c</name>
  2253. </file>
  2254. <file>
  2255. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_pool_prioritize.c</name>
  2256. </file>
  2257. <file>
  2258. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_block_release.c</name>
  2259. </file>
  2260. <file>
  2261. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_allocate.c</name>
  2262. </file>
  2263. <file>
  2264. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_cleanup.c</name>
  2265. </file>
  2266. <file>
  2267. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_create.c</name>
  2268. </file>
  2269. <file>
  2270. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_delete.c</name>
  2271. </file>
  2272. <file>
  2273. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_info_get.c</name>
  2274. </file>
  2275. <file>
  2276. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_initialize.c</name>
  2277. </file>
  2278. <file>
  2279. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_performance_info_get.c</name>
  2280. </file>
  2281. <file>
  2282. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_performance_system_info_get.c</name>
  2283. </file>
  2284. <file>
  2285. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_prioritize.c</name>
  2286. </file>
  2287. <file>
  2288. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_pool_search.c</name>
  2289. </file>
  2290. <file>
  2291. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_byte_release.c</name>
  2292. </file>
  2293. <file>
  2294. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_cleanup.c</name>
  2295. </file>
  2296. <file>
  2297. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_create.c</name>
  2298. </file>
  2299. <file>
  2300. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_delete.c</name>
  2301. </file>
  2302. <file>
  2303. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_get.c</name>
  2304. </file>
  2305. <file>
  2306. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_info_get.c</name>
  2307. </file>
  2308. <file>
  2309. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_initialize.c</name>
  2310. </file>
  2311. <file>
  2312. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_performance_info_get.c</name>
  2313. </file>
  2314. <file>
  2315. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_performance_system_info_get.c</name>
  2316. </file>
  2317. <file>
  2318. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_set.c</name>
  2319. </file>
  2320. <file>
  2321. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_event_flags_set_notify.c</name>
  2322. </file>
  2323. <file>
  2324. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_initialize_high_level.c</name>
  2325. </file>
  2326. <file>
  2327. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_initialize_kernel_enter.c</name>
  2328. </file>
  2329. <file>
  2330. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_initialize_kernel_setup.c</name>
  2331. </file>
  2332. <file>
  2333. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_misra.c</name>
  2334. </file>
  2335. <file>
  2336. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_cleanup.c</name>
  2337. </file>
  2338. <file>
  2339. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_create.c</name>
  2340. </file>
  2341. <file>
  2342. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_delete.c</name>
  2343. </file>
  2344. <file>
  2345. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_get.c</name>
  2346. </file>
  2347. <file>
  2348. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_info_get.c</name>
  2349. </file>
  2350. <file>
  2351. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_initialize.c</name>
  2352. </file>
  2353. <file>
  2354. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_performance_info_get.c</name>
  2355. </file>
  2356. <file>
  2357. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_performance_system_info_get.c</name>
  2358. </file>
  2359. <file>
  2360. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_prioritize.c</name>
  2361. </file>
  2362. <file>
  2363. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_priority_change.c</name>
  2364. </file>
  2365. <file>
  2366. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_mutex_put.c</name>
  2367. </file>
  2368. <file>
  2369. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_cleanup.c</name>
  2370. </file>
  2371. <file>
  2372. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_create.c</name>
  2373. </file>
  2374. <file>
  2375. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_delete.c</name>
  2376. </file>
  2377. <file>
  2378. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_flush.c</name>
  2379. </file>
  2380. <file>
  2381. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_front_send.c</name>
  2382. </file>
  2383. <file>
  2384. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_info_get.c</name>
  2385. </file>
  2386. <file>
  2387. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_initialize.c</name>
  2388. </file>
  2389. <file>
  2390. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_performance_info_get.c</name>
  2391. </file>
  2392. <file>
  2393. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_performance_system_info_get.c</name>
  2394. </file>
  2395. <file>
  2396. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_prioritize.c</name>
  2397. </file>
  2398. <file>
  2399. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_receive.c</name>
  2400. </file>
  2401. <file>
  2402. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_send.c</name>
  2403. </file>
  2404. <file>
  2405. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_queue_send_notify.c</name>
  2406. </file>
  2407. <file>
  2408. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_ceiling_put.c</name>
  2409. </file>
  2410. <file>
  2411. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_cleanup.c</name>
  2412. </file>
  2413. <file>
  2414. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_create.c</name>
  2415. </file>
  2416. <file>
  2417. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_delete.c</name>
  2418. </file>
  2419. <file>
  2420. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_get.c</name>
  2421. </file>
  2422. <file>
  2423. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_info_get.c</name>
  2424. </file>
  2425. <file>
  2426. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_initialize.c</name>
  2427. </file>
  2428. <file>
  2429. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_performance_info_get.c</name>
  2430. </file>
  2431. <file>
  2432. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_performance_system_info_get.c</name>
  2433. </file>
  2434. <file>
  2435. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_prioritize.c</name>
  2436. </file>
  2437. <file>
  2438. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_put.c</name>
  2439. </file>
  2440. <file>
  2441. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_semaphore_put_notify.c</name>
  2442. </file>
  2443. <file>
  2444. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_create.c</name>
  2445. </file>
  2446. <file>
  2447. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_delete.c</name>
  2448. </file>
  2449. <file>
  2450. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_entry_exit_notify.c</name>
  2451. </file>
  2452. <file>
  2453. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_identify.c</name>
  2454. </file>
  2455. <file>
  2456. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_info_get.c</name>
  2457. </file>
  2458. <file>
  2459. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_initialize.c</name>
  2460. </file>
  2461. <file>
  2462. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_performance_info_get.c</name>
  2463. </file>
  2464. <file>
  2465. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_performance_system_info_get.c</name>
  2466. </file>
  2467. <file>
  2468. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_preemption_change.c</name>
  2469. </file>
  2470. <file>
  2471. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_priority_change.c</name>
  2472. </file>
  2473. <file>
  2474. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_relinquish.c</name>
  2475. </file>
  2476. <file>
  2477. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_reset.c</name>
  2478. </file>
  2479. <file>
  2480. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_resume.c</name>
  2481. </file>
  2482. <file>
  2483. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_shell_entry.c</name>
  2484. </file>
  2485. <file>
  2486. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_sleep.c</name>
  2487. </file>
  2488. <file>
  2489. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_core_exclude.c</name>
  2490. </file>
  2491. <file>
  2492. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_core_exclude_get.c</name>
  2493. </file>
  2494. <file>
  2495. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_current_state_set.c</name>
  2496. </file>
  2497. <file>
  2498. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_debug_entry_insert.c</name>
  2499. </file>
  2500. <file>
  2501. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_high_level_initialize.c</name>
  2502. </file>
  2503. <file>
  2504. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_rebalance_execute_list.c</name>
  2505. </file>
  2506. <file>
  2507. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_smp_utilities.c</name>
  2508. </file>
  2509. <file>
  2510. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_stack_analyze.c</name>
  2511. </file>
  2512. <file>
  2513. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_stack_error_handler.c</name>
  2514. </file>
  2515. <file>
  2516. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_stack_error_notify.c</name>
  2517. </file>
  2518. <file>
  2519. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_suspend.c</name>
  2520. </file>
  2521. <file>
  2522. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_system_preempt_check.c</name>
  2523. </file>
  2524. <file>
  2525. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_system_resume.c</name>
  2526. </file>
  2527. <file>
  2528. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_system_suspend.c</name>
  2529. </file>
  2530. <file>
  2531. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_terminate.c</name>
  2532. </file>
  2533. <file>
  2534. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_time_slice.c</name>
  2535. </file>
  2536. <file>
  2537. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_time_slice_change.c</name>
  2538. </file>
  2539. <file>
  2540. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_timeout.c</name>
  2541. </file>
  2542. <file>
  2543. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_thread_wait_abort.c</name>
  2544. </file>
  2545. <file>
  2546. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_time_get.c</name>
  2547. </file>
  2548. <file>
  2549. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_time_set.c</name>
  2550. </file>
  2551. <file>
  2552. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_activate.c</name>
  2553. </file>
  2554. <file>
  2555. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_change.c</name>
  2556. </file>
  2557. <file>
  2558. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_create.c</name>
  2559. </file>
  2560. <file>
  2561. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_deactivate.c</name>
  2562. </file>
  2563. <file>
  2564. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_delete.c</name>
  2565. </file>
  2566. <file>
  2567. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_expiration_process.c</name>
  2568. </file>
  2569. <file>
  2570. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_info_get.c</name>
  2571. </file>
  2572. <file>
  2573. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_initialize.c</name>
  2574. </file>
  2575. <file>
  2576. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_performance_info_get.c</name>
  2577. </file>
  2578. <file>
  2579. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_performance_system_info_get.c</name>
  2580. </file>
  2581. <file>
  2582. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_smp_core_exclude.c</name>
  2583. </file>
  2584. <file>
  2585. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_smp_core_exclude_get.c</name>
  2586. </file>
  2587. <file>
  2588. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_system_activate.c</name>
  2589. </file>
  2590. <file>
  2591. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_system_deactivate.c</name>
  2592. </file>
  2593. <file>
  2594. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_timer_thread_entry.c</name>
  2595. </file>
  2596. <file>
  2597. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_buffer_full_notify.c</name>
  2598. </file>
  2599. <file>
  2600. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_disable.c</name>
  2601. </file>
  2602. <file>
  2603. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_enable.c</name>
  2604. </file>
  2605. <file>
  2606. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_event_filter.c</name>
  2607. </file>
  2608. <file>
  2609. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_event_unfilter.c</name>
  2610. </file>
  2611. <file>
  2612. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_initialize.c</name>
  2613. </file>
  2614. <file>
  2615. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_interrupt_control.c</name>
  2616. </file>
  2617. <file>
  2618. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_isr_enter_insert.c</name>
  2619. </file>
  2620. <file>
  2621. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_isr_exit_insert.c</name>
  2622. </file>
  2623. <file>
  2624. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_object_register.c</name>
  2625. </file>
  2626. <file>
  2627. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_object_unregister.c</name>
  2628. </file>
  2629. <file>
  2630. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\tx_trace_user_event_insert.c</name>
  2631. </file>
  2632. <file>
  2633. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_block_allocate.c</name>
  2634. </file>
  2635. <file>
  2636. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_block_pool_create.c</name>
  2637. </file>
  2638. <file>
  2639. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_block_pool_delete.c</name>
  2640. </file>
  2641. <file>
  2642. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_block_pool_info_get.c</name>
  2643. </file>
  2644. <file>
  2645. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_block_pool_prioritize.c</name>
  2646. </file>
  2647. <file>
  2648. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_block_release.c</name>
  2649. </file>
  2650. <file>
  2651. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_byte_allocate.c</name>
  2652. </file>
  2653. <file>
  2654. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_byte_pool_create.c</name>
  2655. </file>
  2656. <file>
  2657. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_byte_pool_delete.c</name>
  2658. </file>
  2659. <file>
  2660. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_byte_pool_info_get.c</name>
  2661. </file>
  2662. <file>
  2663. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_byte_pool_prioritize.c</name>
  2664. </file>
  2665. <file>
  2666. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_byte_release.c</name>
  2667. </file>
  2668. <file>
  2669. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_event_flags_create.c</name>
  2670. </file>
  2671. <file>
  2672. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_event_flags_delete.c</name>
  2673. </file>
  2674. <file>
  2675. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_event_flags_get.c</name>
  2676. </file>
  2677. <file>
  2678. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_event_flags_info_get.c</name>
  2679. </file>
  2680. <file>
  2681. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_event_flags_set.c</name>
  2682. </file>
  2683. <file>
  2684. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_event_flags_set_notify.c</name>
  2685. </file>
  2686. <file>
  2687. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_mutex_create.c</name>
  2688. </file>
  2689. <file>
  2690. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_mutex_delete.c</name>
  2691. </file>
  2692. <file>
  2693. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_mutex_get.c</name>
  2694. </file>
  2695. <file>
  2696. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_mutex_info_get.c</name>
  2697. </file>
  2698. <file>
  2699. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_mutex_prioritize.c</name>
  2700. </file>
  2701. <file>
  2702. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_mutex_put.c</name>
  2703. </file>
  2704. <file>
  2705. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_create.c</name>
  2706. </file>
  2707. <file>
  2708. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_delete.c</name>
  2709. </file>
  2710. <file>
  2711. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_flush.c</name>
  2712. </file>
  2713. <file>
  2714. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_front_send.c</name>
  2715. </file>
  2716. <file>
  2717. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_info_get.c</name>
  2718. </file>
  2719. <file>
  2720. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_prioritize.c</name>
  2721. </file>
  2722. <file>
  2723. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_receive.c</name>
  2724. </file>
  2725. <file>
  2726. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_send.c</name>
  2727. </file>
  2728. <file>
  2729. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_queue_send_notify.c</name>
  2730. </file>
  2731. <file>
  2732. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_ceiling_put.c</name>
  2733. </file>
  2734. <file>
  2735. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_create.c</name>
  2736. </file>
  2737. <file>
  2738. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_delete.c</name>
  2739. </file>
  2740. <file>
  2741. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_get.c</name>
  2742. </file>
  2743. <file>
  2744. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_info_get.c</name>
  2745. </file>
  2746. <file>
  2747. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_prioritize.c</name>
  2748. </file>
  2749. <file>
  2750. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_put.c</name>
  2751. </file>
  2752. <file>
  2753. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_semaphore_put_notify.c</name>
  2754. </file>
  2755. <file>
  2756. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_create.c</name>
  2757. </file>
  2758. <file>
  2759. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_delete.c</name>
  2760. </file>
  2761. <file>
  2762. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_entry_exit_notify.c</name>
  2763. </file>
  2764. <file>
  2765. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_info_get.c</name>
  2766. </file>
  2767. <file>
  2768. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_preemption_change.c</name>
  2769. </file>
  2770. <file>
  2771. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_priority_change.c</name>
  2772. </file>
  2773. <file>
  2774. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_relinquish.c</name>
  2775. </file>
  2776. <file>
  2777. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_reset.c</name>
  2778. </file>
  2779. <file>
  2780. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_resume.c</name>
  2781. </file>
  2782. <file>
  2783. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_suspend.c</name>
  2784. </file>
  2785. <file>
  2786. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_terminate.c</name>
  2787. </file>
  2788. <file>
  2789. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_time_slice_change.c</name>
  2790. </file>
  2791. <file>
  2792. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_thread_wait_abort.c</name>
  2793. </file>
  2794. <file>
  2795. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_timer_activate.c</name>
  2796. </file>
  2797. <file>
  2798. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_timer_change.c</name>
  2799. </file>
  2800. <file>
  2801. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_timer_create.c</name>
  2802. </file>
  2803. <file>
  2804. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_timer_deactivate.c</name>
  2805. </file>
  2806. <file>
  2807. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_timer_delete.c</name>
  2808. </file>
  2809. <file>
  2810. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\common_smp\src\txe_timer_info_get.c</name>
  2811. </file>
  2812. </group>
  2813. </group>
  2814. <group>
  2815. <name>ports</name>
  2816. <group>
  2817. <name>nuclei</name>
  2818. <group>
  2819. <name>iar</name>
  2820. <file>
  2821. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\ports_smp\nuclei\iar\context.S</name>
  2822. </file>
  2823. <file>
  2824. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\ports_smp\nuclei\iar\interrupt.S</name>
  2825. </file>
  2826. </group>
  2827. <file>
  2828. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\ports_smp\nuclei\port.c</name>
  2829. </file>
  2830. <file>
  2831. <name>$PROJ_DIR$\..\..\..\OS\ThreadX\ports_smp\nuclei\tx_port.h</name>
  2832. </file>
  2833. </group>
  2834. </group>
  2835. </group>
  2836. </group>
  2837. <group>
  2838. <name>SoC</name>
  2839. <group>
  2840. <name>Board</name>
  2841. <group>
  2842. <name>nuclei_fpga_eval</name>
  2843. <group>
  2844. <name>Include</name>
  2845. <file>
  2846. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Board\nuclei_fpga_eval\Include\board_nuclei_fpga_eval.h</name>
  2847. </file>
  2848. <file>
  2849. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Board\nuclei_fpga_eval\Include\nuclei_sdk_hal.h</name>
  2850. </file>
  2851. </group>
  2852. <group>
  2853. <name>Source</name>
  2854. <group>
  2855. <name>IAR</name>
  2856. <file>
  2857. <name>$PROJ_DIR$\..\..\..\application\threadx\smpdemo\iar_evalsoc_smp.icf</name>
  2858. </file>
  2859. </group>
  2860. </group>
  2861. </group>
  2862. </group>
  2863. <group>
  2864. <name>Common</name>
  2865. <group>
  2866. <name>Include</name>
  2867. <file>
  2868. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include\cpufeature.h</name>
  2869. </file>
  2870. <file>
  2871. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include\evalsoc.h</name>
  2872. </file>
  2873. <file>
  2874. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include\evalsoc_uart.h</name>
  2875. </file>
  2876. <file>
  2877. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include\nuclei_sdk_soc.h</name>
  2878. </file>
  2879. <file>
  2880. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Include\system_evalsoc.h</name>
  2881. </file>
  2882. </group>
  2883. <group>
  2884. <name>Source</name>
  2885. <group>
  2886. <name>Drivers</name>
  2887. <file>
  2888. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\Drivers\evalsoc_uart.c</name>
  2889. </file>
  2890. </group>
  2891. <group>
  2892. <name>IAR</name>
  2893. <file>
  2894. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\IAR\intexc_evalsoc.S</name>
  2895. </file>
  2896. <file>
  2897. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\IAR\startup.S</name>
  2898. </file>
  2899. <file>
  2900. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\IAR\startup_evalsoc.c</name>
  2901. </file>
  2902. </group>
  2903. <group>
  2904. <name>Stubs</name>
  2905. <group>
  2906. <name>iardlib</name>
  2907. <file>
  2908. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\Stubs\iardlib\stubs.c</name>
  2909. </file>
  2910. </group>
  2911. </group>
  2912. <file>
  2913. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\evalsoc_common.c</name>
  2914. </file>
  2915. <file>
  2916. <name>$PROJ_DIR$\..\..\..\SoC\evalsoc\Common\Source\system_evalsoc.c</name>
  2917. </file>
  2918. </group>
  2919. </group>
  2920. </group>
  2921. </group>
  2922. </project>