n32g45x_rtthread.uvoptx 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <ProjectOpt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_optx.xsd">
  3. <SchemaVersion>1.0</SchemaVersion>
  4. <Header>### uVision Project, (C) Keil Software</Header>
  5. <Extensions>
  6. <cExt>*.c</cExt>
  7. <aExt>*.s*; *.src; *.a*</aExt>
  8. <oExt>*.obj; *.o</oExt>
  9. <lExt>*.lib</lExt>
  10. <tExt>*.txt; *.h; *.inc; *.md</tExt>
  11. <pExt>*.plm</pExt>
  12. <CppX>*.cpp</CppX>
  13. <nMigrate>0</nMigrate>
  14. </Extensions>
  15. <DaveTm>
  16. <dwLowDateTime>0</dwLowDateTime>
  17. <dwHighDateTime>0</dwHighDateTime>
  18. </DaveTm>
  19. <Target>
  20. <TargetName>vro24_app</TargetName>
  21. <ToolsetNumber>0x4</ToolsetNumber>
  22. <ToolsetName>ARM-ADS</ToolsetName>
  23. <TargetOption>
  24. <CLKADS>12000000</CLKADS>
  25. <OPTTT>
  26. <gFlags>1</gFlags>
  27. <BeepAtEnd>1</BeepAtEnd>
  28. <RunSim>0</RunSim>
  29. <RunTarget>1</RunTarget>
  30. <RunAbUc>0</RunAbUc>
  31. </OPTTT>
  32. <OPTHX>
  33. <HexSelection>1</HexSelection>
  34. <FlashByte>65535</FlashByte>
  35. <HexRangeLowAddress>0</HexRangeLowAddress>
  36. <HexRangeHighAddress>0</HexRangeHighAddress>
  37. <HexOffset>0</HexOffset>
  38. </OPTHX>
  39. <OPTLEX>
  40. <PageWidth>79</PageWidth>
  41. <PageLength>66</PageLength>
  42. <TabStop>8</TabStop>
  43. <ListingPath>.\Listings\</ListingPath>
  44. </OPTLEX>
  45. <ListingPage>
  46. <CreateCListing>1</CreateCListing>
  47. <CreateAListing>1</CreateAListing>
  48. <CreateLListing>1</CreateLListing>
  49. <CreateIListing>0</CreateIListing>
  50. <AsmCond>1</AsmCond>
  51. <AsmSymb>1</AsmSymb>
  52. <AsmXref>0</AsmXref>
  53. <CCond>1</CCond>
  54. <CCode>0</CCode>
  55. <CListInc>0</CListInc>
  56. <CSymb>0</CSymb>
  57. <LinkerCodeListing>0</LinkerCodeListing>
  58. </ListingPage>
  59. <OPTXL>
  60. <LMap>1</LMap>
  61. <LComments>1</LComments>
  62. <LGenerateSymbols>1</LGenerateSymbols>
  63. <LLibSym>1</LLibSym>
  64. <LLines>1</LLines>
  65. <LLocSym>1</LLocSym>
  66. <LPubSym>1</LPubSym>
  67. <LXref>0</LXref>
  68. <LExpSel>0</LExpSel>
  69. </OPTXL>
  70. <OPTFL>
  71. <tvExp>1</tvExp>
  72. <tvExpOptDlg>0</tvExpOptDlg>
  73. <IsCurrentTarget>1</IsCurrentTarget>
  74. </OPTFL>
  75. <CpuCode>255</CpuCode>
  76. <DebugOpt>
  77. <uSim>0</uSim>
  78. <uTrg>1</uTrg>
  79. <sLdApp>1</sLdApp>
  80. <sGomain>1</sGomain>
  81. <sRbreak>1</sRbreak>
  82. <sRwatch>1</sRwatch>
  83. <sRmem>1</sRmem>
  84. <sRfunc>1</sRfunc>
  85. <sRbox>1</sRbox>
  86. <tLdApp>1</tLdApp>
  87. <tGomain>1</tGomain>
  88. <tRbreak>1</tRbreak>
  89. <tRwatch>1</tRwatch>
  90. <tRmem>1</tRmem>
  91. <tRfunc>0</tRfunc>
  92. <tRbox>1</tRbox>
  93. <tRtrace>1</tRtrace>
  94. <sRSysVw>1</sRSysVw>
  95. <tRSysVw>1</tRSysVw>
  96. <sRunDeb>0</sRunDeb>
  97. <sLrtime>0</sLrtime>
  98. <bEvRecOn>1</bEvRecOn>
  99. <bSchkAxf>0</bSchkAxf>
  100. <bTchkAxf>0</bTchkAxf>
  101. <nTsel>4</nTsel>
  102. <sDll></sDll>
  103. <sDllPa></sDllPa>
  104. <sDlgDll></sDlgDll>
  105. <sDlgPa></sDlgPa>
  106. <sIfile></sIfile>
  107. <tDll></tDll>
  108. <tDllPa></tDllPa>
  109. <tDlgDll></tDlgDll>
  110. <tDlgPa></tDlgPa>
  111. <tIfile></tIfile>
  112. <pMon>Segger\JL2CM3.dll</pMon>
  113. </DebugOpt>
  114. <TargetDriverDllRegistry>
  115. <SetRegEntry>
  116. <Number>0</Number>
  117. <Key>DLGUARM</Key>
  118. <Name>d</Name>
  119. </SetRegEntry>
  120. <SetRegEntry>
  121. <Number>0</Number>
  122. <Key>UL2CM3</Key>
  123. <Name>UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0N32G45x -FL040000 -FS08000000 -FP0($$Device:N32G455CCL7$Flash\N32G45x.FLM)</Name>
  124. </SetRegEntry>
  125. <SetRegEntry>
  126. <Number>0</Number>
  127. <Key>JL2CM3</Key>
  128. <Name>-U69409664 -O78 -S3 -ZTIFSpeedSel3000 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO15 -FD20000000 -FC1000 -FN1 -FF0N32G45x.FLM -FS08000000 -FL040000 -FP0($$Device:N32G455CCL7$Flash\N32G45x.FLM)</Name>
  129. </SetRegEntry>
  130. <SetRegEntry>
  131. <Number>0</Number>
  132. <Key>ARMRTXEVENTFLAGS</Key>
  133. <Name>-L70 -Z18 -C0 -M0 -T1</Name>
  134. </SetRegEntry>
  135. <SetRegEntry>
  136. <Number>0</Number>
  137. <Key>DLGTARM</Key>
  138. <Name>(1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=1181,193,1439,781,0)</Name>
  139. </SetRegEntry>
  140. <SetRegEntry>
  141. <Number>0</Number>
  142. <Key>ARMDBGFLAGS</Key>
  143. <Name></Name>
  144. </SetRegEntry>
  145. </TargetDriverDllRegistry>
  146. <Breakpoint/>
  147. <WatchWindow1>
  148. <Ww>
  149. <count>0</count>
  150. <WinNumber>1</WinNumber>
  151. <ItemText>cluster</ItemText>
  152. </Ww>
  153. <Ww>
  154. <count>1</count>
  155. <WinNumber>1</WinNumber>
  156. <ItemText>radar_frame_buffer</ItemText>
  157. </Ww>
  158. <Ww>
  159. <count>2</count>
  160. <WinNumber>1</WinNumber>
  161. <ItemText>other</ItemText>
  162. </Ww>
  163. <Ww>
  164. <count>3</count>
  165. <WinNumber>1</WinNumber>
  166. <ItemText>terrain_bins</ItemText>
  167. </Ww>
  168. <Ww>
  169. <count>4</count>
  170. <WinNumber>1</WinNumber>
  171. <ItemText>TerrainPoints</ItemText>
  172. </Ww>
  173. <Ww>
  174. <count>5</count>
  175. <WinNumber>1</WinNumber>
  176. <ItemText>value_25prctile</ItemText>
  177. </Ww>
  178. <Ww>
  179. <count>6</count>
  180. <WinNumber>1</WinNumber>
  181. <ItemText>i</ItemText>
  182. </Ww>
  183. <Ww>
  184. <count>7</count>
  185. <WinNumber>1</WinNumber>
  186. <ItemText>radar_frame_buffer</ItemText>
  187. </Ww>
  188. <Ww>
  189. <count>8</count>
  190. <WinNumber>1</WinNumber>
  191. <ItemText>can_info_frame</ItemText>
  192. </Ww>
  193. <Ww>
  194. <count>9</count>
  195. <WinNumber>1</WinNumber>
  196. <ItemText>uart2_rdata,0x0A</ItemText>
  197. </Ww>
  198. <Ww>
  199. <count>10</count>
  200. <WinNumber>1</WinNumber>
  201. <ItemText>head_data[8]</ItemText>
  202. </Ww>
  203. <Ww>
  204. <count>11</count>
  205. <WinNumber>1</WinNumber>
  206. <ItemText>head_data</ItemText>
  207. </Ww>
  208. <Ww>
  209. <count>12</count>
  210. <WinNumber>1</WinNumber>
  211. <ItemText>receive_flag</ItemText>
  212. </Ww>
  213. <Ww>
  214. <count>13</count>
  215. <WinNumber>1</WinNumber>
  216. <ItemText>errcnt</ItemText>
  217. </Ww>
  218. <Ww>
  219. <count>14</count>
  220. <WinNumber>1</WinNumber>
  221. <ItemText>usart2_ore_cnt</ItemText>
  222. </Ww>
  223. <Ww>
  224. <count>15</count>
  225. <WinNumber>1</WinNumber>
  226. <ItemText>other</ItemText>
  227. </Ww>
  228. <Ww>
  229. <count>16</count>
  230. <WinNumber>1</WinNumber>
  231. <ItemText>euler_temp</ItemText>
  232. </Ww>
  233. <Ww>
  234. <count>17</count>
  235. <WinNumber>1</WinNumber>
  236. <ItemText>terrain_bins</ItemText>
  237. </Ww>
  238. <Ww>
  239. <count>18</count>
  240. <WinNumber>1</WinNumber>
  241. <ItemText>terrain_predict</ItemText>
  242. </Ww>
  243. <Ww>
  244. <count>19</count>
  245. <WinNumber>1</WinNumber>
  246. <ItemText>temp_x</ItemText>
  247. </Ww>
  248. <Ww>
  249. <count>20</count>
  250. <WinNumber>1</WinNumber>
  251. <ItemText>temp_y</ItemText>
  252. </Ww>
  253. <Ww>
  254. <count>21</count>
  255. <WinNumber>1</WinNumber>
  256. <ItemText>temp_z</ItemText>
  257. </Ww>
  258. <Ww>
  259. <count>22</count>
  260. <WinNumber>1</WinNumber>
  261. <ItemText>positive_num</ItemText>
  262. </Ww>
  263. <Ww>
  264. <count>23</count>
  265. <WinNumber>1</WinNumber>
  266. <ItemText>negative_num</ItemText>
  267. </Ww>
  268. <Ww>
  269. <count>24</count>
  270. <WinNumber>1</WinNumber>
  271. <ItemText>msg</ItemText>
  272. </Ww>
  273. <Ww>
  274. <count>25</count>
  275. <WinNumber>1</WinNumber>
  276. <ItemText>canard</ItemText>
  277. </Ww>
  278. <Ww>
  279. <count>26</count>
  280. <WinNumber>1</WinNumber>
  281. <ItemText>txf</ItemText>
  282. </Ww>
  283. </WatchWindow1>
  284. <WatchWindow2>
  285. <Ww>
  286. <count>0</count>
  287. <WinNumber>2</WinNumber>
  288. <ItemText>uart2_rdata</ItemText>
  289. </Ww>
  290. <Ww>
  291. <count>1</count>
  292. <WinNumber>2</WinNumber>
  293. <ItemText>data_len</ItemText>
  294. </Ww>
  295. </WatchWindow2>
  296. <MemoryWindow2>
  297. <Mm>
  298. <WinNumber>2</WinNumber>
  299. <SubType>3</SubType>
  300. <ItemText>padc_frame_data[2]</ItemText>
  301. <AccSizeX>0</AccSizeX>
  302. </Mm>
  303. </MemoryWindow2>
  304. <MemoryWindow3>
  305. <Mm>
  306. <WinNumber>3</WinNumber>
  307. <SubType>3</SubType>
  308. <ItemText>padc_frame_data[1]</ItemText>
  309. <AccSizeX>0</AccSizeX>
  310. </Mm>
  311. </MemoryWindow3>
  312. <MemoryWindow4>
  313. <Mm>
  314. <WinNumber>4</WinNumber>
  315. <SubType>6</SubType>
  316. <ItemText>data_in</ItemText>
  317. <AccSizeX>0</AccSizeX>
  318. </Mm>
  319. </MemoryWindow4>
  320. <Tracepoint>
  321. <THDelay>0</THDelay>
  322. </Tracepoint>
  323. <DebugFlag>
  324. <trace>0</trace>
  325. <periodic>1</periodic>
  326. <aLwin>1</aLwin>
  327. <aCover>0</aCover>
  328. <aSer1>0</aSer1>
  329. <aSer2>0</aSer2>
  330. <aPa>0</aPa>
  331. <viewmode>1</viewmode>
  332. <vrSel>0</vrSel>
  333. <aSym>0</aSym>
  334. <aTbox>0</aTbox>
  335. <AscS1>0</AscS1>
  336. <AscS2>0</AscS2>
  337. <AscS3>0</AscS3>
  338. <aSer3>0</aSer3>
  339. <eProf>0</eProf>
  340. <aLa>0</aLa>
  341. <aPa1>0</aPa1>
  342. <AscS4>0</AscS4>
  343. <aSer4>0</aSer4>
  344. <StkLoc>0</StkLoc>
  345. <TrcWin>0</TrcWin>
  346. <newCpu>0</newCpu>
  347. <uProt>0</uProt>
  348. </DebugFlag>
  349. <LintExecutable></LintExecutable>
  350. <LintConfigFile></LintConfigFile>
  351. <bLintAuto>0</bLintAuto>
  352. <bAutoGenD>0</bAutoGenD>
  353. <LntExFlags>0</LntExFlags>
  354. <pMisraName></pMisraName>
  355. <pszMrule></pszMrule>
  356. <pSingCmds></pSingCmds>
  357. <pMultCmds></pMultCmds>
  358. <pMisraNamep></pMisraNamep>
  359. <pszMrulep></pszMrulep>
  360. <pSingCmdsp></pSingCmdsp>
  361. <pMultCmdsp></pMultCmdsp>
  362. </TargetOption>
  363. </Target>
  364. <Group>
  365. <GroupName>App</GroupName>
  366. <tvExp>1</tvExp>
  367. <tvExpOptDlg>0</tvExpOptDlg>
  368. <cbSel>0</cbSel>
  369. <RteFlg>0</RteFlg>
  370. <File>
  371. <GroupNumber>1</GroupNumber>
  372. <FileNumber>1</FileNumber>
  373. <FileType>1</FileType>
  374. <tvExp>0</tvExp>
  375. <tvExpOptDlg>0</tvExpOptDlg>
  376. <bDave2>0</bDave2>
  377. <PathWithFileName>..\App\application.c</PathWithFileName>
  378. <FilenameWithoutPath>application.c</FilenameWithoutPath>
  379. <RteFlg>0</RteFlg>
  380. <bShared>0</bShared>
  381. </File>
  382. <File>
  383. <GroupNumber>1</GroupNumber>
  384. <FileNumber>2</FileNumber>
  385. <FileType>4</FileType>
  386. <tvExp>0</tvExp>
  387. <tvExpOptDlg>0</tvExpOptDlg>
  388. <bDave2>0</bDave2>
  389. <PathWithFileName>..\App\n32g45x_radar_alg.lib</PathWithFileName>
  390. <FilenameWithoutPath>n32g45x_radar_alg.lib</FilenameWithoutPath>
  391. <RteFlg>0</RteFlg>
  392. <bShared>0</bShared>
  393. </File>
  394. <File>
  395. <GroupNumber>1</GroupNumber>
  396. <FileNumber>3</FileNumber>
  397. <FileType>1</FileType>
  398. <tvExp>0</tvExp>
  399. <tvExpOptDlg>0</tvExpOptDlg>
  400. <bDave2>0</bDave2>
  401. <PathWithFileName>..\App\algorithm.c</PathWithFileName>
  402. <FilenameWithoutPath>algorithm.c</FilenameWithoutPath>
  403. <RteFlg>0</RteFlg>
  404. <bShared>0</bShared>
  405. </File>
  406. <File>
  407. <GroupNumber>1</GroupNumber>
  408. <FileNumber>4</FileNumber>
  409. <FileType>1</FileType>
  410. <tvExp>0</tvExp>
  411. <tvExpOptDlg>0</tvExpOptDlg>
  412. <bDave2>0</bDave2>
  413. <PathWithFileName>..\App\dri_can.c</PathWithFileName>
  414. <FilenameWithoutPath>dri_can.c</FilenameWithoutPath>
  415. <RteFlg>0</RteFlg>
  416. <bShared>0</bShared>
  417. </File>
  418. <File>
  419. <GroupNumber>1</GroupNumber>
  420. <FileNumber>5</FileNumber>
  421. <FileType>1</FileType>
  422. <tvExp>0</tvExp>
  423. <tvExpOptDlg>0</tvExpOptDlg>
  424. <bDave2>0</bDave2>
  425. <PathWithFileName>..\App\KelmanFilter.c</PathWithFileName>
  426. <FilenameWithoutPath>KelmanFilter.c</FilenameWithoutPath>
  427. <RteFlg>0</RteFlg>
  428. <bShared>0</bShared>
  429. </File>
  430. </Group>
  431. <Group>
  432. <GroupName>Core</GroupName>
  433. <tvExp>1</tvExp>
  434. <tvExpOptDlg>0</tvExpOptDlg>
  435. <cbSel>0</cbSel>
  436. <RteFlg>0</RteFlg>
  437. <File>
  438. <GroupNumber>2</GroupNumber>
  439. <FileNumber>6</FileNumber>
  440. <FileType>1</FileType>
  441. <tvExp>0</tvExp>
  442. <tvExpOptDlg>0</tvExpOptDlg>
  443. <bDave2>0</bDave2>
  444. <PathWithFileName>..\Core\src\main.c</PathWithFileName>
  445. <FilenameWithoutPath>main.c</FilenameWithoutPath>
  446. <RteFlg>0</RteFlg>
  447. <bShared>0</bShared>
  448. </File>
  449. <File>
  450. <GroupNumber>2</GroupNumber>
  451. <FileNumber>7</FileNumber>
  452. <FileType>1</FileType>
  453. <tvExp>0</tvExp>
  454. <tvExpOptDlg>0</tvExpOptDlg>
  455. <bDave2>0</bDave2>
  456. <PathWithFileName>..\Core\src\n32g45x_it.c</PathWithFileName>
  457. <FilenameWithoutPath>n32g45x_it.c</FilenameWithoutPath>
  458. <RteFlg>0</RteFlg>
  459. <bShared>0</bShared>
  460. </File>
  461. <File>
  462. <GroupNumber>2</GroupNumber>
  463. <FileNumber>8</FileNumber>
  464. <FileType>1</FileType>
  465. <tvExp>0</tvExp>
  466. <tvExpOptDlg>0</tvExpOptDlg>
  467. <bDave2>0</bDave2>
  468. <PathWithFileName>..\Core\src\gpio.c</PathWithFileName>
  469. <FilenameWithoutPath>gpio.c</FilenameWithoutPath>
  470. <RteFlg>0</RteFlg>
  471. <bShared>0</bShared>
  472. </File>
  473. <File>
  474. <GroupNumber>2</GroupNumber>
  475. <FileNumber>9</FileNumber>
  476. <FileType>1</FileType>
  477. <tvExp>0</tvExp>
  478. <tvExpOptDlg>0</tvExpOptDlg>
  479. <bDave2>0</bDave2>
  480. <PathWithFileName>..\Core\src\iwdg.c</PathWithFileName>
  481. <FilenameWithoutPath>iwdg.c</FilenameWithoutPath>
  482. <RteFlg>0</RteFlg>
  483. <bShared>0</bShared>
  484. </File>
  485. <File>
  486. <GroupNumber>2</GroupNumber>
  487. <FileNumber>10</FileNumber>
  488. <FileType>1</FileType>
  489. <tvExp>0</tvExp>
  490. <tvExpOptDlg>0</tvExpOptDlg>
  491. <bDave2>0</bDave2>
  492. <PathWithFileName>..\Core\src\spi.c</PathWithFileName>
  493. <FilenameWithoutPath>spi.c</FilenameWithoutPath>
  494. <RteFlg>0</RteFlg>
  495. <bShared>0</bShared>
  496. </File>
  497. <File>
  498. <GroupNumber>2</GroupNumber>
  499. <FileNumber>11</FileNumber>
  500. <FileType>1</FileType>
  501. <tvExp>0</tvExp>
  502. <tvExpOptDlg>0</tvExpOptDlg>
  503. <bDave2>0</bDave2>
  504. <PathWithFileName>..\Core\src\rcc.c</PathWithFileName>
  505. <FilenameWithoutPath>rcc.c</FilenameWithoutPath>
  506. <RteFlg>0</RteFlg>
  507. <bShared>0</bShared>
  508. </File>
  509. <File>
  510. <GroupNumber>2</GroupNumber>
  511. <FileNumber>12</FileNumber>
  512. <FileType>1</FileType>
  513. <tvExp>0</tvExp>
  514. <tvExpOptDlg>0</tvExpOptDlg>
  515. <bDave2>0</bDave2>
  516. <PathWithFileName>..\Core\src\usart.c</PathWithFileName>
  517. <FilenameWithoutPath>usart.c</FilenameWithoutPath>
  518. <RteFlg>0</RteFlg>
  519. <bShared>0</bShared>
  520. </File>
  521. <File>
  522. <GroupNumber>2</GroupNumber>
  523. <FileNumber>13</FileNumber>
  524. <FileType>1</FileType>
  525. <tvExp>0</tvExp>
  526. <tvExpOptDlg>0</tvExpOptDlg>
  527. <bDave2>0</bDave2>
  528. <PathWithFileName>..\Core\src\dri_Flash.c</PathWithFileName>
  529. <FilenameWithoutPath>dri_Flash.c</FilenameWithoutPath>
  530. <RteFlg>0</RteFlg>
  531. <bShared>0</bShared>
  532. </File>
  533. </Group>
  534. <Group>
  535. <GroupName>Dbg</GroupName>
  536. <tvExp>0</tvExp>
  537. <tvExpOptDlg>0</tvExpOptDlg>
  538. <cbSel>0</cbSel>
  539. <RteFlg>0</RteFlg>
  540. </Group>
  541. <Group>
  542. <GroupName>Cortex-m4</GroupName>
  543. <tvExp>0</tvExp>
  544. <tvExpOptDlg>0</tvExpOptDlg>
  545. <cbSel>0</cbSel>
  546. <RteFlg>0</RteFlg>
  547. <File>
  548. <GroupNumber>4</GroupNumber>
  549. <FileNumber>14</FileNumber>
  550. <FileType>2</FileType>
  551. <tvExp>0</tvExp>
  552. <tvExpOptDlg>0</tvExpOptDlg>
  553. <bDave2>0</bDave2>
  554. <PathWithFileName>..\Middlewares\rt-thread\libcpu\cortex-m4\context_rvds.S</PathWithFileName>
  555. <FilenameWithoutPath>context_rvds.S</FilenameWithoutPath>
  556. <RteFlg>0</RteFlg>
  557. <bShared>0</bShared>
  558. </File>
  559. <File>
  560. <GroupNumber>4</GroupNumber>
  561. <FileNumber>15</FileNumber>
  562. <FileType>1</FileType>
  563. <tvExp>0</tvExp>
  564. <tvExpOptDlg>0</tvExpOptDlg>
  565. <bDave2>0</bDave2>
  566. <PathWithFileName>..\Middlewares\rt-thread\libcpu\cortex-m4\cpuport.c</PathWithFileName>
  567. <FilenameWithoutPath>cpuport.c</FilenameWithoutPath>
  568. <RteFlg>0</RteFlg>
  569. <bShared>0</bShared>
  570. </File>
  571. </Group>
  572. <Group>
  573. <GroupName>Drivers/BSP</GroupName>
  574. <tvExp>0</tvExp>
  575. <tvExpOptDlg>0</tvExpOptDlg>
  576. <cbSel>0</cbSel>
  577. <RteFlg>0</RteFlg>
  578. <File>
  579. <GroupNumber>5</GroupNumber>
  580. <FileNumber>16</FileNumber>
  581. <FileType>1</FileType>
  582. <tvExp>0</tvExp>
  583. <tvExpOptDlg>0</tvExpOptDlg>
  584. <bDave2>0</bDave2>
  585. <PathWithFileName>..\Drivers\BSP\src\bsp.c</PathWithFileName>
  586. <FilenameWithoutPath>bsp.c</FilenameWithoutPath>
  587. <RteFlg>0</RteFlg>
  588. <bShared>0</bShared>
  589. </File>
  590. <File>
  591. <GroupNumber>5</GroupNumber>
  592. <FileNumber>17</FileNumber>
  593. <FileType>1</FileType>
  594. <tvExp>0</tvExp>
  595. <tvExpOptDlg>0</tvExpOptDlg>
  596. <bDave2>0</bDave2>
  597. <PathWithFileName>..\Drivers\BSP\src\log.c</PathWithFileName>
  598. <FilenameWithoutPath>log.c</FilenameWithoutPath>
  599. <RteFlg>0</RteFlg>
  600. <bShared>0</bShared>
  601. </File>
  602. </Group>
  603. <Group>
  604. <GroupName>Drivers/CMSIS</GroupName>
  605. <tvExp>0</tvExp>
  606. <tvExpOptDlg>0</tvExpOptDlg>
  607. <cbSel>0</cbSel>
  608. <RteFlg>0</RteFlg>
  609. <File>
  610. <GroupNumber>6</GroupNumber>
  611. <FileNumber>18</FileNumber>
  612. <FileType>1</FileType>
  613. <tvExp>0</tvExp>
  614. <tvExpOptDlg>0</tvExpOptDlg>
  615. <bDave2>0</bDave2>
  616. <PathWithFileName>..\Drivers\CMSIS\device\system_n32g45x.c</PathWithFileName>
  617. <FilenameWithoutPath>system_n32g45x.c</FilenameWithoutPath>
  618. <RteFlg>0</RteFlg>
  619. <bShared>0</bShared>
  620. </File>
  621. <File>
  622. <GroupNumber>6</GroupNumber>
  623. <FileNumber>19</FileNumber>
  624. <FileType>2</FileType>
  625. <tvExp>0</tvExp>
  626. <tvExpOptDlg>0</tvExpOptDlg>
  627. <bDave2>0</bDave2>
  628. <PathWithFileName>..\Drivers\CMSIS\device\startup\startup_n32g45x.s</PathWithFileName>
  629. <FilenameWithoutPath>startup_n32g45x.s</FilenameWithoutPath>
  630. <RteFlg>0</RteFlg>
  631. <bShared>0</bShared>
  632. </File>
  633. <File>
  634. <GroupNumber>6</GroupNumber>
  635. <FileNumber>20</FileNumber>
  636. <FileType>4</FileType>
  637. <tvExp>0</tvExp>
  638. <tvExpOptDlg>0</tvExpOptDlg>
  639. <bDave2>0</bDave2>
  640. <PathWithFileName>..\Drivers\CMSIS\lib\arm_cortexM4lf_math.lib</PathWithFileName>
  641. <FilenameWithoutPath>arm_cortexM4lf_math.lib</FilenameWithoutPath>
  642. <RteFlg>0</RteFlg>
  643. <bShared>0</bShared>
  644. </File>
  645. </Group>
  646. <Group>
  647. <GroupName>Drivers/n32g45x_algo_lib</GroupName>
  648. <tvExp>0</tvExp>
  649. <tvExpOptDlg>0</tvExpOptDlg>
  650. <cbSel>0</cbSel>
  651. <RteFlg>0</RteFlg>
  652. <File>
  653. <GroupNumber>7</GroupNumber>
  654. <FileNumber>21</FileNumber>
  655. <FileType>4</FileType>
  656. <tvExp>0</tvExp>
  657. <tvExpOptDlg>0</tvExpOptDlg>
  658. <bDave2>0</bDave2>
  659. <PathWithFileName>..\Drivers\n32g45x_algo_lib\lib\n32g45x_aes.lib</PathWithFileName>
  660. <FilenameWithoutPath>n32g45x_aes.lib</FilenameWithoutPath>
  661. <RteFlg>0</RteFlg>
  662. <bShared>0</bShared>
  663. </File>
  664. <File>
  665. <GroupNumber>7</GroupNumber>
  666. <FileNumber>22</FileNumber>
  667. <FileType>4</FileType>
  668. <tvExp>0</tvExp>
  669. <tvExpOptDlg>0</tvExpOptDlg>
  670. <bDave2>0</bDave2>
  671. <PathWithFileName>..\Drivers\n32g45x_algo_lib\lib\n32g45x_algo_common.lib</PathWithFileName>
  672. <FilenameWithoutPath>n32g45x_algo_common.lib</FilenameWithoutPath>
  673. <RteFlg>0</RteFlg>
  674. <bShared>0</bShared>
  675. </File>
  676. <File>
  677. <GroupNumber>7</GroupNumber>
  678. <FileNumber>23</FileNumber>
  679. <FileType>4</FileType>
  680. <tvExp>0</tvExp>
  681. <tvExpOptDlg>0</tvExpOptDlg>
  682. <bDave2>0</bDave2>
  683. <PathWithFileName>..\Drivers\n32g45x_algo_lib\lib\n32g45x_des.lib</PathWithFileName>
  684. <FilenameWithoutPath>n32g45x_des.lib</FilenameWithoutPath>
  685. <RteFlg>0</RteFlg>
  686. <bShared>0</bShared>
  687. </File>
  688. <File>
  689. <GroupNumber>7</GroupNumber>
  690. <FileNumber>24</FileNumber>
  691. <FileType>4</FileType>
  692. <tvExp>0</tvExp>
  693. <tvExpOptDlg>0</tvExpOptDlg>
  694. <bDave2>0</bDave2>
  695. <PathWithFileName>..\Drivers\n32g45x_algo_lib\lib\n32g45x_hash.lib</PathWithFileName>
  696. <FilenameWithoutPath>n32g45x_hash.lib</FilenameWithoutPath>
  697. <RteFlg>0</RteFlg>
  698. <bShared>0</bShared>
  699. </File>
  700. <File>
  701. <GroupNumber>7</GroupNumber>
  702. <FileNumber>25</FileNumber>
  703. <FileType>4</FileType>
  704. <tvExp>0</tvExp>
  705. <tvExpOptDlg>0</tvExpOptDlg>
  706. <bDave2>0</bDave2>
  707. <PathWithFileName>..\Drivers\n32g45x_algo_lib\lib\n32g45x_rng.lib</PathWithFileName>
  708. <FilenameWithoutPath>n32g45x_rng.lib</FilenameWithoutPath>
  709. <RteFlg>0</RteFlg>
  710. <bShared>0</bShared>
  711. </File>
  712. </Group>
  713. <Group>
  714. <GroupName>Drivers/n32g45x_std_periph_driver</GroupName>
  715. <tvExp>0</tvExp>
  716. <tvExpOptDlg>0</tvExpOptDlg>
  717. <cbSel>0</cbSel>
  718. <RteFlg>0</RteFlg>
  719. <File>
  720. <GroupNumber>8</GroupNumber>
  721. <FileNumber>26</FileNumber>
  722. <FileType>1</FileType>
  723. <tvExp>0</tvExp>
  724. <tvExpOptDlg>0</tvExpOptDlg>
  725. <bDave2>0</bDave2>
  726. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\misc.c</PathWithFileName>
  727. <FilenameWithoutPath>misc.c</FilenameWithoutPath>
  728. <RteFlg>0</RteFlg>
  729. <bShared>0</bShared>
  730. </File>
  731. <File>
  732. <GroupNumber>8</GroupNumber>
  733. <FileNumber>27</FileNumber>
  734. <FileType>1</FileType>
  735. <tvExp>0</tvExp>
  736. <tvExpOptDlg>0</tvExpOptDlg>
  737. <bDave2>0</bDave2>
  738. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_adc.c</PathWithFileName>
  739. <FilenameWithoutPath>n32g45x_adc.c</FilenameWithoutPath>
  740. <RteFlg>0</RteFlg>
  741. <bShared>0</bShared>
  742. </File>
  743. <File>
  744. <GroupNumber>8</GroupNumber>
  745. <FileNumber>28</FileNumber>
  746. <FileType>1</FileType>
  747. <tvExp>0</tvExp>
  748. <tvExpOptDlg>0</tvExpOptDlg>
  749. <bDave2>0</bDave2>
  750. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_bkp.c</PathWithFileName>
  751. <FilenameWithoutPath>n32g45x_bkp.c</FilenameWithoutPath>
  752. <RteFlg>0</RteFlg>
  753. <bShared>0</bShared>
  754. </File>
  755. <File>
  756. <GroupNumber>8</GroupNumber>
  757. <FileNumber>29</FileNumber>
  758. <FileType>1</FileType>
  759. <tvExp>0</tvExp>
  760. <tvExpOptDlg>0</tvExpOptDlg>
  761. <bDave2>0</bDave2>
  762. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_can.c</PathWithFileName>
  763. <FilenameWithoutPath>n32g45x_can.c</FilenameWithoutPath>
  764. <RteFlg>0</RteFlg>
  765. <bShared>0</bShared>
  766. </File>
  767. <File>
  768. <GroupNumber>8</GroupNumber>
  769. <FileNumber>30</FileNumber>
  770. <FileType>1</FileType>
  771. <tvExp>0</tvExp>
  772. <tvExpOptDlg>0</tvExpOptDlg>
  773. <bDave2>0</bDave2>
  774. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_comp.c</PathWithFileName>
  775. <FilenameWithoutPath>n32g45x_comp.c</FilenameWithoutPath>
  776. <RteFlg>0</RteFlg>
  777. <bShared>0</bShared>
  778. </File>
  779. <File>
  780. <GroupNumber>8</GroupNumber>
  781. <FileNumber>31</FileNumber>
  782. <FileType>1</FileType>
  783. <tvExp>0</tvExp>
  784. <tvExpOptDlg>0</tvExpOptDlg>
  785. <bDave2>0</bDave2>
  786. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_crc.c</PathWithFileName>
  787. <FilenameWithoutPath>n32g45x_crc.c</FilenameWithoutPath>
  788. <RteFlg>0</RteFlg>
  789. <bShared>0</bShared>
  790. </File>
  791. <File>
  792. <GroupNumber>8</GroupNumber>
  793. <FileNumber>32</FileNumber>
  794. <FileType>1</FileType>
  795. <tvExp>0</tvExp>
  796. <tvExpOptDlg>0</tvExpOptDlg>
  797. <bDave2>0</bDave2>
  798. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_dac.c</PathWithFileName>
  799. <FilenameWithoutPath>n32g45x_dac.c</FilenameWithoutPath>
  800. <RteFlg>0</RteFlg>
  801. <bShared>0</bShared>
  802. </File>
  803. <File>
  804. <GroupNumber>8</GroupNumber>
  805. <FileNumber>33</FileNumber>
  806. <FileType>1</FileType>
  807. <tvExp>0</tvExp>
  808. <tvExpOptDlg>0</tvExpOptDlg>
  809. <bDave2>0</bDave2>
  810. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_dbg.c</PathWithFileName>
  811. <FilenameWithoutPath>n32g45x_dbg.c</FilenameWithoutPath>
  812. <RteFlg>0</RteFlg>
  813. <bShared>0</bShared>
  814. </File>
  815. <File>
  816. <GroupNumber>8</GroupNumber>
  817. <FileNumber>34</FileNumber>
  818. <FileType>1</FileType>
  819. <tvExp>0</tvExp>
  820. <tvExpOptDlg>0</tvExpOptDlg>
  821. <bDave2>0</bDave2>
  822. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_dma.c</PathWithFileName>
  823. <FilenameWithoutPath>n32g45x_dma.c</FilenameWithoutPath>
  824. <RteFlg>0</RteFlg>
  825. <bShared>0</bShared>
  826. </File>
  827. <File>
  828. <GroupNumber>8</GroupNumber>
  829. <FileNumber>35</FileNumber>
  830. <FileType>1</FileType>
  831. <tvExp>0</tvExp>
  832. <tvExpOptDlg>0</tvExpOptDlg>
  833. <bDave2>0</bDave2>
  834. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_dvp.c</PathWithFileName>
  835. <FilenameWithoutPath>n32g45x_dvp.c</FilenameWithoutPath>
  836. <RteFlg>0</RteFlg>
  837. <bShared>0</bShared>
  838. </File>
  839. <File>
  840. <GroupNumber>8</GroupNumber>
  841. <FileNumber>36</FileNumber>
  842. <FileType>1</FileType>
  843. <tvExp>0</tvExp>
  844. <tvExpOptDlg>0</tvExpOptDlg>
  845. <bDave2>0</bDave2>
  846. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_eth.c</PathWithFileName>
  847. <FilenameWithoutPath>n32g45x_eth.c</FilenameWithoutPath>
  848. <RteFlg>0</RteFlg>
  849. <bShared>0</bShared>
  850. </File>
  851. <File>
  852. <GroupNumber>8</GroupNumber>
  853. <FileNumber>37</FileNumber>
  854. <FileType>1</FileType>
  855. <tvExp>0</tvExp>
  856. <tvExpOptDlg>0</tvExpOptDlg>
  857. <bDave2>0</bDave2>
  858. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_exti.c</PathWithFileName>
  859. <FilenameWithoutPath>n32g45x_exti.c</FilenameWithoutPath>
  860. <RteFlg>0</RteFlg>
  861. <bShared>0</bShared>
  862. </File>
  863. <File>
  864. <GroupNumber>8</GroupNumber>
  865. <FileNumber>38</FileNumber>
  866. <FileType>1</FileType>
  867. <tvExp>0</tvExp>
  868. <tvExpOptDlg>0</tvExpOptDlg>
  869. <bDave2>0</bDave2>
  870. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_flash.c</PathWithFileName>
  871. <FilenameWithoutPath>n32g45x_flash.c</FilenameWithoutPath>
  872. <RteFlg>0</RteFlg>
  873. <bShared>0</bShared>
  874. </File>
  875. <File>
  876. <GroupNumber>8</GroupNumber>
  877. <FileNumber>39</FileNumber>
  878. <FileType>1</FileType>
  879. <tvExp>0</tvExp>
  880. <tvExpOptDlg>0</tvExpOptDlg>
  881. <bDave2>0</bDave2>
  882. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_gpio.c</PathWithFileName>
  883. <FilenameWithoutPath>n32g45x_gpio.c</FilenameWithoutPath>
  884. <RteFlg>0</RteFlg>
  885. <bShared>0</bShared>
  886. </File>
  887. <File>
  888. <GroupNumber>8</GroupNumber>
  889. <FileNumber>40</FileNumber>
  890. <FileType>1</FileType>
  891. <tvExp>0</tvExp>
  892. <tvExpOptDlg>0</tvExpOptDlg>
  893. <bDave2>0</bDave2>
  894. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_i2c.c</PathWithFileName>
  895. <FilenameWithoutPath>n32g45x_i2c.c</FilenameWithoutPath>
  896. <RteFlg>0</RteFlg>
  897. <bShared>0</bShared>
  898. </File>
  899. <File>
  900. <GroupNumber>8</GroupNumber>
  901. <FileNumber>41</FileNumber>
  902. <FileType>1</FileType>
  903. <tvExp>0</tvExp>
  904. <tvExpOptDlg>0</tvExpOptDlg>
  905. <bDave2>0</bDave2>
  906. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_iwdg.c</PathWithFileName>
  907. <FilenameWithoutPath>n32g45x_iwdg.c</FilenameWithoutPath>
  908. <RteFlg>0</RteFlg>
  909. <bShared>0</bShared>
  910. </File>
  911. <File>
  912. <GroupNumber>8</GroupNumber>
  913. <FileNumber>42</FileNumber>
  914. <FileType>1</FileType>
  915. <tvExp>0</tvExp>
  916. <tvExpOptDlg>0</tvExpOptDlg>
  917. <bDave2>0</bDave2>
  918. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_opamp.c</PathWithFileName>
  919. <FilenameWithoutPath>n32g45x_opamp.c</FilenameWithoutPath>
  920. <RteFlg>0</RteFlg>
  921. <bShared>0</bShared>
  922. </File>
  923. <File>
  924. <GroupNumber>8</GroupNumber>
  925. <FileNumber>43</FileNumber>
  926. <FileType>1</FileType>
  927. <tvExp>0</tvExp>
  928. <tvExpOptDlg>0</tvExpOptDlg>
  929. <bDave2>0</bDave2>
  930. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_pwr.c</PathWithFileName>
  931. <FilenameWithoutPath>n32g45x_pwr.c</FilenameWithoutPath>
  932. <RteFlg>0</RteFlg>
  933. <bShared>0</bShared>
  934. </File>
  935. <File>
  936. <GroupNumber>8</GroupNumber>
  937. <FileNumber>44</FileNumber>
  938. <FileType>1</FileType>
  939. <tvExp>0</tvExp>
  940. <tvExpOptDlg>0</tvExpOptDlg>
  941. <bDave2>0</bDave2>
  942. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_qspi.c</PathWithFileName>
  943. <FilenameWithoutPath>n32g45x_qspi.c</FilenameWithoutPath>
  944. <RteFlg>0</RteFlg>
  945. <bShared>0</bShared>
  946. </File>
  947. <File>
  948. <GroupNumber>8</GroupNumber>
  949. <FileNumber>45</FileNumber>
  950. <FileType>1</FileType>
  951. <tvExp>0</tvExp>
  952. <tvExpOptDlg>0</tvExpOptDlg>
  953. <bDave2>0</bDave2>
  954. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_rcc.c</PathWithFileName>
  955. <FilenameWithoutPath>n32g45x_rcc.c</FilenameWithoutPath>
  956. <RteFlg>0</RteFlg>
  957. <bShared>0</bShared>
  958. </File>
  959. <File>
  960. <GroupNumber>8</GroupNumber>
  961. <FileNumber>46</FileNumber>
  962. <FileType>1</FileType>
  963. <tvExp>0</tvExp>
  964. <tvExpOptDlg>0</tvExpOptDlg>
  965. <bDave2>0</bDave2>
  966. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_rtc.c</PathWithFileName>
  967. <FilenameWithoutPath>n32g45x_rtc.c</FilenameWithoutPath>
  968. <RteFlg>0</RteFlg>
  969. <bShared>0</bShared>
  970. </File>
  971. <File>
  972. <GroupNumber>8</GroupNumber>
  973. <FileNumber>47</FileNumber>
  974. <FileType>1</FileType>
  975. <tvExp>0</tvExp>
  976. <tvExpOptDlg>0</tvExpOptDlg>
  977. <bDave2>0</bDave2>
  978. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_sdio.c</PathWithFileName>
  979. <FilenameWithoutPath>n32g45x_sdio.c</FilenameWithoutPath>
  980. <RteFlg>0</RteFlg>
  981. <bShared>0</bShared>
  982. </File>
  983. <File>
  984. <GroupNumber>8</GroupNumber>
  985. <FileNumber>48</FileNumber>
  986. <FileType>1</FileType>
  987. <tvExp>0</tvExp>
  988. <tvExpOptDlg>0</tvExpOptDlg>
  989. <bDave2>0</bDave2>
  990. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_spi.c</PathWithFileName>
  991. <FilenameWithoutPath>n32g45x_spi.c</FilenameWithoutPath>
  992. <RteFlg>0</RteFlg>
  993. <bShared>0</bShared>
  994. </File>
  995. <File>
  996. <GroupNumber>8</GroupNumber>
  997. <FileNumber>49</FileNumber>
  998. <FileType>1</FileType>
  999. <tvExp>0</tvExp>
  1000. <tvExpOptDlg>0</tvExpOptDlg>
  1001. <bDave2>0</bDave2>
  1002. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_tim.c</PathWithFileName>
  1003. <FilenameWithoutPath>n32g45x_tim.c</FilenameWithoutPath>
  1004. <RteFlg>0</RteFlg>
  1005. <bShared>0</bShared>
  1006. </File>
  1007. <File>
  1008. <GroupNumber>8</GroupNumber>
  1009. <FileNumber>50</FileNumber>
  1010. <FileType>1</FileType>
  1011. <tvExp>0</tvExp>
  1012. <tvExpOptDlg>0</tvExpOptDlg>
  1013. <bDave2>0</bDave2>
  1014. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_tsc.c</PathWithFileName>
  1015. <FilenameWithoutPath>n32g45x_tsc.c</FilenameWithoutPath>
  1016. <RteFlg>0</RteFlg>
  1017. <bShared>0</bShared>
  1018. </File>
  1019. <File>
  1020. <GroupNumber>8</GroupNumber>
  1021. <FileNumber>51</FileNumber>
  1022. <FileType>1</FileType>
  1023. <tvExp>0</tvExp>
  1024. <tvExpOptDlg>0</tvExpOptDlg>
  1025. <bDave2>0</bDave2>
  1026. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_usart.c</PathWithFileName>
  1027. <FilenameWithoutPath>n32g45x_usart.c</FilenameWithoutPath>
  1028. <RteFlg>0</RteFlg>
  1029. <bShared>0</bShared>
  1030. </File>
  1031. <File>
  1032. <GroupNumber>8</GroupNumber>
  1033. <FileNumber>52</FileNumber>
  1034. <FileType>1</FileType>
  1035. <tvExp>0</tvExp>
  1036. <tvExpOptDlg>0</tvExpOptDlg>
  1037. <bDave2>0</bDave2>
  1038. <PathWithFileName>..\Drivers\n32g45x_std_periph_driver\src\n32g45x_wwdg.c</PathWithFileName>
  1039. <FilenameWithoutPath>n32g45x_wwdg.c</FilenameWithoutPath>
  1040. <RteFlg>0</RteFlg>
  1041. <bShared>0</bShared>
  1042. </File>
  1043. </Group>
  1044. <Group>
  1045. <GroupName>Middlewares/rt_thread</GroupName>
  1046. <tvExp>0</tvExp>
  1047. <tvExpOptDlg>0</tvExpOptDlg>
  1048. <cbSel>0</cbSel>
  1049. <RteFlg>0</RteFlg>
  1050. <File>
  1051. <GroupNumber>9</GroupNumber>
  1052. <FileNumber>53</FileNumber>
  1053. <FileType>1</FileType>
  1054. <tvExp>0</tvExp>
  1055. <tvExpOptDlg>0</tvExpOptDlg>
  1056. <bDave2>0</bDave2>
  1057. <PathWithFileName>..\Middlewares\rt-thread\src\clock.c</PathWithFileName>
  1058. <FilenameWithoutPath>clock.c</FilenameWithoutPath>
  1059. <RteFlg>0</RteFlg>
  1060. <bShared>0</bShared>
  1061. </File>
  1062. <File>
  1063. <GroupNumber>9</GroupNumber>
  1064. <FileNumber>54</FileNumber>
  1065. <FileType>1</FileType>
  1066. <tvExp>0</tvExp>
  1067. <tvExpOptDlg>0</tvExpOptDlg>
  1068. <bDave2>0</bDave2>
  1069. <PathWithFileName>..\Middlewares\rt-thread\src\components.c</PathWithFileName>
  1070. <FilenameWithoutPath>components.c</FilenameWithoutPath>
  1071. <RteFlg>0</RteFlg>
  1072. <bShared>0</bShared>
  1073. </File>
  1074. <File>
  1075. <GroupNumber>9</GroupNumber>
  1076. <FileNumber>55</FileNumber>
  1077. <FileType>1</FileType>
  1078. <tvExp>0</tvExp>
  1079. <tvExpOptDlg>0</tvExpOptDlg>
  1080. <bDave2>0</bDave2>
  1081. <PathWithFileName>..\Middlewares\rt-thread\src\cpu.c</PathWithFileName>
  1082. <FilenameWithoutPath>cpu.c</FilenameWithoutPath>
  1083. <RteFlg>0</RteFlg>
  1084. <bShared>0</bShared>
  1085. </File>
  1086. <File>
  1087. <GroupNumber>9</GroupNumber>
  1088. <FileNumber>56</FileNumber>
  1089. <FileType>1</FileType>
  1090. <tvExp>0</tvExp>
  1091. <tvExpOptDlg>0</tvExpOptDlg>
  1092. <bDave2>0</bDave2>
  1093. <PathWithFileName>..\Middlewares\rt-thread\src\device.c</PathWithFileName>
  1094. <FilenameWithoutPath>device.c</FilenameWithoutPath>
  1095. <RteFlg>0</RteFlg>
  1096. <bShared>0</bShared>
  1097. </File>
  1098. <File>
  1099. <GroupNumber>9</GroupNumber>
  1100. <FileNumber>57</FileNumber>
  1101. <FileType>1</FileType>
  1102. <tvExp>0</tvExp>
  1103. <tvExpOptDlg>0</tvExpOptDlg>
  1104. <bDave2>0</bDave2>
  1105. <PathWithFileName>..\Middlewares\rt-thread\src\idle.c</PathWithFileName>
  1106. <FilenameWithoutPath>idle.c</FilenameWithoutPath>
  1107. <RteFlg>0</RteFlg>
  1108. <bShared>0</bShared>
  1109. </File>
  1110. <File>
  1111. <GroupNumber>9</GroupNumber>
  1112. <FileNumber>58</FileNumber>
  1113. <FileType>1</FileType>
  1114. <tvExp>0</tvExp>
  1115. <tvExpOptDlg>0</tvExpOptDlg>
  1116. <bDave2>0</bDave2>
  1117. <PathWithFileName>..\Middlewares\rt-thread\src\ipc.c</PathWithFileName>
  1118. <FilenameWithoutPath>ipc.c</FilenameWithoutPath>
  1119. <RteFlg>0</RteFlg>
  1120. <bShared>0</bShared>
  1121. </File>
  1122. <File>
  1123. <GroupNumber>9</GroupNumber>
  1124. <FileNumber>59</FileNumber>
  1125. <FileType>1</FileType>
  1126. <tvExp>0</tvExp>
  1127. <tvExpOptDlg>0</tvExpOptDlg>
  1128. <bDave2>0</bDave2>
  1129. <PathWithFileName>..\Middlewares\rt-thread\src\irq.c</PathWithFileName>
  1130. <FilenameWithoutPath>irq.c</FilenameWithoutPath>
  1131. <RteFlg>0</RteFlg>
  1132. <bShared>0</bShared>
  1133. </File>
  1134. <File>
  1135. <GroupNumber>9</GroupNumber>
  1136. <FileNumber>60</FileNumber>
  1137. <FileType>1</FileType>
  1138. <tvExp>0</tvExp>
  1139. <tvExpOptDlg>0</tvExpOptDlg>
  1140. <bDave2>0</bDave2>
  1141. <PathWithFileName>..\Middlewares\rt-thread\src\kservice.c</PathWithFileName>
  1142. <FilenameWithoutPath>kservice.c</FilenameWithoutPath>
  1143. <RteFlg>0</RteFlg>
  1144. <bShared>0</bShared>
  1145. </File>
  1146. <File>
  1147. <GroupNumber>9</GroupNumber>
  1148. <FileNumber>61</FileNumber>
  1149. <FileType>1</FileType>
  1150. <tvExp>0</tvExp>
  1151. <tvExpOptDlg>0</tvExpOptDlg>
  1152. <bDave2>0</bDave2>
  1153. <PathWithFileName>..\Middlewares\rt-thread\src\mem.c</PathWithFileName>
  1154. <FilenameWithoutPath>mem.c</FilenameWithoutPath>
  1155. <RteFlg>0</RteFlg>
  1156. <bShared>0</bShared>
  1157. </File>
  1158. <File>
  1159. <GroupNumber>9</GroupNumber>
  1160. <FileNumber>62</FileNumber>
  1161. <FileType>1</FileType>
  1162. <tvExp>0</tvExp>
  1163. <tvExpOptDlg>0</tvExpOptDlg>
  1164. <bDave2>0</bDave2>
  1165. <PathWithFileName>..\Middlewares\rt-thread\src\memheap.c</PathWithFileName>
  1166. <FilenameWithoutPath>memheap.c</FilenameWithoutPath>
  1167. <RteFlg>0</RteFlg>
  1168. <bShared>0</bShared>
  1169. </File>
  1170. <File>
  1171. <GroupNumber>9</GroupNumber>
  1172. <FileNumber>63</FileNumber>
  1173. <FileType>1</FileType>
  1174. <tvExp>0</tvExp>
  1175. <tvExpOptDlg>0</tvExpOptDlg>
  1176. <bDave2>0</bDave2>
  1177. <PathWithFileName>..\Middlewares\rt-thread\src\mempool.c</PathWithFileName>
  1178. <FilenameWithoutPath>mempool.c</FilenameWithoutPath>
  1179. <RteFlg>0</RteFlg>
  1180. <bShared>0</bShared>
  1181. </File>
  1182. <File>
  1183. <GroupNumber>9</GroupNumber>
  1184. <FileNumber>64</FileNumber>
  1185. <FileType>1</FileType>
  1186. <tvExp>0</tvExp>
  1187. <tvExpOptDlg>0</tvExpOptDlg>
  1188. <bDave2>0</bDave2>
  1189. <PathWithFileName>..\Middlewares\rt-thread\src\object.c</PathWithFileName>
  1190. <FilenameWithoutPath>object.c</FilenameWithoutPath>
  1191. <RteFlg>0</RteFlg>
  1192. <bShared>0</bShared>
  1193. </File>
  1194. <File>
  1195. <GroupNumber>9</GroupNumber>
  1196. <FileNumber>65</FileNumber>
  1197. <FileType>1</FileType>
  1198. <tvExp>0</tvExp>
  1199. <tvExpOptDlg>0</tvExpOptDlg>
  1200. <bDave2>0</bDave2>
  1201. <PathWithFileName>..\Middlewares\rt-thread\src\scheduler.c</PathWithFileName>
  1202. <FilenameWithoutPath>scheduler.c</FilenameWithoutPath>
  1203. <RteFlg>0</RteFlg>
  1204. <bShared>0</bShared>
  1205. </File>
  1206. <File>
  1207. <GroupNumber>9</GroupNumber>
  1208. <FileNumber>66</FileNumber>
  1209. <FileType>1</FileType>
  1210. <tvExp>0</tvExp>
  1211. <tvExpOptDlg>0</tvExpOptDlg>
  1212. <bDave2>0</bDave2>
  1213. <PathWithFileName>..\Middlewares\rt-thread\src\signal.c</PathWithFileName>
  1214. <FilenameWithoutPath>signal.c</FilenameWithoutPath>
  1215. <RteFlg>0</RteFlg>
  1216. <bShared>0</bShared>
  1217. </File>
  1218. <File>
  1219. <GroupNumber>9</GroupNumber>
  1220. <FileNumber>67</FileNumber>
  1221. <FileType>1</FileType>
  1222. <tvExp>0</tvExp>
  1223. <tvExpOptDlg>0</tvExpOptDlg>
  1224. <bDave2>0</bDave2>
  1225. <PathWithFileName>..\Middlewares\rt-thread\src\slab.c</PathWithFileName>
  1226. <FilenameWithoutPath>slab.c</FilenameWithoutPath>
  1227. <RteFlg>0</RteFlg>
  1228. <bShared>0</bShared>
  1229. </File>
  1230. <File>
  1231. <GroupNumber>9</GroupNumber>
  1232. <FileNumber>68</FileNumber>
  1233. <FileType>1</FileType>
  1234. <tvExp>0</tvExp>
  1235. <tvExpOptDlg>0</tvExpOptDlg>
  1236. <bDave2>0</bDave2>
  1237. <PathWithFileName>..\Middlewares\rt-thread\src\thread.c</PathWithFileName>
  1238. <FilenameWithoutPath>thread.c</FilenameWithoutPath>
  1239. <RteFlg>0</RteFlg>
  1240. <bShared>0</bShared>
  1241. </File>
  1242. <File>
  1243. <GroupNumber>9</GroupNumber>
  1244. <FileNumber>69</FileNumber>
  1245. <FileType>1</FileType>
  1246. <tvExp>0</tvExp>
  1247. <tvExpOptDlg>0</tvExpOptDlg>
  1248. <bDave2>0</bDave2>
  1249. <PathWithFileName>..\Middlewares\rt-thread\src\timer.c</PathWithFileName>
  1250. <FilenameWithoutPath>timer.c</FilenameWithoutPath>
  1251. <RteFlg>0</RteFlg>
  1252. <bShared>0</bShared>
  1253. </File>
  1254. <File>
  1255. <GroupNumber>9</GroupNumber>
  1256. <FileNumber>70</FileNumber>
  1257. <FileType>1</FileType>
  1258. <tvExp>0</tvExp>
  1259. <tvExpOptDlg>0</tvExpOptDlg>
  1260. <bDave2>0</bDave2>
  1261. <PathWithFileName>..\Middlewares\rt-thread\libcpu\common\backtrace.c</PathWithFileName>
  1262. <FilenameWithoutPath>backtrace.c</FilenameWithoutPath>
  1263. <RteFlg>0</RteFlg>
  1264. <bShared>0</bShared>
  1265. </File>
  1266. <File>
  1267. <GroupNumber>9</GroupNumber>
  1268. <FileNumber>71</FileNumber>
  1269. <FileType>1</FileType>
  1270. <tvExp>0</tvExp>
  1271. <tvExpOptDlg>0</tvExpOptDlg>
  1272. <bDave2>0</bDave2>
  1273. <PathWithFileName>..\Middlewares\rt-thread\libcpu\common\div0.c</PathWithFileName>
  1274. <FilenameWithoutPath>div0.c</FilenameWithoutPath>
  1275. <RteFlg>0</RteFlg>
  1276. <bShared>0</bShared>
  1277. </File>
  1278. <File>
  1279. <GroupNumber>9</GroupNumber>
  1280. <FileNumber>72</FileNumber>
  1281. <FileType>1</FileType>
  1282. <tvExp>0</tvExp>
  1283. <tvExpOptDlg>0</tvExpOptDlg>
  1284. <bDave2>0</bDave2>
  1285. <PathWithFileName>..\Middlewares\rt-thread\libcpu\common\showmem.c</PathWithFileName>
  1286. <FilenameWithoutPath>showmem.c</FilenameWithoutPath>
  1287. <RteFlg>0</RteFlg>
  1288. <bShared>0</bShared>
  1289. </File>
  1290. </Group>
  1291. <Group>
  1292. <GroupName>Drivers/DeviceDrivers</GroupName>
  1293. <tvExp>0</tvExp>
  1294. <tvExpOptDlg>0</tvExpOptDlg>
  1295. <cbSel>0</cbSel>
  1296. <RteFlg>0</RteFlg>
  1297. <File>
  1298. <GroupNumber>10</GroupNumber>
  1299. <FileNumber>73</FileNumber>
  1300. <FileType>1</FileType>
  1301. <tvExp>0</tvExp>
  1302. <tvExpOptDlg>0</tvExpOptDlg>
  1303. <bDave2>0</bDave2>
  1304. <PathWithFileName>..\Drivers\DeviceDrivers\tim\src\drv_hwtimer.c</PathWithFileName>
  1305. <FilenameWithoutPath>drv_hwtimer.c</FilenameWithoutPath>
  1306. <RteFlg>0</RteFlg>
  1307. <bShared>0</bShared>
  1308. </File>
  1309. <File>
  1310. <GroupNumber>10</GroupNumber>
  1311. <FileNumber>74</FileNumber>
  1312. <FileType>1</FileType>
  1313. <tvExp>0</tvExp>
  1314. <tvExpOptDlg>0</tvExpOptDlg>
  1315. <bDave2>0</bDave2>
  1316. <PathWithFileName>..\Drivers\DeviceDrivers\tim\src\hwtimer.c</PathWithFileName>
  1317. <FilenameWithoutPath>hwtimer.c</FilenameWithoutPath>
  1318. <RteFlg>0</RteFlg>
  1319. <bShared>0</bShared>
  1320. </File>
  1321. </Group>
  1322. <Group>
  1323. <GroupName>math</GroupName>
  1324. <tvExp>0</tvExp>
  1325. <tvExpOptDlg>0</tvExpOptDlg>
  1326. <cbSel>0</cbSel>
  1327. <RteFlg>0</RteFlg>
  1328. <File>
  1329. <GroupNumber>11</GroupNumber>
  1330. <FileNumber>75</FileNumber>
  1331. <FileType>1</FileType>
  1332. <tvExp>0</tvExp>
  1333. <tvExpOptDlg>0</tvExpOptDlg>
  1334. <bDave2>0</bDave2>
  1335. <PathWithFileName>..\math\axis_angle.c</PathWithFileName>
  1336. <FilenameWithoutPath>axis_angle.c</FilenameWithoutPath>
  1337. <RteFlg>0</RteFlg>
  1338. <bShared>0</bShared>
  1339. </File>
  1340. <File>
  1341. <GroupNumber>11</GroupNumber>
  1342. <FileNumber>76</FileNumber>
  1343. <FileType>1</FileType>
  1344. <tvExp>0</tvExp>
  1345. <tvExpOptDlg>0</tvExpOptDlg>
  1346. <bDave2>0</bDave2>
  1347. <PathWithFileName>..\math\euler.c</PathWithFileName>
  1348. <FilenameWithoutPath>euler.c</FilenameWithoutPath>
  1349. <RteFlg>0</RteFlg>
  1350. <bShared>0</bShared>
  1351. </File>
  1352. <File>
  1353. <GroupNumber>11</GroupNumber>
  1354. <FileNumber>77</FileNumber>
  1355. <FileType>1</FileType>
  1356. <tvExp>0</tvExp>
  1357. <tvExpOptDlg>0</tvExpOptDlg>
  1358. <bDave2>0</bDave2>
  1359. <PathWithFileName>..\math\light_matrix.c</PathWithFileName>
  1360. <FilenameWithoutPath>light_matrix.c</FilenameWithoutPath>
  1361. <RteFlg>0</RteFlg>
  1362. <bShared>0</bShared>
  1363. </File>
  1364. <File>
  1365. <GroupNumber>11</GroupNumber>
  1366. <FileNumber>78</FileNumber>
  1367. <FileType>1</FileType>
  1368. <tvExp>0</tvExp>
  1369. <tvExpOptDlg>0</tvExpOptDlg>
  1370. <bDave2>0</bDave2>
  1371. <PathWithFileName>..\math\matrix.c</PathWithFileName>
  1372. <FilenameWithoutPath>matrix.c</FilenameWithoutPath>
  1373. <RteFlg>0</RteFlg>
  1374. <bShared>0</bShared>
  1375. </File>
  1376. <File>
  1377. <GroupNumber>11</GroupNumber>
  1378. <FileNumber>79</FileNumber>
  1379. <FileType>1</FileType>
  1380. <tvExp>0</tvExp>
  1381. <tvExpOptDlg>0</tvExpOptDlg>
  1382. <bDave2>0</bDave2>
  1383. <PathWithFileName>..\math\quaternion.c</PathWithFileName>
  1384. <FilenameWithoutPath>quaternion.c</FilenameWithoutPath>
  1385. <RteFlg>0</RteFlg>
  1386. <bShared>0</bShared>
  1387. </File>
  1388. <File>
  1389. <GroupNumber>11</GroupNumber>
  1390. <FileNumber>80</FileNumber>
  1391. <FileType>1</FileType>
  1392. <tvExp>0</tvExp>
  1393. <tvExpOptDlg>0</tvExpOptDlg>
  1394. <bDave2>0</bDave2>
  1395. <PathWithFileName>..\math\rotation.c</PathWithFileName>
  1396. <FilenameWithoutPath>rotation.c</FilenameWithoutPath>
  1397. <RteFlg>0</RteFlg>
  1398. <bShared>0</bShared>
  1399. </File>
  1400. <File>
  1401. <GroupNumber>11</GroupNumber>
  1402. <FileNumber>81</FileNumber>
  1403. <FileType>1</FileType>
  1404. <tvExp>0</tvExp>
  1405. <tvExpOptDlg>0</tvExpOptDlg>
  1406. <bDave2>0</bDave2>
  1407. <PathWithFileName>..\math\welford_mean.c</PathWithFileName>
  1408. <FilenameWithoutPath>welford_mean.c</FilenameWithoutPath>
  1409. <RteFlg>0</RteFlg>
  1410. <bShared>0</bShared>
  1411. </File>
  1412. </Group>
  1413. <Group>
  1414. <GroupName>dronecan</GroupName>
  1415. <tvExp>1</tvExp>
  1416. <tvExpOptDlg>0</tvExpOptDlg>
  1417. <cbSel>0</cbSel>
  1418. <RteFlg>0</RteFlg>
  1419. <File>
  1420. <GroupNumber>12</GroupNumber>
  1421. <FileNumber>82</FileNumber>
  1422. <FileType>1</FileType>
  1423. <tvExp>0</tvExp>
  1424. <tvExpOptDlg>0</tvExpOptDlg>
  1425. <bDave2>0</bDave2>
  1426. <PathWithFileName>..\dsdlc_generated\src\uavcan.CoarseOrientation.c</PathWithFileName>
  1427. <FilenameWithoutPath>uavcan.CoarseOrientation.c</FilenameWithoutPath>
  1428. <RteFlg>0</RteFlg>
  1429. <bShared>0</bShared>
  1430. </File>
  1431. <File>
  1432. <GroupNumber>12</GroupNumber>
  1433. <FileNumber>83</FileNumber>
  1434. <FileType>1</FileType>
  1435. <tvExp>0</tvExp>
  1436. <tvExpOptDlg>0</tvExpOptDlg>
  1437. <bDave2>0</bDave2>
  1438. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.actuator.ArrayCommand.c</PathWithFileName>
  1439. <FilenameWithoutPath>uavcan.equipment.actuator.ArrayCommand.c</FilenameWithoutPath>
  1440. <RteFlg>0</RteFlg>
  1441. <bShared>0</bShared>
  1442. </File>
  1443. <File>
  1444. <GroupNumber>12</GroupNumber>
  1445. <FileNumber>84</FileNumber>
  1446. <FileType>1</FileType>
  1447. <tvExp>0</tvExp>
  1448. <tvExpOptDlg>0</tvExpOptDlg>
  1449. <bDave2>0</bDave2>
  1450. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.actuator.Command.c</PathWithFileName>
  1451. <FilenameWithoutPath>uavcan.equipment.actuator.Command.c</FilenameWithoutPath>
  1452. <RteFlg>0</RteFlg>
  1453. <bShared>0</bShared>
  1454. </File>
  1455. <File>
  1456. <GroupNumber>12</GroupNumber>
  1457. <FileNumber>85</FileNumber>
  1458. <FileType>1</FileType>
  1459. <tvExp>0</tvExp>
  1460. <tvExpOptDlg>0</tvExpOptDlg>
  1461. <bDave2>0</bDave2>
  1462. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.actuator.Status.c</PathWithFileName>
  1463. <FilenameWithoutPath>uavcan.equipment.actuator.Status.c</FilenameWithoutPath>
  1464. <RteFlg>0</RteFlg>
  1465. <bShared>0</bShared>
  1466. </File>
  1467. <File>
  1468. <GroupNumber>12</GroupNumber>
  1469. <FileNumber>86</FileNumber>
  1470. <FileType>1</FileType>
  1471. <tvExp>0</tvExp>
  1472. <tvExpOptDlg>0</tvExpOptDlg>
  1473. <bDave2>0</bDave2>
  1474. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ahrs.MagneticFieldStrength.c</PathWithFileName>
  1475. <FilenameWithoutPath>uavcan.equipment.ahrs.MagneticFieldStrength.c</FilenameWithoutPath>
  1476. <RteFlg>0</RteFlg>
  1477. <bShared>0</bShared>
  1478. </File>
  1479. <File>
  1480. <GroupNumber>12</GroupNumber>
  1481. <FileNumber>87</FileNumber>
  1482. <FileType>1</FileType>
  1483. <tvExp>0</tvExp>
  1484. <tvExpOptDlg>0</tvExpOptDlg>
  1485. <bDave2>0</bDave2>
  1486. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ahrs.MagneticFieldStrength2.c</PathWithFileName>
  1487. <FilenameWithoutPath>uavcan.equipment.ahrs.MagneticFieldStrength2.c</FilenameWithoutPath>
  1488. <RteFlg>0</RteFlg>
  1489. <bShared>0</bShared>
  1490. </File>
  1491. <File>
  1492. <GroupNumber>12</GroupNumber>
  1493. <FileNumber>88</FileNumber>
  1494. <FileType>1</FileType>
  1495. <tvExp>0</tvExp>
  1496. <tvExpOptDlg>0</tvExpOptDlg>
  1497. <bDave2>0</bDave2>
  1498. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ahrs.RawIMU.c</PathWithFileName>
  1499. <FilenameWithoutPath>uavcan.equipment.ahrs.RawIMU.c</FilenameWithoutPath>
  1500. <RteFlg>0</RteFlg>
  1501. <bShared>0</bShared>
  1502. </File>
  1503. <File>
  1504. <GroupNumber>12</GroupNumber>
  1505. <FileNumber>89</FileNumber>
  1506. <FileType>1</FileType>
  1507. <tvExp>0</tvExp>
  1508. <tvExpOptDlg>0</tvExpOptDlg>
  1509. <bDave2>0</bDave2>
  1510. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ahrs.Solution.c</PathWithFileName>
  1511. <FilenameWithoutPath>uavcan.equipment.ahrs.Solution.c</FilenameWithoutPath>
  1512. <RteFlg>0</RteFlg>
  1513. <bShared>0</bShared>
  1514. </File>
  1515. <File>
  1516. <GroupNumber>12</GroupNumber>
  1517. <FileNumber>90</FileNumber>
  1518. <FileType>1</FileType>
  1519. <tvExp>0</tvExp>
  1520. <tvExpOptDlg>0</tvExpOptDlg>
  1521. <bDave2>0</bDave2>
  1522. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.AngleOfAttack.c</PathWithFileName>
  1523. <FilenameWithoutPath>uavcan.equipment.air_data.AngleOfAttack.c</FilenameWithoutPath>
  1524. <RteFlg>0</RteFlg>
  1525. <bShared>0</bShared>
  1526. </File>
  1527. <File>
  1528. <GroupNumber>12</GroupNumber>
  1529. <FileNumber>91</FileNumber>
  1530. <FileType>1</FileType>
  1531. <tvExp>0</tvExp>
  1532. <tvExpOptDlg>0</tvExpOptDlg>
  1533. <bDave2>0</bDave2>
  1534. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.IndicatedAirspeed.c</PathWithFileName>
  1535. <FilenameWithoutPath>uavcan.equipment.air_data.IndicatedAirspeed.c</FilenameWithoutPath>
  1536. <RteFlg>0</RteFlg>
  1537. <bShared>0</bShared>
  1538. </File>
  1539. <File>
  1540. <GroupNumber>12</GroupNumber>
  1541. <FileNumber>92</FileNumber>
  1542. <FileType>1</FileType>
  1543. <tvExp>0</tvExp>
  1544. <tvExpOptDlg>0</tvExpOptDlg>
  1545. <bDave2>0</bDave2>
  1546. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.RawAirData.c</PathWithFileName>
  1547. <FilenameWithoutPath>uavcan.equipment.air_data.RawAirData.c</FilenameWithoutPath>
  1548. <RteFlg>0</RteFlg>
  1549. <bShared>0</bShared>
  1550. </File>
  1551. <File>
  1552. <GroupNumber>12</GroupNumber>
  1553. <FileNumber>93</FileNumber>
  1554. <FileType>1</FileType>
  1555. <tvExp>0</tvExp>
  1556. <tvExpOptDlg>0</tvExpOptDlg>
  1557. <bDave2>0</bDave2>
  1558. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.Sideslip.c</PathWithFileName>
  1559. <FilenameWithoutPath>uavcan.equipment.air_data.Sideslip.c</FilenameWithoutPath>
  1560. <RteFlg>0</RteFlg>
  1561. <bShared>0</bShared>
  1562. </File>
  1563. <File>
  1564. <GroupNumber>12</GroupNumber>
  1565. <FileNumber>94</FileNumber>
  1566. <FileType>1</FileType>
  1567. <tvExp>0</tvExp>
  1568. <tvExpOptDlg>0</tvExpOptDlg>
  1569. <bDave2>0</bDave2>
  1570. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.StaticPressure.c</PathWithFileName>
  1571. <FilenameWithoutPath>uavcan.equipment.air_data.StaticPressure.c</FilenameWithoutPath>
  1572. <RteFlg>0</RteFlg>
  1573. <bShared>0</bShared>
  1574. </File>
  1575. <File>
  1576. <GroupNumber>12</GroupNumber>
  1577. <FileNumber>95</FileNumber>
  1578. <FileType>1</FileType>
  1579. <tvExp>0</tvExp>
  1580. <tvExpOptDlg>0</tvExpOptDlg>
  1581. <bDave2>0</bDave2>
  1582. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.StaticTemperature.c</PathWithFileName>
  1583. <FilenameWithoutPath>uavcan.equipment.air_data.StaticTemperature.c</FilenameWithoutPath>
  1584. <RteFlg>0</RteFlg>
  1585. <bShared>0</bShared>
  1586. </File>
  1587. <File>
  1588. <GroupNumber>12</GroupNumber>
  1589. <FileNumber>96</FileNumber>
  1590. <FileType>1</FileType>
  1591. <tvExp>0</tvExp>
  1592. <tvExpOptDlg>0</tvExpOptDlg>
  1593. <bDave2>0</bDave2>
  1594. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.air_data.TrueAirspeed.c</PathWithFileName>
  1595. <FilenameWithoutPath>uavcan.equipment.air_data.TrueAirspeed.c</FilenameWithoutPath>
  1596. <RteFlg>0</RteFlg>
  1597. <bShared>0</bShared>
  1598. </File>
  1599. <File>
  1600. <GroupNumber>12</GroupNumber>
  1601. <FileNumber>97</FileNumber>
  1602. <FileType>1</FileType>
  1603. <tvExp>0</tvExp>
  1604. <tvExpOptDlg>0</tvExpOptDlg>
  1605. <bDave2>0</bDave2>
  1606. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.camera_gimbal.AngularCommand.c</PathWithFileName>
  1607. <FilenameWithoutPath>uavcan.equipment.camera_gimbal.AngularCommand.c</FilenameWithoutPath>
  1608. <RteFlg>0</RteFlg>
  1609. <bShared>0</bShared>
  1610. </File>
  1611. <File>
  1612. <GroupNumber>12</GroupNumber>
  1613. <FileNumber>98</FileNumber>
  1614. <FileType>1</FileType>
  1615. <tvExp>0</tvExp>
  1616. <tvExpOptDlg>0</tvExpOptDlg>
  1617. <bDave2>0</bDave2>
  1618. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.camera_gimbal.GEOPOICommand.c</PathWithFileName>
  1619. <FilenameWithoutPath>uavcan.equipment.camera_gimbal.GEOPOICommand.c</FilenameWithoutPath>
  1620. <RteFlg>0</RteFlg>
  1621. <bShared>0</bShared>
  1622. </File>
  1623. <File>
  1624. <GroupNumber>12</GroupNumber>
  1625. <FileNumber>99</FileNumber>
  1626. <FileType>1</FileType>
  1627. <tvExp>0</tvExp>
  1628. <tvExpOptDlg>0</tvExpOptDlg>
  1629. <bDave2>0</bDave2>
  1630. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.camera_gimbal.Mode.c</PathWithFileName>
  1631. <FilenameWithoutPath>uavcan.equipment.camera_gimbal.Mode.c</FilenameWithoutPath>
  1632. <RteFlg>0</RteFlg>
  1633. <bShared>0</bShared>
  1634. </File>
  1635. <File>
  1636. <GroupNumber>12</GroupNumber>
  1637. <FileNumber>100</FileNumber>
  1638. <FileType>1</FileType>
  1639. <tvExp>0</tvExp>
  1640. <tvExpOptDlg>0</tvExpOptDlg>
  1641. <bDave2>0</bDave2>
  1642. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.camera_gimbal.Status.c</PathWithFileName>
  1643. <FilenameWithoutPath>uavcan.equipment.camera_gimbal.Status.c</FilenameWithoutPath>
  1644. <RteFlg>0</RteFlg>
  1645. <bShared>0</bShared>
  1646. </File>
  1647. <File>
  1648. <GroupNumber>12</GroupNumber>
  1649. <FileNumber>101</FileNumber>
  1650. <FileType>1</FileType>
  1651. <tvExp>0</tvExp>
  1652. <tvExpOptDlg>0</tvExpOptDlg>
  1653. <bDave2>0</bDave2>
  1654. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.device.Temperature.c</PathWithFileName>
  1655. <FilenameWithoutPath>uavcan.equipment.device.Temperature.c</FilenameWithoutPath>
  1656. <RteFlg>0</RteFlg>
  1657. <bShared>0</bShared>
  1658. </File>
  1659. <File>
  1660. <GroupNumber>12</GroupNumber>
  1661. <FileNumber>102</FileNumber>
  1662. <FileType>1</FileType>
  1663. <tvExp>0</tvExp>
  1664. <tvExpOptDlg>0</tvExpOptDlg>
  1665. <bDave2>0</bDave2>
  1666. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.esc.RawCommand.c</PathWithFileName>
  1667. <FilenameWithoutPath>uavcan.equipment.esc.RawCommand.c</FilenameWithoutPath>
  1668. <RteFlg>0</RteFlg>
  1669. <bShared>0</bShared>
  1670. </File>
  1671. <File>
  1672. <GroupNumber>12</GroupNumber>
  1673. <FileNumber>103</FileNumber>
  1674. <FileType>1</FileType>
  1675. <tvExp>0</tvExp>
  1676. <tvExpOptDlg>0</tvExpOptDlg>
  1677. <bDave2>0</bDave2>
  1678. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.esc.RPMCommand.c</PathWithFileName>
  1679. <FilenameWithoutPath>uavcan.equipment.esc.RPMCommand.c</FilenameWithoutPath>
  1680. <RteFlg>0</RteFlg>
  1681. <bShared>0</bShared>
  1682. </File>
  1683. <File>
  1684. <GroupNumber>12</GroupNumber>
  1685. <FileNumber>104</FileNumber>
  1686. <FileType>1</FileType>
  1687. <tvExp>0</tvExp>
  1688. <tvExpOptDlg>0</tvExpOptDlg>
  1689. <bDave2>0</bDave2>
  1690. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.esc.Status.c</PathWithFileName>
  1691. <FilenameWithoutPath>uavcan.equipment.esc.Status.c</FilenameWithoutPath>
  1692. <RteFlg>0</RteFlg>
  1693. <bShared>0</bShared>
  1694. </File>
  1695. <File>
  1696. <GroupNumber>12</GroupNumber>
  1697. <FileNumber>105</FileNumber>
  1698. <FileType>1</FileType>
  1699. <tvExp>0</tvExp>
  1700. <tvExpOptDlg>0</tvExpOptDlg>
  1701. <bDave2>0</bDave2>
  1702. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.esc.StatusExtended.c</PathWithFileName>
  1703. <FilenameWithoutPath>uavcan.equipment.esc.StatusExtended.c</FilenameWithoutPath>
  1704. <RteFlg>0</RteFlg>
  1705. <bShared>0</bShared>
  1706. </File>
  1707. <File>
  1708. <GroupNumber>12</GroupNumber>
  1709. <FileNumber>106</FileNumber>
  1710. <FileType>1</FileType>
  1711. <tvExp>0</tvExp>
  1712. <tvExpOptDlg>0</tvExpOptDlg>
  1713. <bDave2>0</bDave2>
  1714. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.gnss.Auxiliary.c</PathWithFileName>
  1715. <FilenameWithoutPath>uavcan.equipment.gnss.Auxiliary.c</FilenameWithoutPath>
  1716. <RteFlg>0</RteFlg>
  1717. <bShared>0</bShared>
  1718. </File>
  1719. <File>
  1720. <GroupNumber>12</GroupNumber>
  1721. <FileNumber>107</FileNumber>
  1722. <FileType>1</FileType>
  1723. <tvExp>0</tvExp>
  1724. <tvExpOptDlg>0</tvExpOptDlg>
  1725. <bDave2>0</bDave2>
  1726. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.gnss.ECEFPositionVelocity.c</PathWithFileName>
  1727. <FilenameWithoutPath>uavcan.equipment.gnss.ECEFPositionVelocity.c</FilenameWithoutPath>
  1728. <RteFlg>0</RteFlg>
  1729. <bShared>0</bShared>
  1730. </File>
  1731. <File>
  1732. <GroupNumber>12</GroupNumber>
  1733. <FileNumber>108</FileNumber>
  1734. <FileType>1</FileType>
  1735. <tvExp>0</tvExp>
  1736. <tvExpOptDlg>0</tvExpOptDlg>
  1737. <bDave2>0</bDave2>
  1738. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.gnss.Fix.c</PathWithFileName>
  1739. <FilenameWithoutPath>uavcan.equipment.gnss.Fix.c</FilenameWithoutPath>
  1740. <RteFlg>0</RteFlg>
  1741. <bShared>0</bShared>
  1742. </File>
  1743. <File>
  1744. <GroupNumber>12</GroupNumber>
  1745. <FileNumber>109</FileNumber>
  1746. <FileType>1</FileType>
  1747. <tvExp>0</tvExp>
  1748. <tvExpOptDlg>0</tvExpOptDlg>
  1749. <bDave2>0</bDave2>
  1750. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.gnss.Fix2.c</PathWithFileName>
  1751. <FilenameWithoutPath>uavcan.equipment.gnss.Fix2.c</FilenameWithoutPath>
  1752. <RteFlg>0</RteFlg>
  1753. <bShared>0</bShared>
  1754. </File>
  1755. <File>
  1756. <GroupNumber>12</GroupNumber>
  1757. <FileNumber>110</FileNumber>
  1758. <FileType>1</FileType>
  1759. <tvExp>0</tvExp>
  1760. <tvExpOptDlg>0</tvExpOptDlg>
  1761. <bDave2>0</bDave2>
  1762. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.gnss.RTCMStream.c</PathWithFileName>
  1763. <FilenameWithoutPath>uavcan.equipment.gnss.RTCMStream.c</FilenameWithoutPath>
  1764. <RteFlg>0</RteFlg>
  1765. <bShared>0</bShared>
  1766. </File>
  1767. <File>
  1768. <GroupNumber>12</GroupNumber>
  1769. <FileNumber>111</FileNumber>
  1770. <FileType>1</FileType>
  1771. <tvExp>0</tvExp>
  1772. <tvExpOptDlg>0</tvExpOptDlg>
  1773. <bDave2>0</bDave2>
  1774. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.hardpoint.Command.c</PathWithFileName>
  1775. <FilenameWithoutPath>uavcan.equipment.hardpoint.Command.c</FilenameWithoutPath>
  1776. <RteFlg>0</RteFlg>
  1777. <bShared>0</bShared>
  1778. </File>
  1779. <File>
  1780. <GroupNumber>12</GroupNumber>
  1781. <FileNumber>112</FileNumber>
  1782. <FileType>1</FileType>
  1783. <tvExp>0</tvExp>
  1784. <tvExpOptDlg>0</tvExpOptDlg>
  1785. <bDave2>0</bDave2>
  1786. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.hardpoint.Status.c</PathWithFileName>
  1787. <FilenameWithoutPath>uavcan.equipment.hardpoint.Status.c</FilenameWithoutPath>
  1788. <RteFlg>0</RteFlg>
  1789. <bShared>0</bShared>
  1790. </File>
  1791. <File>
  1792. <GroupNumber>12</GroupNumber>
  1793. <FileNumber>113</FileNumber>
  1794. <FileType>1</FileType>
  1795. <tvExp>0</tvExp>
  1796. <tvExpOptDlg>0</tvExpOptDlg>
  1797. <bDave2>0</bDave2>
  1798. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ice.FuelTankStatus.c</PathWithFileName>
  1799. <FilenameWithoutPath>uavcan.equipment.ice.FuelTankStatus.c</FilenameWithoutPath>
  1800. <RteFlg>0</RteFlg>
  1801. <bShared>0</bShared>
  1802. </File>
  1803. <File>
  1804. <GroupNumber>12</GroupNumber>
  1805. <FileNumber>114</FileNumber>
  1806. <FileType>1</FileType>
  1807. <tvExp>0</tvExp>
  1808. <tvExpOptDlg>0</tvExpOptDlg>
  1809. <bDave2>0</bDave2>
  1810. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ice.reciprocating.CylinderStatus.c</PathWithFileName>
  1811. <FilenameWithoutPath>uavcan.equipment.ice.reciprocating.CylinderStatus.c</FilenameWithoutPath>
  1812. <RteFlg>0</RteFlg>
  1813. <bShared>0</bShared>
  1814. </File>
  1815. <File>
  1816. <GroupNumber>12</GroupNumber>
  1817. <FileNumber>115</FileNumber>
  1818. <FileType>1</FileType>
  1819. <tvExp>0</tvExp>
  1820. <tvExpOptDlg>0</tvExpOptDlg>
  1821. <bDave2>0</bDave2>
  1822. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.ice.reciprocating.Status.c</PathWithFileName>
  1823. <FilenameWithoutPath>uavcan.equipment.ice.reciprocating.Status.c</FilenameWithoutPath>
  1824. <RteFlg>0</RteFlg>
  1825. <bShared>0</bShared>
  1826. </File>
  1827. <File>
  1828. <GroupNumber>12</GroupNumber>
  1829. <FileNumber>116</FileNumber>
  1830. <FileType>1</FileType>
  1831. <tvExp>0</tvExp>
  1832. <tvExpOptDlg>0</tvExpOptDlg>
  1833. <bDave2>0</bDave2>
  1834. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.indication.BeepCommand.c</PathWithFileName>
  1835. <FilenameWithoutPath>uavcan.equipment.indication.BeepCommand.c</FilenameWithoutPath>
  1836. <RteFlg>0</RteFlg>
  1837. <bShared>0</bShared>
  1838. </File>
  1839. <File>
  1840. <GroupNumber>12</GroupNumber>
  1841. <FileNumber>117</FileNumber>
  1842. <FileType>1</FileType>
  1843. <tvExp>0</tvExp>
  1844. <tvExpOptDlg>0</tvExpOptDlg>
  1845. <bDave2>0</bDave2>
  1846. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.indication.LightsCommand.c</PathWithFileName>
  1847. <FilenameWithoutPath>uavcan.equipment.indication.LightsCommand.c</FilenameWithoutPath>
  1848. <RteFlg>0</RteFlg>
  1849. <bShared>0</bShared>
  1850. </File>
  1851. <File>
  1852. <GroupNumber>12</GroupNumber>
  1853. <FileNumber>118</FileNumber>
  1854. <FileType>1</FileType>
  1855. <tvExp>0</tvExp>
  1856. <tvExpOptDlg>0</tvExpOptDlg>
  1857. <bDave2>0</bDave2>
  1858. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.indication.RGB565.c</PathWithFileName>
  1859. <FilenameWithoutPath>uavcan.equipment.indication.RGB565.c</FilenameWithoutPath>
  1860. <RteFlg>0</RteFlg>
  1861. <bShared>0</bShared>
  1862. </File>
  1863. <File>
  1864. <GroupNumber>12</GroupNumber>
  1865. <FileNumber>119</FileNumber>
  1866. <FileType>1</FileType>
  1867. <tvExp>0</tvExp>
  1868. <tvExpOptDlg>0</tvExpOptDlg>
  1869. <bDave2>0</bDave2>
  1870. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.indication.SingleLightCommand.c</PathWithFileName>
  1871. <FilenameWithoutPath>uavcan.equipment.indication.SingleLightCommand.c</FilenameWithoutPath>
  1872. <RteFlg>0</RteFlg>
  1873. <bShared>0</bShared>
  1874. </File>
  1875. <File>
  1876. <GroupNumber>12</GroupNumber>
  1877. <FileNumber>120</FileNumber>
  1878. <FileType>1</FileType>
  1879. <tvExp>0</tvExp>
  1880. <tvExpOptDlg>0</tvExpOptDlg>
  1881. <bDave2>0</bDave2>
  1882. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.power.BatteryInfo.c</PathWithFileName>
  1883. <FilenameWithoutPath>uavcan.equipment.power.BatteryInfo.c</FilenameWithoutPath>
  1884. <RteFlg>0</RteFlg>
  1885. <bShared>0</bShared>
  1886. </File>
  1887. <File>
  1888. <GroupNumber>12</GroupNumber>
  1889. <FileNumber>121</FileNumber>
  1890. <FileType>1</FileType>
  1891. <tvExp>0</tvExp>
  1892. <tvExpOptDlg>0</tvExpOptDlg>
  1893. <bDave2>0</bDave2>
  1894. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.power.CircuitStatus.c</PathWithFileName>
  1895. <FilenameWithoutPath>uavcan.equipment.power.CircuitStatus.c</FilenameWithoutPath>
  1896. <RteFlg>0</RteFlg>
  1897. <bShared>0</bShared>
  1898. </File>
  1899. <File>
  1900. <GroupNumber>12</GroupNumber>
  1901. <FileNumber>122</FileNumber>
  1902. <FileType>1</FileType>
  1903. <tvExp>0</tvExp>
  1904. <tvExpOptDlg>0</tvExpOptDlg>
  1905. <bDave2>0</bDave2>
  1906. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.power.PrimaryPowerSupplyStatus.c</PathWithFileName>
  1907. <FilenameWithoutPath>uavcan.equipment.power.PrimaryPowerSupplyStatus.c</FilenameWithoutPath>
  1908. <RteFlg>0</RteFlg>
  1909. <bShared>0</bShared>
  1910. </File>
  1911. <File>
  1912. <GroupNumber>12</GroupNumber>
  1913. <FileNumber>123</FileNumber>
  1914. <FileType>1</FileType>
  1915. <tvExp>0</tvExp>
  1916. <tvExpOptDlg>0</tvExpOptDlg>
  1917. <bDave2>0</bDave2>
  1918. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.range_sensor.Measurement.c</PathWithFileName>
  1919. <FilenameWithoutPath>uavcan.equipment.range_sensor.Measurement.c</FilenameWithoutPath>
  1920. <RteFlg>0</RteFlg>
  1921. <bShared>0</bShared>
  1922. </File>
  1923. <File>
  1924. <GroupNumber>12</GroupNumber>
  1925. <FileNumber>124</FileNumber>
  1926. <FileType>1</FileType>
  1927. <tvExp>0</tvExp>
  1928. <tvExpOptDlg>0</tvExpOptDlg>
  1929. <bDave2>0</bDave2>
  1930. <PathWithFileName>..\dsdlc_generated\src\uavcan.equipment.safety.ArmingStatus.c</PathWithFileName>
  1931. <FilenameWithoutPath>uavcan.equipment.safety.ArmingStatus.c</FilenameWithoutPath>
  1932. <RteFlg>0</RteFlg>
  1933. <bShared>0</bShared>
  1934. </File>
  1935. <File>
  1936. <GroupNumber>12</GroupNumber>
  1937. <FileNumber>125</FileNumber>
  1938. <FileType>1</FileType>
  1939. <tvExp>0</tvExp>
  1940. <tvExpOptDlg>0</tvExpOptDlg>
  1941. <bDave2>0</bDave2>
  1942. <PathWithFileName>..\dsdlc_generated\src\uavcan.navigation.GlobalNavigationSolution.c</PathWithFileName>
  1943. <FilenameWithoutPath>uavcan.navigation.GlobalNavigationSolution.c</FilenameWithoutPath>
  1944. <RteFlg>0</RteFlg>
  1945. <bShared>0</bShared>
  1946. </File>
  1947. <File>
  1948. <GroupNumber>12</GroupNumber>
  1949. <FileNumber>126</FileNumber>
  1950. <FileType>1</FileType>
  1951. <tvExp>0</tvExp>
  1952. <tvExpOptDlg>0</tvExpOptDlg>
  1953. <bDave2>0</bDave2>
  1954. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.AccessCommandShell_req.c</PathWithFileName>
  1955. <FilenameWithoutPath>uavcan.protocol.AccessCommandShell_req.c</FilenameWithoutPath>
  1956. <RteFlg>0</RteFlg>
  1957. <bShared>0</bShared>
  1958. </File>
  1959. <File>
  1960. <GroupNumber>12</GroupNumber>
  1961. <FileNumber>127</FileNumber>
  1962. <FileType>1</FileType>
  1963. <tvExp>0</tvExp>
  1964. <tvExpOptDlg>0</tvExpOptDlg>
  1965. <bDave2>0</bDave2>
  1966. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.AccessCommandShell_res.c</PathWithFileName>
  1967. <FilenameWithoutPath>uavcan.protocol.AccessCommandShell_res.c</FilenameWithoutPath>
  1968. <RteFlg>0</RteFlg>
  1969. <bShared>0</bShared>
  1970. </File>
  1971. <File>
  1972. <GroupNumber>12</GroupNumber>
  1973. <FileNumber>128</FileNumber>
  1974. <FileType>1</FileType>
  1975. <tvExp>0</tvExp>
  1976. <tvExpOptDlg>0</tvExpOptDlg>
  1977. <bDave2>0</bDave2>
  1978. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.CANIfaceStats.c</PathWithFileName>
  1979. <FilenameWithoutPath>uavcan.protocol.CANIfaceStats.c</FilenameWithoutPath>
  1980. <RteFlg>0</RteFlg>
  1981. <bShared>0</bShared>
  1982. </File>
  1983. <File>
  1984. <GroupNumber>12</GroupNumber>
  1985. <FileNumber>129</FileNumber>
  1986. <FileType>1</FileType>
  1987. <tvExp>0</tvExp>
  1988. <tvExpOptDlg>0</tvExpOptDlg>
  1989. <bDave2>0</bDave2>
  1990. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.DataTypeKind.c</PathWithFileName>
  1991. <FilenameWithoutPath>uavcan.protocol.DataTypeKind.c</FilenameWithoutPath>
  1992. <RteFlg>0</RteFlg>
  1993. <bShared>0</bShared>
  1994. </File>
  1995. <File>
  1996. <GroupNumber>12</GroupNumber>
  1997. <FileNumber>130</FileNumber>
  1998. <FileType>1</FileType>
  1999. <tvExp>0</tvExp>
  2000. <tvExpOptDlg>0</tvExpOptDlg>
  2001. <bDave2>0</bDave2>
  2002. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.debug.KeyValue.c</PathWithFileName>
  2003. <FilenameWithoutPath>uavcan.protocol.debug.KeyValue.c</FilenameWithoutPath>
  2004. <RteFlg>0</RteFlg>
  2005. <bShared>0</bShared>
  2006. </File>
  2007. <File>
  2008. <GroupNumber>12</GroupNumber>
  2009. <FileNumber>131</FileNumber>
  2010. <FileType>1</FileType>
  2011. <tvExp>0</tvExp>
  2012. <tvExpOptDlg>0</tvExpOptDlg>
  2013. <bDave2>0</bDave2>
  2014. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.debug.LogLevel.c</PathWithFileName>
  2015. <FilenameWithoutPath>uavcan.protocol.debug.LogLevel.c</FilenameWithoutPath>
  2016. <RteFlg>0</RteFlg>
  2017. <bShared>0</bShared>
  2018. </File>
  2019. <File>
  2020. <GroupNumber>12</GroupNumber>
  2021. <FileNumber>132</FileNumber>
  2022. <FileType>1</FileType>
  2023. <tvExp>0</tvExp>
  2024. <tvExpOptDlg>0</tvExpOptDlg>
  2025. <bDave2>0</bDave2>
  2026. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.debug.LogMessage.c</PathWithFileName>
  2027. <FilenameWithoutPath>uavcan.protocol.debug.LogMessage.c</FilenameWithoutPath>
  2028. <RteFlg>0</RteFlg>
  2029. <bShared>0</bShared>
  2030. </File>
  2031. <File>
  2032. <GroupNumber>12</GroupNumber>
  2033. <FileNumber>133</FileNumber>
  2034. <FileType>1</FileType>
  2035. <tvExp>0</tvExp>
  2036. <tvExpOptDlg>0</tvExpOptDlg>
  2037. <bDave2>0</bDave2>
  2038. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.Allocation.c</PathWithFileName>
  2039. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.Allocation.c</FilenameWithoutPath>
  2040. <RteFlg>0</RteFlg>
  2041. <bShared>0</bShared>
  2042. </File>
  2043. <File>
  2044. <GroupNumber>12</GroupNumber>
  2045. <FileNumber>134</FileNumber>
  2046. <FileType>1</FileType>
  2047. <tvExp>0</tvExp>
  2048. <tvExpOptDlg>0</tvExpOptDlg>
  2049. <bDave2>0</bDave2>
  2050. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.server.AppendEntries_req.c</PathWithFileName>
  2051. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.server.AppendEntries_req.c</FilenameWithoutPath>
  2052. <RteFlg>0</RteFlg>
  2053. <bShared>0</bShared>
  2054. </File>
  2055. <File>
  2056. <GroupNumber>12</GroupNumber>
  2057. <FileNumber>135</FileNumber>
  2058. <FileType>1</FileType>
  2059. <tvExp>0</tvExp>
  2060. <tvExpOptDlg>0</tvExpOptDlg>
  2061. <bDave2>0</bDave2>
  2062. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.server.AppendEntries_res.c</PathWithFileName>
  2063. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.server.AppendEntries_res.c</FilenameWithoutPath>
  2064. <RteFlg>0</RteFlg>
  2065. <bShared>0</bShared>
  2066. </File>
  2067. <File>
  2068. <GroupNumber>12</GroupNumber>
  2069. <FileNumber>136</FileNumber>
  2070. <FileType>1</FileType>
  2071. <tvExp>0</tvExp>
  2072. <tvExpOptDlg>0</tvExpOptDlg>
  2073. <bDave2>0</bDave2>
  2074. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.server.Discovery.c</PathWithFileName>
  2075. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.server.Discovery.c</FilenameWithoutPath>
  2076. <RteFlg>0</RteFlg>
  2077. <bShared>0</bShared>
  2078. </File>
  2079. <File>
  2080. <GroupNumber>12</GroupNumber>
  2081. <FileNumber>137</FileNumber>
  2082. <FileType>1</FileType>
  2083. <tvExp>0</tvExp>
  2084. <tvExpOptDlg>0</tvExpOptDlg>
  2085. <bDave2>0</bDave2>
  2086. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.server.Entry.c</PathWithFileName>
  2087. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.server.Entry.c</FilenameWithoutPath>
  2088. <RteFlg>0</RteFlg>
  2089. <bShared>0</bShared>
  2090. </File>
  2091. <File>
  2092. <GroupNumber>12</GroupNumber>
  2093. <FileNumber>138</FileNumber>
  2094. <FileType>1</FileType>
  2095. <tvExp>0</tvExp>
  2096. <tvExpOptDlg>0</tvExpOptDlg>
  2097. <bDave2>0</bDave2>
  2098. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.server.RequestVote_req.c</PathWithFileName>
  2099. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.server.RequestVote_req.c</FilenameWithoutPath>
  2100. <RteFlg>0</RteFlg>
  2101. <bShared>0</bShared>
  2102. </File>
  2103. <File>
  2104. <GroupNumber>12</GroupNumber>
  2105. <FileNumber>139</FileNumber>
  2106. <FileType>1</FileType>
  2107. <tvExp>0</tvExp>
  2108. <tvExpOptDlg>0</tvExpOptDlg>
  2109. <bDave2>0</bDave2>
  2110. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.dynamic_node_id.server.RequestVote_res.c</PathWithFileName>
  2111. <FilenameWithoutPath>uavcan.protocol.dynamic_node_id.server.RequestVote_res.c</FilenameWithoutPath>
  2112. <RteFlg>0</RteFlg>
  2113. <bShared>0</bShared>
  2114. </File>
  2115. <File>
  2116. <GroupNumber>12</GroupNumber>
  2117. <FileNumber>140</FileNumber>
  2118. <FileType>1</FileType>
  2119. <tvExp>0</tvExp>
  2120. <tvExpOptDlg>0</tvExpOptDlg>
  2121. <bDave2>0</bDave2>
  2122. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.enumeration.Begin_req.c</PathWithFileName>
  2123. <FilenameWithoutPath>uavcan.protocol.enumeration.Begin_req.c</FilenameWithoutPath>
  2124. <RteFlg>0</RteFlg>
  2125. <bShared>0</bShared>
  2126. </File>
  2127. <File>
  2128. <GroupNumber>12</GroupNumber>
  2129. <FileNumber>141</FileNumber>
  2130. <FileType>1</FileType>
  2131. <tvExp>0</tvExp>
  2132. <tvExpOptDlg>0</tvExpOptDlg>
  2133. <bDave2>0</bDave2>
  2134. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.enumeration.Begin_res.c</PathWithFileName>
  2135. <FilenameWithoutPath>uavcan.protocol.enumeration.Begin_res.c</FilenameWithoutPath>
  2136. <RteFlg>0</RteFlg>
  2137. <bShared>0</bShared>
  2138. </File>
  2139. <File>
  2140. <GroupNumber>12</GroupNumber>
  2141. <FileNumber>142</FileNumber>
  2142. <FileType>1</FileType>
  2143. <tvExp>0</tvExp>
  2144. <tvExpOptDlg>0</tvExpOptDlg>
  2145. <bDave2>0</bDave2>
  2146. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.enumeration.Indication.c</PathWithFileName>
  2147. <FilenameWithoutPath>uavcan.protocol.enumeration.Indication.c</FilenameWithoutPath>
  2148. <RteFlg>0</RteFlg>
  2149. <bShared>0</bShared>
  2150. </File>
  2151. <File>
  2152. <GroupNumber>12</GroupNumber>
  2153. <FileNumber>143</FileNumber>
  2154. <FileType>1</FileType>
  2155. <tvExp>0</tvExp>
  2156. <tvExpOptDlg>0</tvExpOptDlg>
  2157. <bDave2>0</bDave2>
  2158. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.BeginFirmwareUpdate_req.c</PathWithFileName>
  2159. <FilenameWithoutPath>uavcan.protocol.file.BeginFirmwareUpdate_req.c</FilenameWithoutPath>
  2160. <RteFlg>0</RteFlg>
  2161. <bShared>0</bShared>
  2162. </File>
  2163. <File>
  2164. <GroupNumber>12</GroupNumber>
  2165. <FileNumber>144</FileNumber>
  2166. <FileType>1</FileType>
  2167. <tvExp>0</tvExp>
  2168. <tvExpOptDlg>0</tvExpOptDlg>
  2169. <bDave2>0</bDave2>
  2170. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.BeginFirmwareUpdate_res.c</PathWithFileName>
  2171. <FilenameWithoutPath>uavcan.protocol.file.BeginFirmwareUpdate_res.c</FilenameWithoutPath>
  2172. <RteFlg>0</RteFlg>
  2173. <bShared>0</bShared>
  2174. </File>
  2175. <File>
  2176. <GroupNumber>12</GroupNumber>
  2177. <FileNumber>145</FileNumber>
  2178. <FileType>1</FileType>
  2179. <tvExp>0</tvExp>
  2180. <tvExpOptDlg>0</tvExpOptDlg>
  2181. <bDave2>0</bDave2>
  2182. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Delete_req.c</PathWithFileName>
  2183. <FilenameWithoutPath>uavcan.protocol.file.Delete_req.c</FilenameWithoutPath>
  2184. <RteFlg>0</RteFlg>
  2185. <bShared>0</bShared>
  2186. </File>
  2187. <File>
  2188. <GroupNumber>12</GroupNumber>
  2189. <FileNumber>146</FileNumber>
  2190. <FileType>1</FileType>
  2191. <tvExp>0</tvExp>
  2192. <tvExpOptDlg>0</tvExpOptDlg>
  2193. <bDave2>0</bDave2>
  2194. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Delete_res.c</PathWithFileName>
  2195. <FilenameWithoutPath>uavcan.protocol.file.Delete_res.c</FilenameWithoutPath>
  2196. <RteFlg>0</RteFlg>
  2197. <bShared>0</bShared>
  2198. </File>
  2199. <File>
  2200. <GroupNumber>12</GroupNumber>
  2201. <FileNumber>147</FileNumber>
  2202. <FileType>1</FileType>
  2203. <tvExp>0</tvExp>
  2204. <tvExpOptDlg>0</tvExpOptDlg>
  2205. <bDave2>0</bDave2>
  2206. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.EntryType.c</PathWithFileName>
  2207. <FilenameWithoutPath>uavcan.protocol.file.EntryType.c</FilenameWithoutPath>
  2208. <RteFlg>0</RteFlg>
  2209. <bShared>0</bShared>
  2210. </File>
  2211. <File>
  2212. <GroupNumber>12</GroupNumber>
  2213. <FileNumber>148</FileNumber>
  2214. <FileType>1</FileType>
  2215. <tvExp>0</tvExp>
  2216. <tvExpOptDlg>0</tvExpOptDlg>
  2217. <bDave2>0</bDave2>
  2218. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Error.c</PathWithFileName>
  2219. <FilenameWithoutPath>uavcan.protocol.file.Error.c</FilenameWithoutPath>
  2220. <RteFlg>0</RteFlg>
  2221. <bShared>0</bShared>
  2222. </File>
  2223. <File>
  2224. <GroupNumber>12</GroupNumber>
  2225. <FileNumber>149</FileNumber>
  2226. <FileType>1</FileType>
  2227. <tvExp>0</tvExp>
  2228. <tvExpOptDlg>0</tvExpOptDlg>
  2229. <bDave2>0</bDave2>
  2230. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.GetDirectoryEntryInfo_req.c</PathWithFileName>
  2231. <FilenameWithoutPath>uavcan.protocol.file.GetDirectoryEntryInfo_req.c</FilenameWithoutPath>
  2232. <RteFlg>0</RteFlg>
  2233. <bShared>0</bShared>
  2234. </File>
  2235. <File>
  2236. <GroupNumber>12</GroupNumber>
  2237. <FileNumber>150</FileNumber>
  2238. <FileType>1</FileType>
  2239. <tvExp>0</tvExp>
  2240. <tvExpOptDlg>0</tvExpOptDlg>
  2241. <bDave2>0</bDave2>
  2242. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.GetDirectoryEntryInfo_res.c</PathWithFileName>
  2243. <FilenameWithoutPath>uavcan.protocol.file.GetDirectoryEntryInfo_res.c</FilenameWithoutPath>
  2244. <RteFlg>0</RteFlg>
  2245. <bShared>0</bShared>
  2246. </File>
  2247. <File>
  2248. <GroupNumber>12</GroupNumber>
  2249. <FileNumber>151</FileNumber>
  2250. <FileType>1</FileType>
  2251. <tvExp>0</tvExp>
  2252. <tvExpOptDlg>0</tvExpOptDlg>
  2253. <bDave2>0</bDave2>
  2254. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.GetInfo_req.c</PathWithFileName>
  2255. <FilenameWithoutPath>uavcan.protocol.file.GetInfo_req.c</FilenameWithoutPath>
  2256. <RteFlg>0</RteFlg>
  2257. <bShared>0</bShared>
  2258. </File>
  2259. <File>
  2260. <GroupNumber>12</GroupNumber>
  2261. <FileNumber>152</FileNumber>
  2262. <FileType>1</FileType>
  2263. <tvExp>0</tvExp>
  2264. <tvExpOptDlg>0</tvExpOptDlg>
  2265. <bDave2>0</bDave2>
  2266. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.GetInfo_res.c</PathWithFileName>
  2267. <FilenameWithoutPath>uavcan.protocol.file.GetInfo_res.c</FilenameWithoutPath>
  2268. <RteFlg>0</RteFlg>
  2269. <bShared>0</bShared>
  2270. </File>
  2271. <File>
  2272. <GroupNumber>12</GroupNumber>
  2273. <FileNumber>153</FileNumber>
  2274. <FileType>1</FileType>
  2275. <tvExp>0</tvExp>
  2276. <tvExpOptDlg>0</tvExpOptDlg>
  2277. <bDave2>0</bDave2>
  2278. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Path.c</PathWithFileName>
  2279. <FilenameWithoutPath>uavcan.protocol.file.Path.c</FilenameWithoutPath>
  2280. <RteFlg>0</RteFlg>
  2281. <bShared>0</bShared>
  2282. </File>
  2283. <File>
  2284. <GroupNumber>12</GroupNumber>
  2285. <FileNumber>154</FileNumber>
  2286. <FileType>1</FileType>
  2287. <tvExp>0</tvExp>
  2288. <tvExpOptDlg>0</tvExpOptDlg>
  2289. <bDave2>0</bDave2>
  2290. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Read_req.c</PathWithFileName>
  2291. <FilenameWithoutPath>uavcan.protocol.file.Read_req.c</FilenameWithoutPath>
  2292. <RteFlg>0</RteFlg>
  2293. <bShared>0</bShared>
  2294. </File>
  2295. <File>
  2296. <GroupNumber>12</GroupNumber>
  2297. <FileNumber>155</FileNumber>
  2298. <FileType>1</FileType>
  2299. <tvExp>0</tvExp>
  2300. <tvExpOptDlg>0</tvExpOptDlg>
  2301. <bDave2>0</bDave2>
  2302. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Read_res.c</PathWithFileName>
  2303. <FilenameWithoutPath>uavcan.protocol.file.Read_res.c</FilenameWithoutPath>
  2304. <RteFlg>0</RteFlg>
  2305. <bShared>0</bShared>
  2306. </File>
  2307. <File>
  2308. <GroupNumber>12</GroupNumber>
  2309. <FileNumber>156</FileNumber>
  2310. <FileType>1</FileType>
  2311. <tvExp>0</tvExp>
  2312. <tvExpOptDlg>0</tvExpOptDlg>
  2313. <bDave2>0</bDave2>
  2314. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Write_req.c</PathWithFileName>
  2315. <FilenameWithoutPath>uavcan.protocol.file.Write_req.c</FilenameWithoutPath>
  2316. <RteFlg>0</RteFlg>
  2317. <bShared>0</bShared>
  2318. </File>
  2319. <File>
  2320. <GroupNumber>12</GroupNumber>
  2321. <FileNumber>157</FileNumber>
  2322. <FileType>1</FileType>
  2323. <tvExp>0</tvExp>
  2324. <tvExpOptDlg>0</tvExpOptDlg>
  2325. <bDave2>0</bDave2>
  2326. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.file.Write_res.c</PathWithFileName>
  2327. <FilenameWithoutPath>uavcan.protocol.file.Write_res.c</FilenameWithoutPath>
  2328. <RteFlg>0</RteFlg>
  2329. <bShared>0</bShared>
  2330. </File>
  2331. <File>
  2332. <GroupNumber>12</GroupNumber>
  2333. <FileNumber>158</FileNumber>
  2334. <FileType>1</FileType>
  2335. <tvExp>0</tvExp>
  2336. <tvExpOptDlg>0</tvExpOptDlg>
  2337. <bDave2>0</bDave2>
  2338. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GetDataTypeInfo_req.c</PathWithFileName>
  2339. <FilenameWithoutPath>uavcan.protocol.GetDataTypeInfo_req.c</FilenameWithoutPath>
  2340. <RteFlg>0</RteFlg>
  2341. <bShared>0</bShared>
  2342. </File>
  2343. <File>
  2344. <GroupNumber>12</GroupNumber>
  2345. <FileNumber>159</FileNumber>
  2346. <FileType>1</FileType>
  2347. <tvExp>0</tvExp>
  2348. <tvExpOptDlg>0</tvExpOptDlg>
  2349. <bDave2>0</bDave2>
  2350. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GetDataTypeInfo_res.c</PathWithFileName>
  2351. <FilenameWithoutPath>uavcan.protocol.GetDataTypeInfo_res.c</FilenameWithoutPath>
  2352. <RteFlg>0</RteFlg>
  2353. <bShared>0</bShared>
  2354. </File>
  2355. <File>
  2356. <GroupNumber>12</GroupNumber>
  2357. <FileNumber>160</FileNumber>
  2358. <FileType>1</FileType>
  2359. <tvExp>0</tvExp>
  2360. <tvExpOptDlg>0</tvExpOptDlg>
  2361. <bDave2>0</bDave2>
  2362. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GetNodeInfo_req.c</PathWithFileName>
  2363. <FilenameWithoutPath>uavcan.protocol.GetNodeInfo_req.c</FilenameWithoutPath>
  2364. <RteFlg>0</RteFlg>
  2365. <bShared>0</bShared>
  2366. </File>
  2367. <File>
  2368. <GroupNumber>12</GroupNumber>
  2369. <FileNumber>161</FileNumber>
  2370. <FileType>1</FileType>
  2371. <tvExp>0</tvExp>
  2372. <tvExpOptDlg>0</tvExpOptDlg>
  2373. <bDave2>0</bDave2>
  2374. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GetNodeInfo_res.c</PathWithFileName>
  2375. <FilenameWithoutPath>uavcan.protocol.GetNodeInfo_res.c</FilenameWithoutPath>
  2376. <RteFlg>0</RteFlg>
  2377. <bShared>0</bShared>
  2378. </File>
  2379. <File>
  2380. <GroupNumber>12</GroupNumber>
  2381. <FileNumber>162</FileNumber>
  2382. <FileType>1</FileType>
  2383. <tvExp>0</tvExp>
  2384. <tvExpOptDlg>0</tvExpOptDlg>
  2385. <bDave2>0</bDave2>
  2386. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GetTransportStats_req.c</PathWithFileName>
  2387. <FilenameWithoutPath>uavcan.protocol.GetTransportStats_req.c</FilenameWithoutPath>
  2388. <RteFlg>0</RteFlg>
  2389. <bShared>0</bShared>
  2390. </File>
  2391. <File>
  2392. <GroupNumber>12</GroupNumber>
  2393. <FileNumber>163</FileNumber>
  2394. <FileType>1</FileType>
  2395. <tvExp>0</tvExp>
  2396. <tvExpOptDlg>0</tvExpOptDlg>
  2397. <bDave2>0</bDave2>
  2398. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GetTransportStats_res.c</PathWithFileName>
  2399. <FilenameWithoutPath>uavcan.protocol.GetTransportStats_res.c</FilenameWithoutPath>
  2400. <RteFlg>0</RteFlg>
  2401. <bShared>0</bShared>
  2402. </File>
  2403. <File>
  2404. <GroupNumber>12</GroupNumber>
  2405. <FileNumber>164</FileNumber>
  2406. <FileType>1</FileType>
  2407. <tvExp>0</tvExp>
  2408. <tvExpOptDlg>0</tvExpOptDlg>
  2409. <bDave2>0</bDave2>
  2410. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.GlobalTimeSync.c</PathWithFileName>
  2411. <FilenameWithoutPath>uavcan.protocol.GlobalTimeSync.c</FilenameWithoutPath>
  2412. <RteFlg>0</RteFlg>
  2413. <bShared>0</bShared>
  2414. </File>
  2415. <File>
  2416. <GroupNumber>12</GroupNumber>
  2417. <FileNumber>165</FileNumber>
  2418. <FileType>1</FileType>
  2419. <tvExp>0</tvExp>
  2420. <tvExpOptDlg>0</tvExpOptDlg>
  2421. <bDave2>0</bDave2>
  2422. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.HardwareVersion.c</PathWithFileName>
  2423. <FilenameWithoutPath>uavcan.protocol.HardwareVersion.c</FilenameWithoutPath>
  2424. <RteFlg>0</RteFlg>
  2425. <bShared>0</bShared>
  2426. </File>
  2427. <File>
  2428. <GroupNumber>12</GroupNumber>
  2429. <FileNumber>166</FileNumber>
  2430. <FileType>1</FileType>
  2431. <tvExp>0</tvExp>
  2432. <tvExpOptDlg>0</tvExpOptDlg>
  2433. <bDave2>0</bDave2>
  2434. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.NodeStatus.c</PathWithFileName>
  2435. <FilenameWithoutPath>uavcan.protocol.NodeStatus.c</FilenameWithoutPath>
  2436. <RteFlg>0</RteFlg>
  2437. <bShared>0</bShared>
  2438. </File>
  2439. <File>
  2440. <GroupNumber>12</GroupNumber>
  2441. <FileNumber>167</FileNumber>
  2442. <FileType>1</FileType>
  2443. <tvExp>0</tvExp>
  2444. <tvExpOptDlg>0</tvExpOptDlg>
  2445. <bDave2>0</bDave2>
  2446. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.Panic.c</PathWithFileName>
  2447. <FilenameWithoutPath>uavcan.protocol.Panic.c</FilenameWithoutPath>
  2448. <RteFlg>0</RteFlg>
  2449. <bShared>0</bShared>
  2450. </File>
  2451. <File>
  2452. <GroupNumber>12</GroupNumber>
  2453. <FileNumber>168</FileNumber>
  2454. <FileType>1</FileType>
  2455. <tvExp>0</tvExp>
  2456. <tvExpOptDlg>0</tvExpOptDlg>
  2457. <bDave2>0</bDave2>
  2458. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.Empty.c</PathWithFileName>
  2459. <FilenameWithoutPath>uavcan.protocol.param.Empty.c</FilenameWithoutPath>
  2460. <RteFlg>0</RteFlg>
  2461. <bShared>0</bShared>
  2462. </File>
  2463. <File>
  2464. <GroupNumber>12</GroupNumber>
  2465. <FileNumber>169</FileNumber>
  2466. <FileType>1</FileType>
  2467. <tvExp>0</tvExp>
  2468. <tvExpOptDlg>0</tvExpOptDlg>
  2469. <bDave2>0</bDave2>
  2470. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.ExecuteOpcode_req.c</PathWithFileName>
  2471. <FilenameWithoutPath>uavcan.protocol.param.ExecuteOpcode_req.c</FilenameWithoutPath>
  2472. <RteFlg>0</RteFlg>
  2473. <bShared>0</bShared>
  2474. </File>
  2475. <File>
  2476. <GroupNumber>12</GroupNumber>
  2477. <FileNumber>170</FileNumber>
  2478. <FileType>1</FileType>
  2479. <tvExp>0</tvExp>
  2480. <tvExpOptDlg>0</tvExpOptDlg>
  2481. <bDave2>0</bDave2>
  2482. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.ExecuteOpcode_res.c</PathWithFileName>
  2483. <FilenameWithoutPath>uavcan.protocol.param.ExecuteOpcode_res.c</FilenameWithoutPath>
  2484. <RteFlg>0</RteFlg>
  2485. <bShared>0</bShared>
  2486. </File>
  2487. <File>
  2488. <GroupNumber>12</GroupNumber>
  2489. <FileNumber>171</FileNumber>
  2490. <FileType>1</FileType>
  2491. <tvExp>0</tvExp>
  2492. <tvExpOptDlg>0</tvExpOptDlg>
  2493. <bDave2>0</bDave2>
  2494. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.GetSet_req.c</PathWithFileName>
  2495. <FilenameWithoutPath>uavcan.protocol.param.GetSet_req.c</FilenameWithoutPath>
  2496. <RteFlg>0</RteFlg>
  2497. <bShared>0</bShared>
  2498. </File>
  2499. <File>
  2500. <GroupNumber>12</GroupNumber>
  2501. <FileNumber>172</FileNumber>
  2502. <FileType>1</FileType>
  2503. <tvExp>0</tvExp>
  2504. <tvExpOptDlg>0</tvExpOptDlg>
  2505. <bDave2>0</bDave2>
  2506. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.GetSet_res.c</PathWithFileName>
  2507. <FilenameWithoutPath>uavcan.protocol.param.GetSet_res.c</FilenameWithoutPath>
  2508. <RteFlg>0</RteFlg>
  2509. <bShared>0</bShared>
  2510. </File>
  2511. <File>
  2512. <GroupNumber>12</GroupNumber>
  2513. <FileNumber>173</FileNumber>
  2514. <FileType>1</FileType>
  2515. <tvExp>0</tvExp>
  2516. <tvExpOptDlg>0</tvExpOptDlg>
  2517. <bDave2>0</bDave2>
  2518. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.NumericValue.c</PathWithFileName>
  2519. <FilenameWithoutPath>uavcan.protocol.param.NumericValue.c</FilenameWithoutPath>
  2520. <RteFlg>0</RteFlg>
  2521. <bShared>0</bShared>
  2522. </File>
  2523. <File>
  2524. <GroupNumber>12</GroupNumber>
  2525. <FileNumber>174</FileNumber>
  2526. <FileType>1</FileType>
  2527. <tvExp>0</tvExp>
  2528. <tvExpOptDlg>0</tvExpOptDlg>
  2529. <bDave2>0</bDave2>
  2530. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.param.Value.c</PathWithFileName>
  2531. <FilenameWithoutPath>uavcan.protocol.param.Value.c</FilenameWithoutPath>
  2532. <RteFlg>0</RteFlg>
  2533. <bShared>0</bShared>
  2534. </File>
  2535. <File>
  2536. <GroupNumber>12</GroupNumber>
  2537. <FileNumber>175</FileNumber>
  2538. <FileType>1</FileType>
  2539. <tvExp>0</tvExp>
  2540. <tvExpOptDlg>0</tvExpOptDlg>
  2541. <bDave2>0</bDave2>
  2542. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.RestartNode_req.c</PathWithFileName>
  2543. <FilenameWithoutPath>uavcan.protocol.RestartNode_req.c</FilenameWithoutPath>
  2544. <RteFlg>0</RteFlg>
  2545. <bShared>0</bShared>
  2546. </File>
  2547. <File>
  2548. <GroupNumber>12</GroupNumber>
  2549. <FileNumber>176</FileNumber>
  2550. <FileType>1</FileType>
  2551. <tvExp>0</tvExp>
  2552. <tvExpOptDlg>0</tvExpOptDlg>
  2553. <bDave2>0</bDave2>
  2554. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.RestartNode_res.c</PathWithFileName>
  2555. <FilenameWithoutPath>uavcan.protocol.RestartNode_res.c</FilenameWithoutPath>
  2556. <RteFlg>0</RteFlg>
  2557. <bShared>0</bShared>
  2558. </File>
  2559. <File>
  2560. <GroupNumber>12</GroupNumber>
  2561. <FileNumber>177</FileNumber>
  2562. <FileType>1</FileType>
  2563. <tvExp>0</tvExp>
  2564. <tvExpOptDlg>0</tvExpOptDlg>
  2565. <bDave2>0</bDave2>
  2566. <PathWithFileName>..\dsdlc_generated\src\uavcan.protocol.SoftwareVersion.c</PathWithFileName>
  2567. <FilenameWithoutPath>uavcan.protocol.SoftwareVersion.c</FilenameWithoutPath>
  2568. <RteFlg>0</RteFlg>
  2569. <bShared>0</bShared>
  2570. </File>
  2571. <File>
  2572. <GroupNumber>12</GroupNumber>
  2573. <FileNumber>178</FileNumber>
  2574. <FileType>1</FileType>
  2575. <tvExp>0</tvExp>
  2576. <tvExpOptDlg>0</tvExpOptDlg>
  2577. <bDave2>0</bDave2>
  2578. <PathWithFileName>..\dsdlc_generated\src\uavcan.Timestamp.c</PathWithFileName>
  2579. <FilenameWithoutPath>uavcan.Timestamp.c</FilenameWithoutPath>
  2580. <RteFlg>0</RteFlg>
  2581. <bShared>0</bShared>
  2582. </File>
  2583. <File>
  2584. <GroupNumber>12</GroupNumber>
  2585. <FileNumber>179</FileNumber>
  2586. <FileType>1</FileType>
  2587. <tvExp>0</tvExp>
  2588. <tvExpOptDlg>0</tvExpOptDlg>
  2589. <bDave2>0</bDave2>
  2590. <PathWithFileName>..\dsdlc_generated\src\uavcan.tunnel.Broadcast.c</PathWithFileName>
  2591. <FilenameWithoutPath>uavcan.tunnel.Broadcast.c</FilenameWithoutPath>
  2592. <RteFlg>0</RteFlg>
  2593. <bShared>0</bShared>
  2594. </File>
  2595. <File>
  2596. <GroupNumber>12</GroupNumber>
  2597. <FileNumber>180</FileNumber>
  2598. <FileType>1</FileType>
  2599. <tvExp>0</tvExp>
  2600. <tvExpOptDlg>0</tvExpOptDlg>
  2601. <bDave2>0</bDave2>
  2602. <PathWithFileName>..\dsdlc_generated\src\uavcan.tunnel.Call_req.c</PathWithFileName>
  2603. <FilenameWithoutPath>uavcan.tunnel.Call_req.c</FilenameWithoutPath>
  2604. <RteFlg>0</RteFlg>
  2605. <bShared>0</bShared>
  2606. </File>
  2607. <File>
  2608. <GroupNumber>12</GroupNumber>
  2609. <FileNumber>181</FileNumber>
  2610. <FileType>1</FileType>
  2611. <tvExp>0</tvExp>
  2612. <tvExpOptDlg>0</tvExpOptDlg>
  2613. <bDave2>0</bDave2>
  2614. <PathWithFileName>..\dsdlc_generated\src\uavcan.tunnel.Call_res.c</PathWithFileName>
  2615. <FilenameWithoutPath>uavcan.tunnel.Call_res.c</FilenameWithoutPath>
  2616. <RteFlg>0</RteFlg>
  2617. <bShared>0</bShared>
  2618. </File>
  2619. <File>
  2620. <GroupNumber>12</GroupNumber>
  2621. <FileNumber>182</FileNumber>
  2622. <FileType>1</FileType>
  2623. <tvExp>0</tvExp>
  2624. <tvExpOptDlg>0</tvExpOptDlg>
  2625. <bDave2>0</bDave2>
  2626. <PathWithFileName>..\dsdlc_generated\src\uavcan.tunnel.Protocol.c</PathWithFileName>
  2627. <FilenameWithoutPath>uavcan.tunnel.Protocol.c</FilenameWithoutPath>
  2628. <RteFlg>0</RteFlg>
  2629. <bShared>0</bShared>
  2630. </File>
  2631. <File>
  2632. <GroupNumber>12</GroupNumber>
  2633. <FileNumber>183</FileNumber>
  2634. <FileType>1</FileType>
  2635. <tvExp>0</tvExp>
  2636. <tvExpOptDlg>0</tvExpOptDlg>
  2637. <bDave2>0</bDave2>
  2638. <PathWithFileName>..\dsdlc_generated\src\uavcan.tunnel.SerialConfig.c</PathWithFileName>
  2639. <FilenameWithoutPath>uavcan.tunnel.SerialConfig.c</FilenameWithoutPath>
  2640. <RteFlg>0</RteFlg>
  2641. <bShared>0</bShared>
  2642. </File>
  2643. <File>
  2644. <GroupNumber>12</GroupNumber>
  2645. <FileNumber>184</FileNumber>
  2646. <FileType>1</FileType>
  2647. <tvExp>0</tvExp>
  2648. <tvExpOptDlg>0</tvExpOptDlg>
  2649. <bDave2>0</bDave2>
  2650. <PathWithFileName>..\dsdlc_generated\src\uavcan.tunnel.Targetted.c</PathWithFileName>
  2651. <FilenameWithoutPath>uavcan.tunnel.Targetted.c</FilenameWithoutPath>
  2652. <RteFlg>0</RteFlg>
  2653. <bShared>0</bShared>
  2654. </File>
  2655. <File>
  2656. <GroupNumber>12</GroupNumber>
  2657. <FileNumber>185</FileNumber>
  2658. <FileType>1</FileType>
  2659. <tvExp>0</tvExp>
  2660. <tvExpOptDlg>0</tvExpOptDlg>
  2661. <bDave2>0</bDave2>
  2662. <PathWithFileName>..\dsdlc_generated\src\vk_radar.radar.RadarObstacle.c</PathWithFileName>
  2663. <FilenameWithoutPath>vk_radar.radar.RadarObstacle.c</FilenameWithoutPath>
  2664. <RteFlg>0</RteFlg>
  2665. <bShared>0</bShared>
  2666. </File>
  2667. <File>
  2668. <GroupNumber>12</GroupNumber>
  2669. <FileNumber>186</FileNumber>
  2670. <FileType>1</FileType>
  2671. <tvExp>0</tvExp>
  2672. <tvExpOptDlg>0</tvExpOptDlg>
  2673. <bDave2>0</bDave2>
  2674. <PathWithFileName>..\dsdlc_generated\src\vk_radar.radar.TerrainProfile.c</PathWithFileName>
  2675. <FilenameWithoutPath>vk_radar.radar.TerrainProfile.c</FilenameWithoutPath>
  2676. <RteFlg>0</RteFlg>
  2677. <bShared>0</bShared>
  2678. </File>
  2679. <File>
  2680. <GroupNumber>12</GroupNumber>
  2681. <FileNumber>187</FileNumber>
  2682. <FileType>1</FileType>
  2683. <tvExp>0</tvExp>
  2684. <tvExpOptDlg>0</tvExpOptDlg>
  2685. <bDave2>0</bDave2>
  2686. <PathWithFileName>..\dsdlc_generated\src\vk_radar.radar.VehicleState.c</PathWithFileName>
  2687. <FilenameWithoutPath>vk_radar.radar.VehicleState.c</FilenameWithoutPath>
  2688. <RteFlg>0</RteFlg>
  2689. <bShared>0</bShared>
  2690. </File>
  2691. <File>
  2692. <GroupNumber>12</GroupNumber>
  2693. <FileNumber>188</FileNumber>
  2694. <FileType>1</FileType>
  2695. <tvExp>0</tvExp>
  2696. <tvExpOptDlg>0</tvExpOptDlg>
  2697. <bDave2>0</bDave2>
  2698. <PathWithFileName>..\..\dronecan\libcanard-master\canard.c</PathWithFileName>
  2699. <FilenameWithoutPath>canard.c</FilenameWithoutPath>
  2700. <RteFlg>0</RteFlg>
  2701. <bShared>0</bShared>
  2702. </File>
  2703. </Group>
  2704. <Group>
  2705. <GroupName>finsh</GroupName>
  2706. <tvExp>0</tvExp>
  2707. <tvExpOptDlg>0</tvExpOptDlg>
  2708. <cbSel>0</cbSel>
  2709. <RteFlg>0</RteFlg>
  2710. <File>
  2711. <GroupNumber>13</GroupNumber>
  2712. <FileNumber>189</FileNumber>
  2713. <FileType>1</FileType>
  2714. <tvExp>0</tvExp>
  2715. <tvExpOptDlg>0</tvExpOptDlg>
  2716. <bDave2>0</bDave2>
  2717. <PathWithFileName>..\components\finsh\cmd.c</PathWithFileName>
  2718. <FilenameWithoutPath>cmd.c</FilenameWithoutPath>
  2719. <RteFlg>0</RteFlg>
  2720. <bShared>0</bShared>
  2721. </File>
  2722. <File>
  2723. <GroupNumber>13</GroupNumber>
  2724. <FileNumber>190</FileNumber>
  2725. <FileType>1</FileType>
  2726. <tvExp>0</tvExp>
  2727. <tvExpOptDlg>0</tvExpOptDlg>
  2728. <bDave2>0</bDave2>
  2729. <PathWithFileName>..\components\finsh\finsh_compiler.c</PathWithFileName>
  2730. <FilenameWithoutPath>finsh_compiler.c</FilenameWithoutPath>
  2731. <RteFlg>0</RteFlg>
  2732. <bShared>0</bShared>
  2733. </File>
  2734. <File>
  2735. <GroupNumber>13</GroupNumber>
  2736. <FileNumber>191</FileNumber>
  2737. <FileType>1</FileType>
  2738. <tvExp>0</tvExp>
  2739. <tvExpOptDlg>0</tvExpOptDlg>
  2740. <bDave2>0</bDave2>
  2741. <PathWithFileName>..\components\finsh\finsh_error.c</PathWithFileName>
  2742. <FilenameWithoutPath>finsh_error.c</FilenameWithoutPath>
  2743. <RteFlg>0</RteFlg>
  2744. <bShared>0</bShared>
  2745. </File>
  2746. <File>
  2747. <GroupNumber>13</GroupNumber>
  2748. <FileNumber>192</FileNumber>
  2749. <FileType>1</FileType>
  2750. <tvExp>0</tvExp>
  2751. <tvExpOptDlg>0</tvExpOptDlg>
  2752. <bDave2>0</bDave2>
  2753. <PathWithFileName>..\components\finsh\finsh_heap.c</PathWithFileName>
  2754. <FilenameWithoutPath>finsh_heap.c</FilenameWithoutPath>
  2755. <RteFlg>0</RteFlg>
  2756. <bShared>0</bShared>
  2757. </File>
  2758. <File>
  2759. <GroupNumber>13</GroupNumber>
  2760. <FileNumber>193</FileNumber>
  2761. <FileType>1</FileType>
  2762. <tvExp>0</tvExp>
  2763. <tvExpOptDlg>0</tvExpOptDlg>
  2764. <bDave2>0</bDave2>
  2765. <PathWithFileName>..\components\finsh\finsh_init.c</PathWithFileName>
  2766. <FilenameWithoutPath>finsh_init.c</FilenameWithoutPath>
  2767. <RteFlg>0</RteFlg>
  2768. <bShared>0</bShared>
  2769. </File>
  2770. <File>
  2771. <GroupNumber>13</GroupNumber>
  2772. <FileNumber>194</FileNumber>
  2773. <FileType>1</FileType>
  2774. <tvExp>0</tvExp>
  2775. <tvExpOptDlg>0</tvExpOptDlg>
  2776. <bDave2>0</bDave2>
  2777. <PathWithFileName>..\components\finsh\finsh_node.c</PathWithFileName>
  2778. <FilenameWithoutPath>finsh_node.c</FilenameWithoutPath>
  2779. <RteFlg>0</RteFlg>
  2780. <bShared>0</bShared>
  2781. </File>
  2782. <File>
  2783. <GroupNumber>13</GroupNumber>
  2784. <FileNumber>195</FileNumber>
  2785. <FileType>1</FileType>
  2786. <tvExp>0</tvExp>
  2787. <tvExpOptDlg>0</tvExpOptDlg>
  2788. <bDave2>0</bDave2>
  2789. <PathWithFileName>..\components\finsh\finsh_ops.c</PathWithFileName>
  2790. <FilenameWithoutPath>finsh_ops.c</FilenameWithoutPath>
  2791. <RteFlg>0</RteFlg>
  2792. <bShared>0</bShared>
  2793. </File>
  2794. <File>
  2795. <GroupNumber>13</GroupNumber>
  2796. <FileNumber>196</FileNumber>
  2797. <FileType>1</FileType>
  2798. <tvExp>0</tvExp>
  2799. <tvExpOptDlg>0</tvExpOptDlg>
  2800. <bDave2>0</bDave2>
  2801. <PathWithFileName>..\components\finsh\finsh_parser.c</PathWithFileName>
  2802. <FilenameWithoutPath>finsh_parser.c</FilenameWithoutPath>
  2803. <RteFlg>0</RteFlg>
  2804. <bShared>0</bShared>
  2805. </File>
  2806. <File>
  2807. <GroupNumber>13</GroupNumber>
  2808. <FileNumber>197</FileNumber>
  2809. <FileType>1</FileType>
  2810. <tvExp>0</tvExp>
  2811. <tvExpOptDlg>0</tvExpOptDlg>
  2812. <bDave2>0</bDave2>
  2813. <PathWithFileName>..\components\finsh\finsh_token.c</PathWithFileName>
  2814. <FilenameWithoutPath>finsh_token.c</FilenameWithoutPath>
  2815. <RteFlg>0</RteFlg>
  2816. <bShared>0</bShared>
  2817. </File>
  2818. <File>
  2819. <GroupNumber>13</GroupNumber>
  2820. <FileNumber>198</FileNumber>
  2821. <FileType>1</FileType>
  2822. <tvExp>0</tvExp>
  2823. <tvExpOptDlg>0</tvExpOptDlg>
  2824. <bDave2>0</bDave2>
  2825. <PathWithFileName>..\components\finsh\finsh_var.c</PathWithFileName>
  2826. <FilenameWithoutPath>finsh_var.c</FilenameWithoutPath>
  2827. <RteFlg>0</RteFlg>
  2828. <bShared>0</bShared>
  2829. </File>
  2830. <File>
  2831. <GroupNumber>13</GroupNumber>
  2832. <FileNumber>199</FileNumber>
  2833. <FileType>1</FileType>
  2834. <tvExp>0</tvExp>
  2835. <tvExpOptDlg>0</tvExpOptDlg>
  2836. <bDave2>0</bDave2>
  2837. <PathWithFileName>..\components\finsh\finsh_vm.c</PathWithFileName>
  2838. <FilenameWithoutPath>finsh_vm.c</FilenameWithoutPath>
  2839. <RteFlg>0</RteFlg>
  2840. <bShared>0</bShared>
  2841. </File>
  2842. <File>
  2843. <GroupNumber>13</GroupNumber>
  2844. <FileNumber>200</FileNumber>
  2845. <FileType>1</FileType>
  2846. <tvExp>0</tvExp>
  2847. <tvExpOptDlg>0</tvExpOptDlg>
  2848. <bDave2>0</bDave2>
  2849. <PathWithFileName>..\components\finsh\msh.c</PathWithFileName>
  2850. <FilenameWithoutPath>msh.c</FilenameWithoutPath>
  2851. <RteFlg>0</RteFlg>
  2852. <bShared>0</bShared>
  2853. </File>
  2854. <File>
  2855. <GroupNumber>13</GroupNumber>
  2856. <FileNumber>201</FileNumber>
  2857. <FileType>1</FileType>
  2858. <tvExp>0</tvExp>
  2859. <tvExpOptDlg>0</tvExpOptDlg>
  2860. <bDave2>0</bDave2>
  2861. <PathWithFileName>..\components\finsh\msh_file.c</PathWithFileName>
  2862. <FilenameWithoutPath>msh_file.c</FilenameWithoutPath>
  2863. <RteFlg>0</RteFlg>
  2864. <bShared>0</bShared>
  2865. </File>
  2866. <File>
  2867. <GroupNumber>13</GroupNumber>
  2868. <FileNumber>202</FileNumber>
  2869. <FileType>1</FileType>
  2870. <tvExp>0</tvExp>
  2871. <tvExpOptDlg>0</tvExpOptDlg>
  2872. <bDave2>0</bDave2>
  2873. <PathWithFileName>..\components\finsh\shell.c</PathWithFileName>
  2874. <FilenameWithoutPath>shell.c</FilenameWithoutPath>
  2875. <RteFlg>0</RteFlg>
  2876. <bShared>0</bShared>
  2877. </File>
  2878. <File>
  2879. <GroupNumber>13</GroupNumber>
  2880. <FileNumber>203</FileNumber>
  2881. <FileType>1</FileType>
  2882. <tvExp>0</tvExp>
  2883. <tvExpOptDlg>0</tvExpOptDlg>
  2884. <bDave2>0</bDave2>
  2885. <PathWithFileName>..\components\finsh\symbol.c</PathWithFileName>
  2886. <FilenameWithoutPath>symbol.c</FilenameWithoutPath>
  2887. <RteFlg>0</RteFlg>
  2888. <bShared>0</bShared>
  2889. </File>
  2890. </Group>
  2891. </ProjectOpt>