dtu_simple.uvoptx 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
  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>dtu_simple</TargetName>
  21. <ToolsetNumber>0x4</ToolsetNumber>
  22. <ToolsetName>ARM-ADS</ToolsetName>
  23. <TargetOption>
  24. <CLKADS>25000000</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>3</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>BIN\CMSIS_AGDI.dll</pMon>
  113. </DebugOpt>
  114. <TargetDriverDllRegistry>
  115. <SetRegEntry>
  116. <Number>0</Number>
  117. <Key>CMSIS_AGDI</Key>
  118. <Name>-X"WCH CMSIS-DAP" -UECBF8F0671A4 -O206 -S8 -C0 -P00000000 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO65554 -TC10000000 -TT10000000 -TP20 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0GD32F30x_CL.FLM -FS08000000 -FL040000 -FP0($$Device:GD32F307RC$Flash\GD32F30x_CL.FLM)</Name>
  119. </SetRegEntry>
  120. <SetRegEntry>
  121. <Number>0</Number>
  122. <Key>ARMRTXEVENTFLAGS</Key>
  123. <Name>-L70 -Z18 -C0 -M0 -T1</Name>
  124. </SetRegEntry>
  125. <SetRegEntry>
  126. <Number>0</Number>
  127. <Key>DLGTARM</Key>
  128. <Name>(1010=1130,16,1580,573,0)(1007=585,112,772,387,0)(1008=-1,-1,-1,-1,0)(1009=1306,14,1564,602,0)(1012=552,159,1029,474,0)</Name>
  129. </SetRegEntry>
  130. <SetRegEntry>
  131. <Number>0</Number>
  132. <Key>ARMDBGFLAGS</Key>
  133. <Name></Name>
  134. </SetRegEntry>
  135. <SetRegEntry>
  136. <Number>0</Number>
  137. <Key>DLGUARM</Key>
  138. <Name></Name>
  139. </SetRegEntry>
  140. <SetRegEntry>
  141. <Number>0</Number>
  142. <Key>JL2CM3</Key>
  143. <Name>-U69406807 -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 -FO7 -FD20000000 -FC1000 -FN1 -FF0GD32F30x_CL.FLM -FS08000000 -FL040000 -FP0($$Device:GD32F307RC$Flash\GD32F30x_CL.FLM)</Name>
  144. </SetRegEntry>
  145. <SetRegEntry>
  146. <Number>0</Number>
  147. <Key>UL2CM3</Key>
  148. <Name>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0GD32F30x_CL -FS08000000 -FL040000 -FP0($$Device:GD32F307RC$Flash\GD32F30x_CL.FLM))</Name>
  149. </SetRegEntry>
  150. </TargetDriverDllRegistry>
  151. <Breakpoint/>
  152. <MemoryWindow1>
  153. <Mm>
  154. <WinNumber>1</WinNumber>
  155. <SubType>8</SubType>
  156. <ItemText>dataBuf</ItemText>
  157. <AccSizeX>0</AccSizeX>
  158. </Mm>
  159. </MemoryWindow1>
  160. <Tracepoint>
  161. <THDelay>0</THDelay>
  162. </Tracepoint>
  163. <DebugFlag>
  164. <trace>0</trace>
  165. <periodic>0</periodic>
  166. <aLwin>1</aLwin>
  167. <aCover>0</aCover>
  168. <aSer1>0</aSer1>
  169. <aSer2>0</aSer2>
  170. <aPa>0</aPa>
  171. <viewmode>1</viewmode>
  172. <vrSel>0</vrSel>
  173. <aSym>0</aSym>
  174. <aTbox>0</aTbox>
  175. <AscS1>0</AscS1>
  176. <AscS2>0</AscS2>
  177. <AscS3>0</AscS3>
  178. <aSer3>0</aSer3>
  179. <eProf>0</eProf>
  180. <aLa>0</aLa>
  181. <aPa1>0</aPa1>
  182. <AscS4>0</AscS4>
  183. <aSer4>0</aSer4>
  184. <StkLoc>0</StkLoc>
  185. <TrcWin>0</TrcWin>
  186. <newCpu>0</newCpu>
  187. <uProt>0</uProt>
  188. </DebugFlag>
  189. <LintExecutable></LintExecutable>
  190. <LintConfigFile></LintConfigFile>
  191. <bLintAuto>0</bLintAuto>
  192. <bAutoGenD>0</bAutoGenD>
  193. <LntExFlags>0</LntExFlags>
  194. <pMisraName></pMisraName>
  195. <pszMrule></pszMrule>
  196. <pSingCmds></pSingCmds>
  197. <pMultCmds></pMultCmds>
  198. <pMisraNamep></pMisraNamep>
  199. <pszMrulep></pszMrulep>
  200. <pSingCmdsp></pSingCmdsp>
  201. <pMultCmdsp></pMultCmdsp>
  202. </TargetOption>
  203. </Target>
  204. <Group>
  205. <GroupName>USR</GroupName>
  206. <tvExp>0</tvExp>
  207. <tvExpOptDlg>0</tvExpOptDlg>
  208. <cbSel>0</cbSel>
  209. <RteFlg>0</RteFlg>
  210. <File>
  211. <GroupNumber>1</GroupNumber>
  212. <FileNumber>1</FileNumber>
  213. <FileType>1</FileType>
  214. <tvExp>0</tvExp>
  215. <tvExpOptDlg>0</tvExpOptDlg>
  216. <bDave2>0</bDave2>
  217. <PathWithFileName>..\USR\source\gd32f30x_it.c</PathWithFileName>
  218. <FilenameWithoutPath>gd32f30x_it.c</FilenameWithoutPath>
  219. <RteFlg>0</RteFlg>
  220. <bShared>0</bShared>
  221. </File>
  222. <File>
  223. <GroupNumber>1</GroupNumber>
  224. <FileNumber>2</FileNumber>
  225. <FileType>1</FileType>
  226. <tvExp>0</tvExp>
  227. <tvExpOptDlg>0</tvExpOptDlg>
  228. <bDave2>0</bDave2>
  229. <PathWithFileName>..\USR\source\hello_gigadevice.c</PathWithFileName>
  230. <FilenameWithoutPath>hello_gigadevice.c</FilenameWithoutPath>
  231. <RteFlg>0</RteFlg>
  232. <bShared>0</bShared>
  233. </File>
  234. <File>
  235. <GroupNumber>1</GroupNumber>
  236. <FileNumber>3</FileNumber>
  237. <FileType>1</FileType>
  238. <tvExp>0</tvExp>
  239. <tvExpOptDlg>0</tvExpOptDlg>
  240. <bDave2>0</bDave2>
  241. <PathWithFileName>..\USR\source\main.c</PathWithFileName>
  242. <FilenameWithoutPath>main.c</FilenameWithoutPath>
  243. <RteFlg>0</RteFlg>
  244. <bShared>0</bShared>
  245. </File>
  246. <File>
  247. <GroupNumber>1</GroupNumber>
  248. <FileNumber>4</FileNumber>
  249. <FileType>1</FileType>
  250. <tvExp>0</tvExp>
  251. <tvExpOptDlg>0</tvExpOptDlg>
  252. <bDave2>0</bDave2>
  253. <PathWithFileName>..\USR\source\tcp_client.c</PathWithFileName>
  254. <FilenameWithoutPath>tcp_client.c</FilenameWithoutPath>
  255. <RteFlg>0</RteFlg>
  256. <bShared>0</bShared>
  257. </File>
  258. </Group>
  259. <Group>
  260. <GroupName>System</GroupName>
  261. <tvExp>1</tvExp>
  262. <tvExpOptDlg>0</tvExpOptDlg>
  263. <cbSel>0</cbSel>
  264. <RteFlg>0</RteFlg>
  265. <File>
  266. <GroupNumber>2</GroupNumber>
  267. <FileNumber>5</FileNumber>
  268. <FileType>1</FileType>
  269. <tvExp>0</tvExp>
  270. <tvExpOptDlg>0</tvExpOptDlg>
  271. <bDave2>0</bDave2>
  272. <PathWithFileName>..\System\source\sys_mqtt.c</PathWithFileName>
  273. <FilenameWithoutPath>sys_mqtt.c</FilenameWithoutPath>
  274. <RteFlg>0</RteFlg>
  275. <bShared>0</bShared>
  276. </File>
  277. <File>
  278. <GroupNumber>2</GroupNumber>
  279. <FileNumber>6</FileNumber>
  280. <FileType>1</FileType>
  281. <tvExp>0</tvExp>
  282. <tvExpOptDlg>0</tvExpOptDlg>
  283. <bDave2>0</bDave2>
  284. <PathWithFileName>..\System\source\httpclient.c</PathWithFileName>
  285. <FilenameWithoutPath>httpclient.c</FilenameWithoutPath>
  286. <RteFlg>0</RteFlg>
  287. <bShared>0</bShared>
  288. </File>
  289. <File>
  290. <GroupNumber>2</GroupNumber>
  291. <FileNumber>7</FileNumber>
  292. <FileType>1</FileType>
  293. <tvExp>0</tvExp>
  294. <tvExpOptDlg>0</tvExpOptDlg>
  295. <bDave2>0</bDave2>
  296. <PathWithFileName>..\System\source\tcp_server.c</PathWithFileName>
  297. <FilenameWithoutPath>tcp_server.c</FilenameWithoutPath>
  298. <RteFlg>0</RteFlg>
  299. <bShared>0</bShared>
  300. </File>
  301. <File>
  302. <GroupNumber>2</GroupNumber>
  303. <FileNumber>8</FileNumber>
  304. <FileType>1</FileType>
  305. <tvExp>0</tvExp>
  306. <tvExpOptDlg>0</tvExpOptDlg>
  307. <bDave2>0</bDave2>
  308. <PathWithFileName>..\System\source\log.c</PathWithFileName>
  309. <FilenameWithoutPath>log.c</FilenameWithoutPath>
  310. <RteFlg>0</RteFlg>
  311. <bShared>0</bShared>
  312. </File>
  313. <File>
  314. <GroupNumber>2</GroupNumber>
  315. <FileNumber>9</FileNumber>
  316. <FileType>1</FileType>
  317. <tvExp>0</tvExp>
  318. <tvExpOptDlg>0</tvExpOptDlg>
  319. <bDave2>0</bDave2>
  320. <PathWithFileName>..\System\source\udp.c</PathWithFileName>
  321. <FilenameWithoutPath>udp.c</FilenameWithoutPath>
  322. <RteFlg>0</RteFlg>
  323. <bShared>0</bShared>
  324. </File>
  325. <File>
  326. <GroupNumber>2</GroupNumber>
  327. <FileNumber>10</FileNumber>
  328. <FileType>1</FileType>
  329. <tvExp>0</tvExp>
  330. <tvExpOptDlg>0</tvExpOptDlg>
  331. <bDave2>0</bDave2>
  332. <PathWithFileName>..\System\source\gd32_flash.c</PathWithFileName>
  333. <FilenameWithoutPath>gd32_flash.c</FilenameWithoutPath>
  334. <RteFlg>0</RteFlg>
  335. <bShared>0</bShared>
  336. </File>
  337. <File>
  338. <GroupNumber>2</GroupNumber>
  339. <FileNumber>11</FileNumber>
  340. <FileType>1</FileType>
  341. <tvExp>0</tvExp>
  342. <tvExpOptDlg>0</tvExpOptDlg>
  343. <bDave2>0</bDave2>
  344. <PathWithFileName>..\System\source\sys_http.c</PathWithFileName>
  345. <FilenameWithoutPath>sys_http.c</FilenameWithoutPath>
  346. <RteFlg>0</RteFlg>
  347. <bShared>0</bShared>
  348. </File>
  349. <File>
  350. <GroupNumber>2</GroupNumber>
  351. <FileNumber>12</FileNumber>
  352. <FileType>1</FileType>
  353. <tvExp>0</tvExp>
  354. <tvExpOptDlg>0</tvExpOptDlg>
  355. <bDave2>0</bDave2>
  356. <PathWithFileName>..\System\source\data_task.c</PathWithFileName>
  357. <FilenameWithoutPath>data_task.c</FilenameWithoutPath>
  358. <RteFlg>0</RteFlg>
  359. <bShared>0</bShared>
  360. </File>
  361. <File>
  362. <GroupNumber>2</GroupNumber>
  363. <FileNumber>13</FileNumber>
  364. <FileType>1</FileType>
  365. <tvExp>0</tvExp>
  366. <tvExpOptDlg>0</tvExpOptDlg>
  367. <bDave2>0</bDave2>
  368. <PathWithFileName>..\System\source\gateway_message.c</PathWithFileName>
  369. <FilenameWithoutPath>gateway_message.c</FilenameWithoutPath>
  370. <RteFlg>0</RteFlg>
  371. <bShared>0</bShared>
  372. </File>
  373. <File>
  374. <GroupNumber>2</GroupNumber>
  375. <FileNumber>14</FileNumber>
  376. <FileType>1</FileType>
  377. <tvExp>0</tvExp>
  378. <tvExpOptDlg>0</tvExpOptDlg>
  379. <bDave2>0</bDave2>
  380. <PathWithFileName>..\System\source\updata.c</PathWithFileName>
  381. <FilenameWithoutPath>updata.c</FilenameWithoutPath>
  382. <RteFlg>0</RteFlg>
  383. <bShared>0</bShared>
  384. </File>
  385. </Group>
  386. <Group>
  387. <GroupName>CMSIS</GroupName>
  388. <tvExp>0</tvExp>
  389. <tvExpOptDlg>0</tvExpOptDlg>
  390. <cbSel>0</cbSel>
  391. <RteFlg>0</RteFlg>
  392. <File>
  393. <GroupNumber>3</GroupNumber>
  394. <FileNumber>15</FileNumber>
  395. <FileType>1</FileType>
  396. <tvExp>0</tvExp>
  397. <tvExpOptDlg>0</tvExpOptDlg>
  398. <bDave2>0</bDave2>
  399. <PathWithFileName>..\CMSIS\source\system_gd32f30x.c</PathWithFileName>
  400. <FilenameWithoutPath>system_gd32f30x.c</FilenameWithoutPath>
  401. <RteFlg>0</RteFlg>
  402. <bShared>0</bShared>
  403. </File>
  404. </Group>
  405. <Group>
  406. <GroupName>Startup</GroupName>
  407. <tvExp>0</tvExp>
  408. <tvExpOptDlg>0</tvExpOptDlg>
  409. <cbSel>0</cbSel>
  410. <RteFlg>0</RteFlg>
  411. <File>
  412. <GroupNumber>4</GroupNumber>
  413. <FileNumber>16</FileNumber>
  414. <FileType>2</FileType>
  415. <tvExp>0</tvExp>
  416. <tvExpOptDlg>0</tvExpOptDlg>
  417. <bDave2>0</bDave2>
  418. <PathWithFileName>..\CMSIS\source\startup_gd32f30x_cl.s</PathWithFileName>
  419. <FilenameWithoutPath>startup_gd32f30x_cl.s</FilenameWithoutPath>
  420. <RteFlg>0</RteFlg>
  421. <bShared>0</bShared>
  422. </File>
  423. </Group>
  424. <Group>
  425. <GroupName>HW</GroupName>
  426. <tvExp>1</tvExp>
  427. <tvExpOptDlg>0</tvExpOptDlg>
  428. <cbSel>0</cbSel>
  429. <RteFlg>0</RteFlg>
  430. <File>
  431. <GroupNumber>5</GroupNumber>
  432. <FileNumber>17</FileNumber>
  433. <FileType>1</FileType>
  434. <tvExp>0</tvExp>
  435. <tvExpOptDlg>0</tvExpOptDlg>
  436. <bDave2>0</bDave2>
  437. <PathWithFileName>..\HW\source\led.c</PathWithFileName>
  438. <FilenameWithoutPath>led.c</FilenameWithoutPath>
  439. <RteFlg>0</RteFlg>
  440. <bShared>0</bShared>
  441. </File>
  442. <File>
  443. <GroupNumber>5</GroupNumber>
  444. <FileNumber>18</FileNumber>
  445. <FileType>1</FileType>
  446. <tvExp>0</tvExp>
  447. <tvExpOptDlg>0</tvExpOptDlg>
  448. <bDave2>0</bDave2>
  449. <PathWithFileName>..\HW\source\usart.c</PathWithFileName>
  450. <FilenameWithoutPath>usart.c</FilenameWithoutPath>
  451. <RteFlg>0</RteFlg>
  452. <bShared>0</bShared>
  453. </File>
  454. <File>
  455. <GroupNumber>5</GroupNumber>
  456. <FileNumber>19</FileNumber>
  457. <FileType>1</FileType>
  458. <tvExp>0</tvExp>
  459. <tvExpOptDlg>0</tvExpOptDlg>
  460. <bDave2>0</bDave2>
  461. <PathWithFileName>..\HW\source\hd_eth.c</PathWithFileName>
  462. <FilenameWithoutPath>hd_eth.c</FilenameWithoutPath>
  463. <RteFlg>0</RteFlg>
  464. <bShared>0</bShared>
  465. </File>
  466. <File>
  467. <GroupNumber>5</GroupNumber>
  468. <FileNumber>20</FileNumber>
  469. <FileType>1</FileType>
  470. <tvExp>0</tvExp>
  471. <tvExpOptDlg>0</tvExpOptDlg>
  472. <bDave2>0</bDave2>
  473. <PathWithFileName>..\HW\source\netconf.c</PathWithFileName>
  474. <FilenameWithoutPath>netconf.c</FilenameWithoutPath>
  475. <RteFlg>0</RteFlg>
  476. <bShared>0</bShared>
  477. </File>
  478. <File>
  479. <GroupNumber>5</GroupNumber>
  480. <FileNumber>21</FileNumber>
  481. <FileType>1</FileType>
  482. <tvExp>0</tvExp>
  483. <tvExpOptDlg>0</tvExpOptDlg>
  484. <bDave2>0</bDave2>
  485. <PathWithFileName>..\HW\source\delay.c</PathWithFileName>
  486. <FilenameWithoutPath>delay.c</FilenameWithoutPath>
  487. <RteFlg>0</RteFlg>
  488. <bShared>0</bShared>
  489. </File>
  490. <File>
  491. <GroupNumber>5</GroupNumber>
  492. <FileNumber>22</FileNumber>
  493. <FileType>1</FileType>
  494. <tvExp>0</tvExp>
  495. <tvExpOptDlg>0</tvExpOptDlg>
  496. <bDave2>0</bDave2>
  497. <PathWithFileName>..\HW\source\timer.c</PathWithFileName>
  498. <FilenameWithoutPath>timer.c</FilenameWithoutPath>
  499. <RteFlg>0</RteFlg>
  500. <bShared>0</bShared>
  501. </File>
  502. <File>
  503. <GroupNumber>5</GroupNumber>
  504. <FileNumber>23</FileNumber>
  505. <FileType>1</FileType>
  506. <tvExp>0</tvExp>
  507. <tvExpOptDlg>0</tvExpOptDlg>
  508. <bDave2>0</bDave2>
  509. <PathWithFileName>..\HW\source\wwdgt.c</PathWithFileName>
  510. <FilenameWithoutPath>wwdgt.c</FilenameWithoutPath>
  511. <RteFlg>0</RteFlg>
  512. <bShared>0</bShared>
  513. </File>
  514. </Group>
  515. <Group>
  516. <GroupName>LIB</GroupName>
  517. <tvExp>0</tvExp>
  518. <tvExpOptDlg>0</tvExpOptDlg>
  519. <cbSel>0</cbSel>
  520. <RteFlg>0</RteFlg>
  521. <File>
  522. <GroupNumber>6</GroupNumber>
  523. <FileNumber>24</FileNumber>
  524. <FileType>1</FileType>
  525. <tvExp>0</tvExp>
  526. <tvExpOptDlg>0</tvExpOptDlg>
  527. <bDave2>0</bDave2>
  528. <PathWithFileName>..\LIB\Source\gd32f30x_adc.c</PathWithFileName>
  529. <FilenameWithoutPath>gd32f30x_adc.c</FilenameWithoutPath>
  530. <RteFlg>0</RteFlg>
  531. <bShared>0</bShared>
  532. </File>
  533. <File>
  534. <GroupNumber>6</GroupNumber>
  535. <FileNumber>25</FileNumber>
  536. <FileType>1</FileType>
  537. <tvExp>0</tvExp>
  538. <tvExpOptDlg>0</tvExpOptDlg>
  539. <bDave2>0</bDave2>
  540. <PathWithFileName>..\LIB\Source\gd32f30x_bkp.c</PathWithFileName>
  541. <FilenameWithoutPath>gd32f30x_bkp.c</FilenameWithoutPath>
  542. <RteFlg>0</RteFlg>
  543. <bShared>0</bShared>
  544. </File>
  545. <File>
  546. <GroupNumber>6</GroupNumber>
  547. <FileNumber>26</FileNumber>
  548. <FileType>1</FileType>
  549. <tvExp>0</tvExp>
  550. <tvExpOptDlg>0</tvExpOptDlg>
  551. <bDave2>0</bDave2>
  552. <PathWithFileName>..\LIB\Source\gd32f30x_can.c</PathWithFileName>
  553. <FilenameWithoutPath>gd32f30x_can.c</FilenameWithoutPath>
  554. <RteFlg>0</RteFlg>
  555. <bShared>0</bShared>
  556. </File>
  557. <File>
  558. <GroupNumber>6</GroupNumber>
  559. <FileNumber>27</FileNumber>
  560. <FileType>1</FileType>
  561. <tvExp>0</tvExp>
  562. <tvExpOptDlg>0</tvExpOptDlg>
  563. <bDave2>0</bDave2>
  564. <PathWithFileName>..\LIB\Source\gd32f30x_crc.c</PathWithFileName>
  565. <FilenameWithoutPath>gd32f30x_crc.c</FilenameWithoutPath>
  566. <RteFlg>0</RteFlg>
  567. <bShared>0</bShared>
  568. </File>
  569. <File>
  570. <GroupNumber>6</GroupNumber>
  571. <FileNumber>28</FileNumber>
  572. <FileType>1</FileType>
  573. <tvExp>0</tvExp>
  574. <tvExpOptDlg>0</tvExpOptDlg>
  575. <bDave2>0</bDave2>
  576. <PathWithFileName>..\LIB\Source\gd32f30x_ctc.c</PathWithFileName>
  577. <FilenameWithoutPath>gd32f30x_ctc.c</FilenameWithoutPath>
  578. <RteFlg>0</RteFlg>
  579. <bShared>0</bShared>
  580. </File>
  581. <File>
  582. <GroupNumber>6</GroupNumber>
  583. <FileNumber>29</FileNumber>
  584. <FileType>1</FileType>
  585. <tvExp>0</tvExp>
  586. <tvExpOptDlg>0</tvExpOptDlg>
  587. <bDave2>0</bDave2>
  588. <PathWithFileName>..\LIB\Source\gd32f30x_dac.c</PathWithFileName>
  589. <FilenameWithoutPath>gd32f30x_dac.c</FilenameWithoutPath>
  590. <RteFlg>0</RteFlg>
  591. <bShared>0</bShared>
  592. </File>
  593. <File>
  594. <GroupNumber>6</GroupNumber>
  595. <FileNumber>30</FileNumber>
  596. <FileType>1</FileType>
  597. <tvExp>0</tvExp>
  598. <tvExpOptDlg>0</tvExpOptDlg>
  599. <bDave2>0</bDave2>
  600. <PathWithFileName>..\LIB\Source\gd32f30x_dbg.c</PathWithFileName>
  601. <FilenameWithoutPath>gd32f30x_dbg.c</FilenameWithoutPath>
  602. <RteFlg>0</RteFlg>
  603. <bShared>0</bShared>
  604. </File>
  605. <File>
  606. <GroupNumber>6</GroupNumber>
  607. <FileNumber>31</FileNumber>
  608. <FileType>1</FileType>
  609. <tvExp>0</tvExp>
  610. <tvExpOptDlg>0</tvExpOptDlg>
  611. <bDave2>0</bDave2>
  612. <PathWithFileName>..\LIB\Source\gd32f30x_dma.c</PathWithFileName>
  613. <FilenameWithoutPath>gd32f30x_dma.c</FilenameWithoutPath>
  614. <RteFlg>0</RteFlg>
  615. <bShared>0</bShared>
  616. </File>
  617. <File>
  618. <GroupNumber>6</GroupNumber>
  619. <FileNumber>32</FileNumber>
  620. <FileType>1</FileType>
  621. <tvExp>0</tvExp>
  622. <tvExpOptDlg>0</tvExpOptDlg>
  623. <bDave2>0</bDave2>
  624. <PathWithFileName>..\LIB\Source\gd32f30x_enet.c</PathWithFileName>
  625. <FilenameWithoutPath>gd32f30x_enet.c</FilenameWithoutPath>
  626. <RteFlg>0</RteFlg>
  627. <bShared>0</bShared>
  628. </File>
  629. <File>
  630. <GroupNumber>6</GroupNumber>
  631. <FileNumber>33</FileNumber>
  632. <FileType>1</FileType>
  633. <tvExp>0</tvExp>
  634. <tvExpOptDlg>0</tvExpOptDlg>
  635. <bDave2>0</bDave2>
  636. <PathWithFileName>..\LIB\Source\gd32f30x_exmc.c</PathWithFileName>
  637. <FilenameWithoutPath>gd32f30x_exmc.c</FilenameWithoutPath>
  638. <RteFlg>0</RteFlg>
  639. <bShared>0</bShared>
  640. </File>
  641. <File>
  642. <GroupNumber>6</GroupNumber>
  643. <FileNumber>34</FileNumber>
  644. <FileType>1</FileType>
  645. <tvExp>0</tvExp>
  646. <tvExpOptDlg>0</tvExpOptDlg>
  647. <bDave2>0</bDave2>
  648. <PathWithFileName>..\LIB\Source\gd32f30x_exti.c</PathWithFileName>
  649. <FilenameWithoutPath>gd32f30x_exti.c</FilenameWithoutPath>
  650. <RteFlg>0</RteFlg>
  651. <bShared>0</bShared>
  652. </File>
  653. <File>
  654. <GroupNumber>6</GroupNumber>
  655. <FileNumber>35</FileNumber>
  656. <FileType>1</FileType>
  657. <tvExp>0</tvExp>
  658. <tvExpOptDlg>0</tvExpOptDlg>
  659. <bDave2>0</bDave2>
  660. <PathWithFileName>..\LIB\Source\gd32f30x_fmc.c</PathWithFileName>
  661. <FilenameWithoutPath>gd32f30x_fmc.c</FilenameWithoutPath>
  662. <RteFlg>0</RteFlg>
  663. <bShared>0</bShared>
  664. </File>
  665. <File>
  666. <GroupNumber>6</GroupNumber>
  667. <FileNumber>36</FileNumber>
  668. <FileType>1</FileType>
  669. <tvExp>0</tvExp>
  670. <tvExpOptDlg>0</tvExpOptDlg>
  671. <bDave2>0</bDave2>
  672. <PathWithFileName>..\LIB\Source\gd32f30x_fwdgt.c</PathWithFileName>
  673. <FilenameWithoutPath>gd32f30x_fwdgt.c</FilenameWithoutPath>
  674. <RteFlg>0</RteFlg>
  675. <bShared>0</bShared>
  676. </File>
  677. <File>
  678. <GroupNumber>6</GroupNumber>
  679. <FileNumber>37</FileNumber>
  680. <FileType>1</FileType>
  681. <tvExp>0</tvExp>
  682. <tvExpOptDlg>0</tvExpOptDlg>
  683. <bDave2>0</bDave2>
  684. <PathWithFileName>..\LIB\Source\gd32f30x_gpio.c</PathWithFileName>
  685. <FilenameWithoutPath>gd32f30x_gpio.c</FilenameWithoutPath>
  686. <RteFlg>0</RteFlg>
  687. <bShared>0</bShared>
  688. </File>
  689. <File>
  690. <GroupNumber>6</GroupNumber>
  691. <FileNumber>38</FileNumber>
  692. <FileType>1</FileType>
  693. <tvExp>0</tvExp>
  694. <tvExpOptDlg>0</tvExpOptDlg>
  695. <bDave2>0</bDave2>
  696. <PathWithFileName>..\LIB\Source\gd32f30x_i2c.c</PathWithFileName>
  697. <FilenameWithoutPath>gd32f30x_i2c.c</FilenameWithoutPath>
  698. <RteFlg>0</RteFlg>
  699. <bShared>0</bShared>
  700. </File>
  701. <File>
  702. <GroupNumber>6</GroupNumber>
  703. <FileNumber>39</FileNumber>
  704. <FileType>1</FileType>
  705. <tvExp>0</tvExp>
  706. <tvExpOptDlg>0</tvExpOptDlg>
  707. <bDave2>0</bDave2>
  708. <PathWithFileName>..\LIB\Source\gd32f30x_misc.c</PathWithFileName>
  709. <FilenameWithoutPath>gd32f30x_misc.c</FilenameWithoutPath>
  710. <RteFlg>0</RteFlg>
  711. <bShared>0</bShared>
  712. </File>
  713. <File>
  714. <GroupNumber>6</GroupNumber>
  715. <FileNumber>40</FileNumber>
  716. <FileType>1</FileType>
  717. <tvExp>0</tvExp>
  718. <tvExpOptDlg>0</tvExpOptDlg>
  719. <bDave2>0</bDave2>
  720. <PathWithFileName>..\LIB\Source\gd32f30x_pmu.c</PathWithFileName>
  721. <FilenameWithoutPath>gd32f30x_pmu.c</FilenameWithoutPath>
  722. <RteFlg>0</RteFlg>
  723. <bShared>0</bShared>
  724. </File>
  725. <File>
  726. <GroupNumber>6</GroupNumber>
  727. <FileNumber>41</FileNumber>
  728. <FileType>1</FileType>
  729. <tvExp>0</tvExp>
  730. <tvExpOptDlg>0</tvExpOptDlg>
  731. <bDave2>0</bDave2>
  732. <PathWithFileName>..\LIB\Source\gd32f30x_rcu.c</PathWithFileName>
  733. <FilenameWithoutPath>gd32f30x_rcu.c</FilenameWithoutPath>
  734. <RteFlg>0</RteFlg>
  735. <bShared>0</bShared>
  736. </File>
  737. <File>
  738. <GroupNumber>6</GroupNumber>
  739. <FileNumber>42</FileNumber>
  740. <FileType>1</FileType>
  741. <tvExp>0</tvExp>
  742. <tvExpOptDlg>0</tvExpOptDlg>
  743. <bDave2>0</bDave2>
  744. <PathWithFileName>..\LIB\Source\gd32f30x_rtc.c</PathWithFileName>
  745. <FilenameWithoutPath>gd32f30x_rtc.c</FilenameWithoutPath>
  746. <RteFlg>0</RteFlg>
  747. <bShared>0</bShared>
  748. </File>
  749. <File>
  750. <GroupNumber>6</GroupNumber>
  751. <FileNumber>43</FileNumber>
  752. <FileType>1</FileType>
  753. <tvExp>0</tvExp>
  754. <tvExpOptDlg>0</tvExpOptDlg>
  755. <bDave2>0</bDave2>
  756. <PathWithFileName>..\LIB\Source\gd32f30x_sdio.c</PathWithFileName>
  757. <FilenameWithoutPath>gd32f30x_sdio.c</FilenameWithoutPath>
  758. <RteFlg>0</RteFlg>
  759. <bShared>0</bShared>
  760. </File>
  761. <File>
  762. <GroupNumber>6</GroupNumber>
  763. <FileNumber>44</FileNumber>
  764. <FileType>1</FileType>
  765. <tvExp>0</tvExp>
  766. <tvExpOptDlg>0</tvExpOptDlg>
  767. <bDave2>0</bDave2>
  768. <PathWithFileName>..\LIB\Source\gd32f30x_spi.c</PathWithFileName>
  769. <FilenameWithoutPath>gd32f30x_spi.c</FilenameWithoutPath>
  770. <RteFlg>0</RteFlg>
  771. <bShared>0</bShared>
  772. </File>
  773. <File>
  774. <GroupNumber>6</GroupNumber>
  775. <FileNumber>45</FileNumber>
  776. <FileType>1</FileType>
  777. <tvExp>0</tvExp>
  778. <tvExpOptDlg>0</tvExpOptDlg>
  779. <bDave2>0</bDave2>
  780. <PathWithFileName>..\LIB\Source\gd32f30x_timer.c</PathWithFileName>
  781. <FilenameWithoutPath>gd32f30x_timer.c</FilenameWithoutPath>
  782. <RteFlg>0</RteFlg>
  783. <bShared>0</bShared>
  784. </File>
  785. <File>
  786. <GroupNumber>6</GroupNumber>
  787. <FileNumber>46</FileNumber>
  788. <FileType>1</FileType>
  789. <tvExp>0</tvExp>
  790. <tvExpOptDlg>0</tvExpOptDlg>
  791. <bDave2>0</bDave2>
  792. <PathWithFileName>..\LIB\Source\gd32f30x_usart.c</PathWithFileName>
  793. <FilenameWithoutPath>gd32f30x_usart.c</FilenameWithoutPath>
  794. <RteFlg>0</RteFlg>
  795. <bShared>0</bShared>
  796. </File>
  797. <File>
  798. <GroupNumber>6</GroupNumber>
  799. <FileNumber>47</FileNumber>
  800. <FileType>1</FileType>
  801. <tvExp>0</tvExp>
  802. <tvExpOptDlg>0</tvExpOptDlg>
  803. <bDave2>0</bDave2>
  804. <PathWithFileName>..\LIB\Source\gd32f30x_wwdgt.c</PathWithFileName>
  805. <FilenameWithoutPath>gd32f30x_wwdgt.c</FilenameWithoutPath>
  806. <RteFlg>0</RteFlg>
  807. <bShared>0</bShared>
  808. </File>
  809. </Group>
  810. <Group>
  811. <GroupName>FreeRTOS-8.2.3</GroupName>
  812. <tvExp>0</tvExp>
  813. <tvExpOptDlg>0</tvExpOptDlg>
  814. <cbSel>0</cbSel>
  815. <RteFlg>0</RteFlg>
  816. <File>
  817. <GroupNumber>7</GroupNumber>
  818. <FileNumber>48</FileNumber>
  819. <FileType>1</FileType>
  820. <tvExp>0</tvExp>
  821. <tvExpOptDlg>0</tvExpOptDlg>
  822. <bDave2>0</bDave2>
  823. <PathWithFileName>..\FreeRTOS-8.2.3\croutine.c</PathWithFileName>
  824. <FilenameWithoutPath>croutine.c</FilenameWithoutPath>
  825. <RteFlg>0</RteFlg>
  826. <bShared>0</bShared>
  827. </File>
  828. <File>
  829. <GroupNumber>7</GroupNumber>
  830. <FileNumber>49</FileNumber>
  831. <FileType>1</FileType>
  832. <tvExp>0</tvExp>
  833. <tvExpOptDlg>0</tvExpOptDlg>
  834. <bDave2>0</bDave2>
  835. <PathWithFileName>..\FreeRTOS-8.2.3\event_groups.c</PathWithFileName>
  836. <FilenameWithoutPath>event_groups.c</FilenameWithoutPath>
  837. <RteFlg>0</RteFlg>
  838. <bShared>0</bShared>
  839. </File>
  840. <File>
  841. <GroupNumber>7</GroupNumber>
  842. <FileNumber>50</FileNumber>
  843. <FileType>1</FileType>
  844. <tvExp>0</tvExp>
  845. <tvExpOptDlg>0</tvExpOptDlg>
  846. <bDave2>0</bDave2>
  847. <PathWithFileName>..\FreeRTOS-8.2.3\list.c</PathWithFileName>
  848. <FilenameWithoutPath>list.c</FilenameWithoutPath>
  849. <RteFlg>0</RteFlg>
  850. <bShared>0</bShared>
  851. </File>
  852. <File>
  853. <GroupNumber>7</GroupNumber>
  854. <FileNumber>51</FileNumber>
  855. <FileType>1</FileType>
  856. <tvExp>0</tvExp>
  857. <tvExpOptDlg>0</tvExpOptDlg>
  858. <bDave2>0</bDave2>
  859. <PathWithFileName>..\FreeRTOS-8.2.3\queue.c</PathWithFileName>
  860. <FilenameWithoutPath>queue.c</FilenameWithoutPath>
  861. <RteFlg>0</RteFlg>
  862. <bShared>0</bShared>
  863. </File>
  864. <File>
  865. <GroupNumber>7</GroupNumber>
  866. <FileNumber>52</FileNumber>
  867. <FileType>1</FileType>
  868. <tvExp>0</tvExp>
  869. <tvExpOptDlg>0</tvExpOptDlg>
  870. <bDave2>0</bDave2>
  871. <PathWithFileName>..\FreeRTOS-8.2.3\tasks.c</PathWithFileName>
  872. <FilenameWithoutPath>tasks.c</FilenameWithoutPath>
  873. <RteFlg>0</RteFlg>
  874. <bShared>0</bShared>
  875. </File>
  876. <File>
  877. <GroupNumber>7</GroupNumber>
  878. <FileNumber>53</FileNumber>
  879. <FileType>1</FileType>
  880. <tvExp>0</tvExp>
  881. <tvExpOptDlg>0</tvExpOptDlg>
  882. <bDave2>0</bDave2>
  883. <PathWithFileName>..\FreeRTOS-8.2.3\timers.c</PathWithFileName>
  884. <FilenameWithoutPath>timers.c</FilenameWithoutPath>
  885. <RteFlg>0</RteFlg>
  886. <bShared>0</bShared>
  887. </File>
  888. <File>
  889. <GroupNumber>7</GroupNumber>
  890. <FileNumber>54</FileNumber>
  891. <FileType>1</FileType>
  892. <tvExp>0</tvExp>
  893. <tvExpOptDlg>0</tvExpOptDlg>
  894. <bDave2>0</bDave2>
  895. <PathWithFileName>..\FreeRTOS-8.2.3\portable\RVDS\ARM_CM3\port.c</PathWithFileName>
  896. <FilenameWithoutPath>port.c</FilenameWithoutPath>
  897. <RteFlg>0</RteFlg>
  898. <bShared>0</bShared>
  899. </File>
  900. <File>
  901. <GroupNumber>7</GroupNumber>
  902. <FileNumber>55</FileNumber>
  903. <FileType>1</FileType>
  904. <tvExp>0</tvExp>
  905. <tvExpOptDlg>0</tvExpOptDlg>
  906. <bDave2>0</bDave2>
  907. <PathWithFileName>..\FreeRTOS-8.2.3\portable\MemMang\heap_4.c</PathWithFileName>
  908. <FilenameWithoutPath>heap_4.c</FilenameWithoutPath>
  909. <RteFlg>0</RteFlg>
  910. <bShared>0</bShared>
  911. </File>
  912. </Group>
  913. <Group>
  914. <GroupName>lwip-1.4.1</GroupName>
  915. <tvExp>0</tvExp>
  916. <tvExpOptDlg>0</tvExpOptDlg>
  917. <cbSel>0</cbSel>
  918. <RteFlg>0</RteFlg>
  919. <File>
  920. <GroupNumber>8</GroupNumber>
  921. <FileNumber>56</FileNumber>
  922. <FileType>1</FileType>
  923. <tvExp>0</tvExp>
  924. <tvExpOptDlg>0</tvExpOptDlg>
  925. <bDave2>0</bDave2>
  926. <PathWithFileName>..\lwip-1.4.1\src\core\def.c</PathWithFileName>
  927. <FilenameWithoutPath>def.c</FilenameWithoutPath>
  928. <RteFlg>0</RteFlg>
  929. <bShared>0</bShared>
  930. </File>
  931. <File>
  932. <GroupNumber>8</GroupNumber>
  933. <FileNumber>57</FileNumber>
  934. <FileType>1</FileType>
  935. <tvExp>0</tvExp>
  936. <tvExpOptDlg>0</tvExpOptDlg>
  937. <bDave2>0</bDave2>
  938. <PathWithFileName>..\lwip-1.4.1\src\core\dhcp.c</PathWithFileName>
  939. <FilenameWithoutPath>dhcp.c</FilenameWithoutPath>
  940. <RteFlg>0</RteFlg>
  941. <bShared>0</bShared>
  942. </File>
  943. <File>
  944. <GroupNumber>8</GroupNumber>
  945. <FileNumber>58</FileNumber>
  946. <FileType>1</FileType>
  947. <tvExp>0</tvExp>
  948. <tvExpOptDlg>0</tvExpOptDlg>
  949. <bDave2>0</bDave2>
  950. <PathWithFileName>..\lwip-1.4.1\src\core\dns.c</PathWithFileName>
  951. <FilenameWithoutPath>dns.c</FilenameWithoutPath>
  952. <RteFlg>0</RteFlg>
  953. <bShared>0</bShared>
  954. </File>
  955. <File>
  956. <GroupNumber>8</GroupNumber>
  957. <FileNumber>59</FileNumber>
  958. <FileType>1</FileType>
  959. <tvExp>0</tvExp>
  960. <tvExpOptDlg>0</tvExpOptDlg>
  961. <bDave2>0</bDave2>
  962. <PathWithFileName>..\lwip-1.4.1\src\core\init.c</PathWithFileName>
  963. <FilenameWithoutPath>init.c</FilenameWithoutPath>
  964. <RteFlg>0</RteFlg>
  965. <bShared>0</bShared>
  966. </File>
  967. <File>
  968. <GroupNumber>8</GroupNumber>
  969. <FileNumber>60</FileNumber>
  970. <FileType>1</FileType>
  971. <tvExp>1</tvExp>
  972. <tvExpOptDlg>0</tvExpOptDlg>
  973. <bDave2>0</bDave2>
  974. <PathWithFileName>..\lwip-1.4.1\src\core\lwip_timers.c</PathWithFileName>
  975. <FilenameWithoutPath>lwip_timers.c</FilenameWithoutPath>
  976. <RteFlg>0</RteFlg>
  977. <bShared>0</bShared>
  978. </File>
  979. <File>
  980. <GroupNumber>8</GroupNumber>
  981. <FileNumber>61</FileNumber>
  982. <FileType>1</FileType>
  983. <tvExp>0</tvExp>
  984. <tvExpOptDlg>0</tvExpOptDlg>
  985. <bDave2>0</bDave2>
  986. <PathWithFileName>..\lwip-1.4.1\src\core\mem.c</PathWithFileName>
  987. <FilenameWithoutPath>mem.c</FilenameWithoutPath>
  988. <RteFlg>0</RteFlg>
  989. <bShared>0</bShared>
  990. </File>
  991. <File>
  992. <GroupNumber>8</GroupNumber>
  993. <FileNumber>62</FileNumber>
  994. <FileType>1</FileType>
  995. <tvExp>0</tvExp>
  996. <tvExpOptDlg>0</tvExpOptDlg>
  997. <bDave2>0</bDave2>
  998. <PathWithFileName>..\lwip-1.4.1\src\core\memp.c</PathWithFileName>
  999. <FilenameWithoutPath>memp.c</FilenameWithoutPath>
  1000. <RteFlg>0</RteFlg>
  1001. <bShared>0</bShared>
  1002. </File>
  1003. <File>
  1004. <GroupNumber>8</GroupNumber>
  1005. <FileNumber>63</FileNumber>
  1006. <FileType>1</FileType>
  1007. <tvExp>0</tvExp>
  1008. <tvExpOptDlg>0</tvExpOptDlg>
  1009. <bDave2>0</bDave2>
  1010. <PathWithFileName>..\lwip-1.4.1\src\core\netif.c</PathWithFileName>
  1011. <FilenameWithoutPath>netif.c</FilenameWithoutPath>
  1012. <RteFlg>0</RteFlg>
  1013. <bShared>0</bShared>
  1014. </File>
  1015. <File>
  1016. <GroupNumber>8</GroupNumber>
  1017. <FileNumber>64</FileNumber>
  1018. <FileType>1</FileType>
  1019. <tvExp>0</tvExp>
  1020. <tvExpOptDlg>0</tvExpOptDlg>
  1021. <bDave2>0</bDave2>
  1022. <PathWithFileName>..\lwip-1.4.1\src\core\pbuf.c</PathWithFileName>
  1023. <FilenameWithoutPath>pbuf.c</FilenameWithoutPath>
  1024. <RteFlg>0</RteFlg>
  1025. <bShared>0</bShared>
  1026. </File>
  1027. <File>
  1028. <GroupNumber>8</GroupNumber>
  1029. <FileNumber>65</FileNumber>
  1030. <FileType>1</FileType>
  1031. <tvExp>0</tvExp>
  1032. <tvExpOptDlg>0</tvExpOptDlg>
  1033. <bDave2>0</bDave2>
  1034. <PathWithFileName>..\lwip-1.4.1\src\core\raw.c</PathWithFileName>
  1035. <FilenameWithoutPath>raw.c</FilenameWithoutPath>
  1036. <RteFlg>0</RteFlg>
  1037. <bShared>0</bShared>
  1038. </File>
  1039. <File>
  1040. <GroupNumber>8</GroupNumber>
  1041. <FileNumber>66</FileNumber>
  1042. <FileType>1</FileType>
  1043. <tvExp>0</tvExp>
  1044. <tvExpOptDlg>0</tvExpOptDlg>
  1045. <bDave2>0</bDave2>
  1046. <PathWithFileName>..\lwip-1.4.1\src\core\stats.c</PathWithFileName>
  1047. <FilenameWithoutPath>stats.c</FilenameWithoutPath>
  1048. <RteFlg>0</RteFlg>
  1049. <bShared>0</bShared>
  1050. </File>
  1051. <File>
  1052. <GroupNumber>8</GroupNumber>
  1053. <FileNumber>67</FileNumber>
  1054. <FileType>1</FileType>
  1055. <tvExp>0</tvExp>
  1056. <tvExpOptDlg>0</tvExpOptDlg>
  1057. <bDave2>0</bDave2>
  1058. <PathWithFileName>..\lwip-1.4.1\src\core\sys.c</PathWithFileName>
  1059. <FilenameWithoutPath>sys.c</FilenameWithoutPath>
  1060. <RteFlg>0</RteFlg>
  1061. <bShared>0</bShared>
  1062. </File>
  1063. <File>
  1064. <GroupNumber>8</GroupNumber>
  1065. <FileNumber>68</FileNumber>
  1066. <FileType>1</FileType>
  1067. <tvExp>0</tvExp>
  1068. <tvExpOptDlg>0</tvExpOptDlg>
  1069. <bDave2>0</bDave2>
  1070. <PathWithFileName>..\lwip-1.4.1\src\core\tcp.c</PathWithFileName>
  1071. <FilenameWithoutPath>tcp.c</FilenameWithoutPath>
  1072. <RteFlg>0</RteFlg>
  1073. <bShared>0</bShared>
  1074. </File>
  1075. <File>
  1076. <GroupNumber>8</GroupNumber>
  1077. <FileNumber>69</FileNumber>
  1078. <FileType>1</FileType>
  1079. <tvExp>0</tvExp>
  1080. <tvExpOptDlg>0</tvExpOptDlg>
  1081. <bDave2>0</bDave2>
  1082. <PathWithFileName>..\lwip-1.4.1\src\core\tcp_in.c</PathWithFileName>
  1083. <FilenameWithoutPath>tcp_in.c</FilenameWithoutPath>
  1084. <RteFlg>0</RteFlg>
  1085. <bShared>0</bShared>
  1086. </File>
  1087. <File>
  1088. <GroupNumber>8</GroupNumber>
  1089. <FileNumber>70</FileNumber>
  1090. <FileType>1</FileType>
  1091. <tvExp>0</tvExp>
  1092. <tvExpOptDlg>0</tvExpOptDlg>
  1093. <bDave2>0</bDave2>
  1094. <PathWithFileName>..\lwip-1.4.1\src\core\tcp_out.c</PathWithFileName>
  1095. <FilenameWithoutPath>tcp_out.c</FilenameWithoutPath>
  1096. <RteFlg>0</RteFlg>
  1097. <bShared>0</bShared>
  1098. </File>
  1099. <File>
  1100. <GroupNumber>8</GroupNumber>
  1101. <FileNumber>71</FileNumber>
  1102. <FileType>1</FileType>
  1103. <tvExp>0</tvExp>
  1104. <tvExpOptDlg>0</tvExpOptDlg>
  1105. <bDave2>0</bDave2>
  1106. <PathWithFileName>..\lwip-1.4.1\src\core\udp.c</PathWithFileName>
  1107. <FilenameWithoutPath>udp.c</FilenameWithoutPath>
  1108. <RteFlg>0</RteFlg>
  1109. <bShared>0</bShared>
  1110. </File>
  1111. <File>
  1112. <GroupNumber>8</GroupNumber>
  1113. <FileNumber>72</FileNumber>
  1114. <FileType>1</FileType>
  1115. <tvExp>0</tvExp>
  1116. <tvExpOptDlg>0</tvExpOptDlg>
  1117. <bDave2>0</bDave2>
  1118. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\autoip.c</PathWithFileName>
  1119. <FilenameWithoutPath>autoip.c</FilenameWithoutPath>
  1120. <RteFlg>0</RteFlg>
  1121. <bShared>0</bShared>
  1122. </File>
  1123. <File>
  1124. <GroupNumber>8</GroupNumber>
  1125. <FileNumber>73</FileNumber>
  1126. <FileType>1</FileType>
  1127. <tvExp>0</tvExp>
  1128. <tvExpOptDlg>0</tvExpOptDlg>
  1129. <bDave2>0</bDave2>
  1130. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\icmp.c</PathWithFileName>
  1131. <FilenameWithoutPath>icmp.c</FilenameWithoutPath>
  1132. <RteFlg>0</RteFlg>
  1133. <bShared>0</bShared>
  1134. </File>
  1135. <File>
  1136. <GroupNumber>8</GroupNumber>
  1137. <FileNumber>74</FileNumber>
  1138. <FileType>1</FileType>
  1139. <tvExp>0</tvExp>
  1140. <tvExpOptDlg>0</tvExpOptDlg>
  1141. <bDave2>0</bDave2>
  1142. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\igmp.c</PathWithFileName>
  1143. <FilenameWithoutPath>igmp.c</FilenameWithoutPath>
  1144. <RteFlg>0</RteFlg>
  1145. <bShared>0</bShared>
  1146. </File>
  1147. <File>
  1148. <GroupNumber>8</GroupNumber>
  1149. <FileNumber>75</FileNumber>
  1150. <FileType>1</FileType>
  1151. <tvExp>0</tvExp>
  1152. <tvExpOptDlg>0</tvExpOptDlg>
  1153. <bDave2>0</bDave2>
  1154. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\inet.c</PathWithFileName>
  1155. <FilenameWithoutPath>inet.c</FilenameWithoutPath>
  1156. <RteFlg>0</RteFlg>
  1157. <bShared>0</bShared>
  1158. </File>
  1159. <File>
  1160. <GroupNumber>8</GroupNumber>
  1161. <FileNumber>76</FileNumber>
  1162. <FileType>1</FileType>
  1163. <tvExp>0</tvExp>
  1164. <tvExpOptDlg>0</tvExpOptDlg>
  1165. <bDave2>0</bDave2>
  1166. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\inet_chksum.c</PathWithFileName>
  1167. <FilenameWithoutPath>inet_chksum.c</FilenameWithoutPath>
  1168. <RteFlg>0</RteFlg>
  1169. <bShared>0</bShared>
  1170. </File>
  1171. <File>
  1172. <GroupNumber>8</GroupNumber>
  1173. <FileNumber>77</FileNumber>
  1174. <FileType>1</FileType>
  1175. <tvExp>0</tvExp>
  1176. <tvExpOptDlg>0</tvExpOptDlg>
  1177. <bDave2>0</bDave2>
  1178. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\ip.c</PathWithFileName>
  1179. <FilenameWithoutPath>ip.c</FilenameWithoutPath>
  1180. <RteFlg>0</RteFlg>
  1181. <bShared>0</bShared>
  1182. </File>
  1183. <File>
  1184. <GroupNumber>8</GroupNumber>
  1185. <FileNumber>78</FileNumber>
  1186. <FileType>1</FileType>
  1187. <tvExp>0</tvExp>
  1188. <tvExpOptDlg>0</tvExpOptDlg>
  1189. <bDave2>0</bDave2>
  1190. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\ip_addr.c</PathWithFileName>
  1191. <FilenameWithoutPath>ip_addr.c</FilenameWithoutPath>
  1192. <RteFlg>0</RteFlg>
  1193. <bShared>0</bShared>
  1194. </File>
  1195. <File>
  1196. <GroupNumber>8</GroupNumber>
  1197. <FileNumber>79</FileNumber>
  1198. <FileType>1</FileType>
  1199. <tvExp>0</tvExp>
  1200. <tvExpOptDlg>0</tvExpOptDlg>
  1201. <bDave2>0</bDave2>
  1202. <PathWithFileName>..\lwip-1.4.1\src\core\ipv4\ip_frag.c</PathWithFileName>
  1203. <FilenameWithoutPath>ip_frag.c</FilenameWithoutPath>
  1204. <RteFlg>0</RteFlg>
  1205. <bShared>0</bShared>
  1206. </File>
  1207. <File>
  1208. <GroupNumber>8</GroupNumber>
  1209. <FileNumber>80</FileNumber>
  1210. <FileType>1</FileType>
  1211. <tvExp>0</tvExp>
  1212. <tvExpOptDlg>0</tvExpOptDlg>
  1213. <bDave2>0</bDave2>
  1214. <PathWithFileName>..\lwip-1.4.1\src\api\api_lib.c</PathWithFileName>
  1215. <FilenameWithoutPath>api_lib.c</FilenameWithoutPath>
  1216. <RteFlg>0</RteFlg>
  1217. <bShared>0</bShared>
  1218. </File>
  1219. <File>
  1220. <GroupNumber>8</GroupNumber>
  1221. <FileNumber>81</FileNumber>
  1222. <FileType>1</FileType>
  1223. <tvExp>0</tvExp>
  1224. <tvExpOptDlg>0</tvExpOptDlg>
  1225. <bDave2>0</bDave2>
  1226. <PathWithFileName>..\lwip-1.4.1\src\api\api_msg.c</PathWithFileName>
  1227. <FilenameWithoutPath>api_msg.c</FilenameWithoutPath>
  1228. <RteFlg>0</RteFlg>
  1229. <bShared>0</bShared>
  1230. </File>
  1231. <File>
  1232. <GroupNumber>8</GroupNumber>
  1233. <FileNumber>82</FileNumber>
  1234. <FileType>1</FileType>
  1235. <tvExp>0</tvExp>
  1236. <tvExpOptDlg>0</tvExpOptDlg>
  1237. <bDave2>0</bDave2>
  1238. <PathWithFileName>..\lwip-1.4.1\src\api\err.c</PathWithFileName>
  1239. <FilenameWithoutPath>err.c</FilenameWithoutPath>
  1240. <RteFlg>0</RteFlg>
  1241. <bShared>0</bShared>
  1242. </File>
  1243. <File>
  1244. <GroupNumber>8</GroupNumber>
  1245. <FileNumber>83</FileNumber>
  1246. <FileType>1</FileType>
  1247. <tvExp>0</tvExp>
  1248. <tvExpOptDlg>0</tvExpOptDlg>
  1249. <bDave2>0</bDave2>
  1250. <PathWithFileName>..\lwip-1.4.1\src\api\netbuf.c</PathWithFileName>
  1251. <FilenameWithoutPath>netbuf.c</FilenameWithoutPath>
  1252. <RteFlg>0</RteFlg>
  1253. <bShared>0</bShared>
  1254. </File>
  1255. <File>
  1256. <GroupNumber>8</GroupNumber>
  1257. <FileNumber>84</FileNumber>
  1258. <FileType>1</FileType>
  1259. <tvExp>0</tvExp>
  1260. <tvExpOptDlg>0</tvExpOptDlg>
  1261. <bDave2>0</bDave2>
  1262. <PathWithFileName>..\lwip-1.4.1\src\api\netdb.c</PathWithFileName>
  1263. <FilenameWithoutPath>netdb.c</FilenameWithoutPath>
  1264. <RteFlg>0</RteFlg>
  1265. <bShared>0</bShared>
  1266. </File>
  1267. <File>
  1268. <GroupNumber>8</GroupNumber>
  1269. <FileNumber>85</FileNumber>
  1270. <FileType>1</FileType>
  1271. <tvExp>0</tvExp>
  1272. <tvExpOptDlg>0</tvExpOptDlg>
  1273. <bDave2>0</bDave2>
  1274. <PathWithFileName>..\lwip-1.4.1\src\api\netifapi.c</PathWithFileName>
  1275. <FilenameWithoutPath>netifapi.c</FilenameWithoutPath>
  1276. <RteFlg>0</RteFlg>
  1277. <bShared>0</bShared>
  1278. </File>
  1279. <File>
  1280. <GroupNumber>8</GroupNumber>
  1281. <FileNumber>86</FileNumber>
  1282. <FileType>1</FileType>
  1283. <tvExp>0</tvExp>
  1284. <tvExpOptDlg>0</tvExpOptDlg>
  1285. <bDave2>0</bDave2>
  1286. <PathWithFileName>..\lwip-1.4.1\src\api\sockets.c</PathWithFileName>
  1287. <FilenameWithoutPath>sockets.c</FilenameWithoutPath>
  1288. <RteFlg>0</RteFlg>
  1289. <bShared>0</bShared>
  1290. </File>
  1291. <File>
  1292. <GroupNumber>8</GroupNumber>
  1293. <FileNumber>87</FileNumber>
  1294. <FileType>1</FileType>
  1295. <tvExp>0</tvExp>
  1296. <tvExpOptDlg>0</tvExpOptDlg>
  1297. <bDave2>0</bDave2>
  1298. <PathWithFileName>..\lwip-1.4.1\src\api\tcpip.c</PathWithFileName>
  1299. <FilenameWithoutPath>tcpip.c</FilenameWithoutPath>
  1300. <RteFlg>0</RteFlg>
  1301. <bShared>0</bShared>
  1302. </File>
  1303. <File>
  1304. <GroupNumber>8</GroupNumber>
  1305. <FileNumber>88</FileNumber>
  1306. <FileType>1</FileType>
  1307. <tvExp>0</tvExp>
  1308. <tvExpOptDlg>0</tvExpOptDlg>
  1309. <bDave2>0</bDave2>
  1310. <PathWithFileName>..\lwip-1.4.1\src\netif\etharp.c</PathWithFileName>
  1311. <FilenameWithoutPath>etharp.c</FilenameWithoutPath>
  1312. <RteFlg>0</RteFlg>
  1313. <bShared>0</bShared>
  1314. </File>
  1315. </Group>
  1316. <Group>
  1317. <GroupName>lwip/port</GroupName>
  1318. <tvExp>0</tvExp>
  1319. <tvExpOptDlg>0</tvExpOptDlg>
  1320. <cbSel>0</cbSel>
  1321. <RteFlg>0</RteFlg>
  1322. <File>
  1323. <GroupNumber>9</GroupNumber>
  1324. <FileNumber>89</FileNumber>
  1325. <FileType>1</FileType>
  1326. <tvExp>0</tvExp>
  1327. <tvExpOptDlg>0</tvExpOptDlg>
  1328. <bDave2>0</bDave2>
  1329. <PathWithFileName>..\lwip-1.4.1\port\GD32F30x\FreeRTOS\ethernetif.c</PathWithFileName>
  1330. <FilenameWithoutPath>ethernetif.c</FilenameWithoutPath>
  1331. <RteFlg>0</RteFlg>
  1332. <bShared>0</bShared>
  1333. </File>
  1334. <File>
  1335. <GroupNumber>9</GroupNumber>
  1336. <FileNumber>90</FileNumber>
  1337. <FileType>1</FileType>
  1338. <tvExp>0</tvExp>
  1339. <tvExpOptDlg>0</tvExpOptDlg>
  1340. <bDave2>0</bDave2>
  1341. <PathWithFileName>..\lwip-1.4.1\port\GD32F30x\FreeRTOS\sys_arch.c</PathWithFileName>
  1342. <FilenameWithoutPath>sys_arch.c</FilenameWithoutPath>
  1343. <RteFlg>0</RteFlg>
  1344. <bShared>0</bShared>
  1345. </File>
  1346. </Group>
  1347. <Group>
  1348. <GroupName>mqttClient</GroupName>
  1349. <tvExp>0</tvExp>
  1350. <tvExpOptDlg>0</tvExpOptDlg>
  1351. <cbSel>0</cbSel>
  1352. <RteFlg>0</RteFlg>
  1353. <File>
  1354. <GroupNumber>10</GroupNumber>
  1355. <FileNumber>91</FileNumber>
  1356. <FileType>1</FileType>
  1357. <tvExp>0</tvExp>
  1358. <tvExpOptDlg>0</tvExpOptDlg>
  1359. <bDave2>0</bDave2>
  1360. <PathWithFileName>..\mqttclient\mqttclient\mqttclient.c</PathWithFileName>
  1361. <FilenameWithoutPath>mqttclient.c</FilenameWithoutPath>
  1362. <RteFlg>0</RteFlg>
  1363. <bShared>0</bShared>
  1364. </File>
  1365. </Group>
  1366. <Group>
  1367. <GroupName>mqttClient/mqtt</GroupName>
  1368. <tvExp>0</tvExp>
  1369. <tvExpOptDlg>0</tvExpOptDlg>
  1370. <cbSel>0</cbSel>
  1371. <RteFlg>0</RteFlg>
  1372. <File>
  1373. <GroupNumber>11</GroupNumber>
  1374. <FileNumber>92</FileNumber>
  1375. <FileType>1</FileType>
  1376. <tvExp>0</tvExp>
  1377. <tvExpOptDlg>0</tvExpOptDlg>
  1378. <bDave2>0</bDave2>
  1379. <PathWithFileName>..\mqttclient\mqtt\MQTTConnectClient.c</PathWithFileName>
  1380. <FilenameWithoutPath>MQTTConnectClient.c</FilenameWithoutPath>
  1381. <RteFlg>0</RteFlg>
  1382. <bShared>0</bShared>
  1383. </File>
  1384. <File>
  1385. <GroupNumber>11</GroupNumber>
  1386. <FileNumber>93</FileNumber>
  1387. <FileType>1</FileType>
  1388. <tvExp>0</tvExp>
  1389. <tvExpOptDlg>0</tvExpOptDlg>
  1390. <bDave2>0</bDave2>
  1391. <PathWithFileName>..\mqttclient\mqtt\MQTTConnectServer.c</PathWithFileName>
  1392. <FilenameWithoutPath>MQTTConnectServer.c</FilenameWithoutPath>
  1393. <RteFlg>0</RteFlg>
  1394. <bShared>0</bShared>
  1395. </File>
  1396. <File>
  1397. <GroupNumber>11</GroupNumber>
  1398. <FileNumber>94</FileNumber>
  1399. <FileType>1</FileType>
  1400. <tvExp>0</tvExp>
  1401. <tvExpOptDlg>0</tvExpOptDlg>
  1402. <bDave2>0</bDave2>
  1403. <PathWithFileName>..\mqttclient\mqtt\MQTTDeserializePublish.c</PathWithFileName>
  1404. <FilenameWithoutPath>MQTTDeserializePublish.c</FilenameWithoutPath>
  1405. <RteFlg>0</RteFlg>
  1406. <bShared>0</bShared>
  1407. </File>
  1408. <File>
  1409. <GroupNumber>11</GroupNumber>
  1410. <FileNumber>95</FileNumber>
  1411. <FileType>1</FileType>
  1412. <tvExp>0</tvExp>
  1413. <tvExpOptDlg>0</tvExpOptDlg>
  1414. <bDave2>0</bDave2>
  1415. <PathWithFileName>..\mqttclient\mqtt\MQTTFormat.c</PathWithFileName>
  1416. <FilenameWithoutPath>MQTTFormat.c</FilenameWithoutPath>
  1417. <RteFlg>0</RteFlg>
  1418. <bShared>0</bShared>
  1419. </File>
  1420. <File>
  1421. <GroupNumber>11</GroupNumber>
  1422. <FileNumber>96</FileNumber>
  1423. <FileType>1</FileType>
  1424. <tvExp>0</tvExp>
  1425. <tvExpOptDlg>0</tvExpOptDlg>
  1426. <bDave2>0</bDave2>
  1427. <PathWithFileName>..\mqttclient\mqtt\MQTTPacket.c</PathWithFileName>
  1428. <FilenameWithoutPath>MQTTPacket.c</FilenameWithoutPath>
  1429. <RteFlg>0</RteFlg>
  1430. <bShared>0</bShared>
  1431. </File>
  1432. <File>
  1433. <GroupNumber>11</GroupNumber>
  1434. <FileNumber>97</FileNumber>
  1435. <FileType>1</FileType>
  1436. <tvExp>0</tvExp>
  1437. <tvExpOptDlg>0</tvExpOptDlg>
  1438. <bDave2>0</bDave2>
  1439. <PathWithFileName>..\mqttclient\mqtt\MQTTSerializePublish.c</PathWithFileName>
  1440. <FilenameWithoutPath>MQTTSerializePublish.c</FilenameWithoutPath>
  1441. <RteFlg>0</RteFlg>
  1442. <bShared>0</bShared>
  1443. </File>
  1444. <File>
  1445. <GroupNumber>11</GroupNumber>
  1446. <FileNumber>98</FileNumber>
  1447. <FileType>1</FileType>
  1448. <tvExp>0</tvExp>
  1449. <tvExpOptDlg>0</tvExpOptDlg>
  1450. <bDave2>0</bDave2>
  1451. <PathWithFileName>..\mqttclient\mqtt\MQTTSubscribeClient.c</PathWithFileName>
  1452. <FilenameWithoutPath>MQTTSubscribeClient.c</FilenameWithoutPath>
  1453. <RteFlg>0</RteFlg>
  1454. <bShared>0</bShared>
  1455. </File>
  1456. <File>
  1457. <GroupNumber>11</GroupNumber>
  1458. <FileNumber>99</FileNumber>
  1459. <FileType>1</FileType>
  1460. <tvExp>0</tvExp>
  1461. <tvExpOptDlg>0</tvExpOptDlg>
  1462. <bDave2>0</bDave2>
  1463. <PathWithFileName>..\mqttclient\mqtt\MQTTSubscribeServer.c</PathWithFileName>
  1464. <FilenameWithoutPath>MQTTSubscribeServer.c</FilenameWithoutPath>
  1465. <RteFlg>0</RteFlg>
  1466. <bShared>0</bShared>
  1467. </File>
  1468. <File>
  1469. <GroupNumber>11</GroupNumber>
  1470. <FileNumber>100</FileNumber>
  1471. <FileType>1</FileType>
  1472. <tvExp>0</tvExp>
  1473. <tvExpOptDlg>0</tvExpOptDlg>
  1474. <bDave2>0</bDave2>
  1475. <PathWithFileName>..\mqttclient\mqtt\MQTTUnsubscribeClient.c</PathWithFileName>
  1476. <FilenameWithoutPath>MQTTUnsubscribeClient.c</FilenameWithoutPath>
  1477. <RteFlg>0</RteFlg>
  1478. <bShared>0</bShared>
  1479. </File>
  1480. <File>
  1481. <GroupNumber>11</GroupNumber>
  1482. <FileNumber>101</FileNumber>
  1483. <FileType>1</FileType>
  1484. <tvExp>0</tvExp>
  1485. <tvExpOptDlg>0</tvExpOptDlg>
  1486. <bDave2>0</bDave2>
  1487. <PathWithFileName>..\mqttclient\mqtt\MQTTUnsubscribeServer.c</PathWithFileName>
  1488. <FilenameWithoutPath>MQTTUnsubscribeServer.c</FilenameWithoutPath>
  1489. <RteFlg>0</RteFlg>
  1490. <bShared>0</bShared>
  1491. </File>
  1492. </Group>
  1493. <Group>
  1494. <GroupName>mqttClient/salof</GroupName>
  1495. <tvExp>0</tvExp>
  1496. <tvExpOptDlg>0</tvExpOptDlg>
  1497. <cbSel>0</cbSel>
  1498. <RteFlg>0</RteFlg>
  1499. <File>
  1500. <GroupNumber>12</GroupNumber>
  1501. <FileNumber>102</FileNumber>
  1502. <FileType>1</FileType>
  1503. <tvExp>0</tvExp>
  1504. <tvExpOptDlg>0</tvExpOptDlg>
  1505. <bDave2>0</bDave2>
  1506. <PathWithFileName>..\mqttclient\common\log\fifo.c</PathWithFileName>
  1507. <FilenameWithoutPath>fifo.c</FilenameWithoutPath>
  1508. <RteFlg>0</RteFlg>
  1509. <bShared>0</bShared>
  1510. </File>
  1511. <File>
  1512. <GroupNumber>12</GroupNumber>
  1513. <FileNumber>103</FileNumber>
  1514. <FileType>1</FileType>
  1515. <tvExp>0</tvExp>
  1516. <tvExpOptDlg>0</tvExpOptDlg>
  1517. <bDave2>0</bDave2>
  1518. <PathWithFileName>..\mqttclient\common\log\format.c</PathWithFileName>
  1519. <FilenameWithoutPath>format.c</FilenameWithoutPath>
  1520. <RteFlg>0</RteFlg>
  1521. <bShared>0</bShared>
  1522. </File>
  1523. <File>
  1524. <GroupNumber>12</GroupNumber>
  1525. <FileNumber>104</FileNumber>
  1526. <FileType>1</FileType>
  1527. <tvExp>0</tvExp>
  1528. <tvExpOptDlg>0</tvExpOptDlg>
  1529. <bDave2>0</bDave2>
  1530. <PathWithFileName>..\mqttclient\common\log\salof.c</PathWithFileName>
  1531. <FilenameWithoutPath>salof.c</FilenameWithoutPath>
  1532. <RteFlg>0</RteFlg>
  1533. <bShared>0</bShared>
  1534. </File>
  1535. <File>
  1536. <GroupNumber>12</GroupNumber>
  1537. <FileNumber>105</FileNumber>
  1538. <FileType>1</FileType>
  1539. <tvExp>0</tvExp>
  1540. <tvExpOptDlg>0</tvExpOptDlg>
  1541. <bDave2>0</bDave2>
  1542. <PathWithFileName>..\mqttclient\common\log\arch\freertos\arch.c</PathWithFileName>
  1543. <FilenameWithoutPath>arch.c</FilenameWithoutPath>
  1544. <RteFlg>0</RteFlg>
  1545. <bShared>0</bShared>
  1546. </File>
  1547. </Group>
  1548. <Group>
  1549. <GroupName>mqttClient/common</GroupName>
  1550. <tvExp>0</tvExp>
  1551. <tvExpOptDlg>0</tvExpOptDlg>
  1552. <cbSel>0</cbSel>
  1553. <RteFlg>0</RteFlg>
  1554. <File>
  1555. <GroupNumber>13</GroupNumber>
  1556. <FileNumber>106</FileNumber>
  1557. <FileType>1</FileType>
  1558. <tvExp>0</tvExp>
  1559. <tvExpOptDlg>0</tvExpOptDlg>
  1560. <bDave2>0</bDave2>
  1561. <PathWithFileName>..\mqttclient\common\random.c</PathWithFileName>
  1562. <FilenameWithoutPath>random.c</FilenameWithoutPath>
  1563. <RteFlg>0</RteFlg>
  1564. <bShared>0</bShared>
  1565. </File>
  1566. <File>
  1567. <GroupNumber>13</GroupNumber>
  1568. <FileNumber>107</FileNumber>
  1569. <FileType>1</FileType>
  1570. <tvExp>0</tvExp>
  1571. <tvExpOptDlg>0</tvExpOptDlg>
  1572. <bDave2>0</bDave2>
  1573. <PathWithFileName>..\mqttclient\common\mqtt_list.c</PathWithFileName>
  1574. <FilenameWithoutPath>mqtt_list.c</FilenameWithoutPath>
  1575. <RteFlg>0</RteFlg>
  1576. <bShared>0</bShared>
  1577. </File>
  1578. <File>
  1579. <GroupNumber>13</GroupNumber>
  1580. <FileNumber>108</FileNumber>
  1581. <FileType>5</FileType>
  1582. <tvExp>0</tvExp>
  1583. <tvExpOptDlg>0</tvExpOptDlg>
  1584. <bDave2>0</bDave2>
  1585. <PathWithFileName>..\mqttclient\common\mqtt_error.h</PathWithFileName>
  1586. <FilenameWithoutPath>mqtt_error.h</FilenameWithoutPath>
  1587. <RteFlg>0</RteFlg>
  1588. <bShared>0</bShared>
  1589. </File>
  1590. <File>
  1591. <GroupNumber>13</GroupNumber>
  1592. <FileNumber>109</FileNumber>
  1593. <FileType>5</FileType>
  1594. <tvExp>0</tvExp>
  1595. <tvExpOptDlg>0</tvExpOptDlg>
  1596. <bDave2>0</bDave2>
  1597. <PathWithFileName>..\mqttclient\common\mqtt_log.h</PathWithFileName>
  1598. <FilenameWithoutPath>mqtt_log.h</FilenameWithoutPath>
  1599. <RteFlg>0</RteFlg>
  1600. <bShared>0</bShared>
  1601. </File>
  1602. </Group>
  1603. <Group>
  1604. <GroupName>mqttClient/network</GroupName>
  1605. <tvExp>0</tvExp>
  1606. <tvExpOptDlg>0</tvExpOptDlg>
  1607. <cbSel>0</cbSel>
  1608. <RteFlg>0</RteFlg>
  1609. <File>
  1610. <GroupNumber>14</GroupNumber>
  1611. <FileNumber>110</FileNumber>
  1612. <FileType>1</FileType>
  1613. <tvExp>0</tvExp>
  1614. <tvExpOptDlg>0</tvExpOptDlg>
  1615. <bDave2>0</bDave2>
  1616. <PathWithFileName>..\mqttclient\network\nettype_tcp.c</PathWithFileName>
  1617. <FilenameWithoutPath>nettype_tcp.c</FilenameWithoutPath>
  1618. <RteFlg>0</RteFlg>
  1619. <bShared>0</bShared>
  1620. </File>
  1621. <File>
  1622. <GroupNumber>14</GroupNumber>
  1623. <FileNumber>111</FileNumber>
  1624. <FileType>1</FileType>
  1625. <tvExp>0</tvExp>
  1626. <tvExpOptDlg>0</tvExpOptDlg>
  1627. <bDave2>0</bDave2>
  1628. <PathWithFileName>..\mqttclient\network\nettype_tls.c</PathWithFileName>
  1629. <FilenameWithoutPath>nettype_tls.c</FilenameWithoutPath>
  1630. <RteFlg>0</RteFlg>
  1631. <bShared>0</bShared>
  1632. </File>
  1633. <File>
  1634. <GroupNumber>14</GroupNumber>
  1635. <FileNumber>112</FileNumber>
  1636. <FileType>1</FileType>
  1637. <tvExp>0</tvExp>
  1638. <tvExpOptDlg>0</tvExpOptDlg>
  1639. <bDave2>0</bDave2>
  1640. <PathWithFileName>..\mqttclient\network\network.c</PathWithFileName>
  1641. <FilenameWithoutPath>network.c</FilenameWithoutPath>
  1642. <RteFlg>0</RteFlg>
  1643. <bShared>0</bShared>
  1644. </File>
  1645. </Group>
  1646. <Group>
  1647. <GroupName>mqttClient/platform</GroupName>
  1648. <tvExp>0</tvExp>
  1649. <tvExpOptDlg>0</tvExpOptDlg>
  1650. <cbSel>0</cbSel>
  1651. <RteFlg>0</RteFlg>
  1652. <File>
  1653. <GroupNumber>15</GroupNumber>
  1654. <FileNumber>113</FileNumber>
  1655. <FileType>1</FileType>
  1656. <tvExp>0</tvExp>
  1657. <tvExpOptDlg>0</tvExpOptDlg>
  1658. <bDave2>0</bDave2>
  1659. <PathWithFileName>..\mqttclient\platform\FreeRTOS\platform_memory.c</PathWithFileName>
  1660. <FilenameWithoutPath>platform_memory.c</FilenameWithoutPath>
  1661. <RteFlg>0</RteFlg>
  1662. <bShared>0</bShared>
  1663. </File>
  1664. <File>
  1665. <GroupNumber>15</GroupNumber>
  1666. <FileNumber>114</FileNumber>
  1667. <FileType>1</FileType>
  1668. <tvExp>0</tvExp>
  1669. <tvExpOptDlg>0</tvExpOptDlg>
  1670. <bDave2>0</bDave2>
  1671. <PathWithFileName>..\mqttclient\platform\FreeRTOS\platform_mutex.c</PathWithFileName>
  1672. <FilenameWithoutPath>platform_mutex.c</FilenameWithoutPath>
  1673. <RteFlg>0</RteFlg>
  1674. <bShared>0</bShared>
  1675. </File>
  1676. <File>
  1677. <GroupNumber>15</GroupNumber>
  1678. <FileNumber>115</FileNumber>
  1679. <FileType>1</FileType>
  1680. <tvExp>0</tvExp>
  1681. <tvExpOptDlg>0</tvExpOptDlg>
  1682. <bDave2>0</bDave2>
  1683. <PathWithFileName>..\mqttclient\platform\FreeRTOS\platform_net_socket.c</PathWithFileName>
  1684. <FilenameWithoutPath>platform_net_socket.c</FilenameWithoutPath>
  1685. <RteFlg>0</RteFlg>
  1686. <bShared>0</bShared>
  1687. </File>
  1688. <File>
  1689. <GroupNumber>15</GroupNumber>
  1690. <FileNumber>116</FileNumber>
  1691. <FileType>1</FileType>
  1692. <tvExp>0</tvExp>
  1693. <tvExpOptDlg>0</tvExpOptDlg>
  1694. <bDave2>0</bDave2>
  1695. <PathWithFileName>..\mqttclient\platform\FreeRTOS\platform_thread.c</PathWithFileName>
  1696. <FilenameWithoutPath>platform_thread.c</FilenameWithoutPath>
  1697. <RteFlg>0</RteFlg>
  1698. <bShared>0</bShared>
  1699. </File>
  1700. <File>
  1701. <GroupNumber>15</GroupNumber>
  1702. <FileNumber>117</FileNumber>
  1703. <FileType>1</FileType>
  1704. <tvExp>0</tvExp>
  1705. <tvExpOptDlg>0</tvExpOptDlg>
  1706. <bDave2>0</bDave2>
  1707. <PathWithFileName>..\mqttclient\platform\FreeRTOS\platform_timer.c</PathWithFileName>
  1708. <FilenameWithoutPath>platform_timer.c</FilenameWithoutPath>
  1709. <RteFlg>0</RteFlg>
  1710. <bShared>0</bShared>
  1711. </File>
  1712. </Group>
  1713. <Group>
  1714. <GroupName>mqttClient/config</GroupName>
  1715. <tvExp>0</tvExp>
  1716. <tvExpOptDlg>0</tvExpOptDlg>
  1717. <cbSel>0</cbSel>
  1718. <RteFlg>0</RteFlg>
  1719. <File>
  1720. <GroupNumber>16</GroupNumber>
  1721. <FileNumber>118</FileNumber>
  1722. <FileType>5</FileType>
  1723. <tvExp>0</tvExp>
  1724. <tvExpOptDlg>0</tvExpOptDlg>
  1725. <bDave2>0</bDave2>
  1726. <PathWithFileName>..\USR\include\mqtt_config.h</PathWithFileName>
  1727. <FilenameWithoutPath>mqtt_config.h</FilenameWithoutPath>
  1728. <RteFlg>0</RteFlg>
  1729. <bShared>0</bShared>
  1730. </File>
  1731. </Group>
  1732. <Group>
  1733. <GroupName>modbus</GroupName>
  1734. <tvExp>0</tvExp>
  1735. <tvExpOptDlg>0</tvExpOptDlg>
  1736. <cbSel>0</cbSel>
  1737. <RteFlg>0</RteFlg>
  1738. <File>
  1739. <GroupNumber>17</GroupNumber>
  1740. <FileNumber>119</FileNumber>
  1741. <FileType>1</FileType>
  1742. <tvExp>0</tvExp>
  1743. <tvExpOptDlg>0</tvExpOptDlg>
  1744. <bDave2>0</bDave2>
  1745. <PathWithFileName>..\modbus\mmodbus.c</PathWithFileName>
  1746. <FilenameWithoutPath>mmodbus.c</FilenameWithoutPath>
  1747. <RteFlg>0</RteFlg>
  1748. <bShared>0</bShared>
  1749. </File>
  1750. </Group>
  1751. <Group>
  1752. <GroupName>dlt645</GroupName>
  1753. <tvExp>0</tvExp>
  1754. <tvExpOptDlg>0</tvExpOptDlg>
  1755. <cbSel>0</cbSel>
  1756. <RteFlg>0</RteFlg>
  1757. <File>
  1758. <GroupNumber>18</GroupNumber>
  1759. <FileNumber>120</FileNumber>
  1760. <FileType>1</FileType>
  1761. <tvExp>0</tvExp>
  1762. <tvExpOptDlg>0</tvExpOptDlg>
  1763. <bDave2>0</bDave2>
  1764. <PathWithFileName>..\dlt\port\dlt645_port.c</PathWithFileName>
  1765. <FilenameWithoutPath>dlt645_port.c</FilenameWithoutPath>
  1766. <RteFlg>0</RteFlg>
  1767. <bShared>0</bShared>
  1768. </File>
  1769. <File>
  1770. <GroupNumber>18</GroupNumber>
  1771. <FileNumber>121</FileNumber>
  1772. <FileType>1</FileType>
  1773. <tvExp>0</tvExp>
  1774. <tvExpOptDlg>0</tvExpOptDlg>
  1775. <bDave2>0</bDave2>
  1776. <PathWithFileName>..\dlt\src\dlt645.c</PathWithFileName>
  1777. <FilenameWithoutPath>dlt645.c</FilenameWithoutPath>
  1778. <RteFlg>0</RteFlg>
  1779. <bShared>0</bShared>
  1780. </File>
  1781. <File>
  1782. <GroupNumber>18</GroupNumber>
  1783. <FileNumber>122</FileNumber>
  1784. <FileType>1</FileType>
  1785. <tvExp>0</tvExp>
  1786. <tvExpOptDlg>0</tvExpOptDlg>
  1787. <bDave2>0</bDave2>
  1788. <PathWithFileName>..\dlt\src\dlt645_1997.c</PathWithFileName>
  1789. <FilenameWithoutPath>dlt645_1997.c</FilenameWithoutPath>
  1790. <RteFlg>0</RteFlg>
  1791. <bShared>0</bShared>
  1792. </File>
  1793. <File>
  1794. <GroupNumber>18</GroupNumber>
  1795. <FileNumber>123</FileNumber>
  1796. <FileType>1</FileType>
  1797. <tvExp>0</tvExp>
  1798. <tvExpOptDlg>0</tvExpOptDlg>
  1799. <bDave2>0</bDave2>
  1800. <PathWithFileName>..\dlt\src\dlt645_2007.c</PathWithFileName>
  1801. <FilenameWithoutPath>dlt645_2007.c</FilenameWithoutPath>
  1802. <RteFlg>0</RteFlg>
  1803. <bShared>0</bShared>
  1804. </File>
  1805. <File>
  1806. <GroupNumber>18</GroupNumber>
  1807. <FileNumber>124</FileNumber>
  1808. <FileType>1</FileType>
  1809. <tvExp>0</tvExp>
  1810. <tvExpOptDlg>0</tvExpOptDlg>
  1811. <bDave2>0</bDave2>
  1812. <PathWithFileName>..\dlt\src\dlt645_data.c</PathWithFileName>
  1813. <FilenameWithoutPath>dlt645_data.c</FilenameWithoutPath>
  1814. <RteFlg>0</RteFlg>
  1815. <bShared>0</bShared>
  1816. </File>
  1817. </Group>
  1818. </ProjectOpt>