WLMCP.ewp 103 KB

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