uC.uvprojx 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <Project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_projx.xsd">
  3. <SchemaVersion>2.1</SchemaVersion>
  4. <Header>### uVision Project, (C) Keil Software</Header>
  5. <Targets>
  6. <Target>
  7. <TargetName>Project</TargetName>
  8. <ToolsetNumber>0x4</ToolsetNumber>
  9. <ToolsetName>ARM-ADS</ToolsetName>
  10. <pCCUsed>5060960::V5.06 update 7 (build 960)::ARMCC</pCCUsed>
  11. <uAC6>0</uAC6>
  12. <TargetOption>
  13. <TargetCommonOption>
  14. <Device>GD32F103VE</Device>
  15. <Vendor>GigaDevice</Vendor>
  16. <PackID>GigaDevice.GD32F10x_DFP.2.0.2</PackID>
  17. <PackURL>http://gd32mcu.com/data/documents/pack/</PackURL>
  18. <Cpu>IRAM(0x20000000,0x00010000) IROM(0x08000000,0x00080000) CPUTYPE("Cortex-M3") CLOCK(12000000) ELITTLE</Cpu>
  19. <FlashUtilSpec></FlashUtilSpec>
  20. <StartupFile></StartupFile>
  21. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0GD32F10x_HD -FS08000000 -FL080000 -FP0($$Device:GD32F103VE$Flash\GD32F10x_HD.FLM))</FlashDriverDll>
  22. <DeviceId>0</DeviceId>
  23. <RegisterFile>$$Device:GD32F103VE$Device\Include\gd32f10x.h</RegisterFile>
  24. <MemoryEnv></MemoryEnv>
  25. <Cmp></Cmp>
  26. <Asm></Asm>
  27. <Linker></Linker>
  28. <OHString></OHString>
  29. <InfinionOptionDll></InfinionOptionDll>
  30. <SLE66CMisc></SLE66CMisc>
  31. <SLE66AMisc></SLE66AMisc>
  32. <SLE66LinkerMisc></SLE66LinkerMisc>
  33. <SFDFile>$$Device:GD32F103VE$SVD\GD32F10x\GD32F10x_HD.svd</SFDFile>
  34. <bCustSvd>0</bCustSvd>
  35. <UseEnv>0</UseEnv>
  36. <BinPath></BinPath>
  37. <IncludePath></IncludePath>
  38. <LibPath></LibPath>
  39. <RegisterFilePath></RegisterFilePath>
  40. <DBRegisterFilePath></DBRegisterFilePath>
  41. <TargetStatus>
  42. <Error>0</Error>
  43. <ExitCodeStop>0</ExitCodeStop>
  44. <ButtonStop>0</ButtonStop>
  45. <NotGenerated>0</NotGenerated>
  46. <InvalidFlash>1</InvalidFlash>
  47. </TargetStatus>
  48. <OutputDirectory>.\Output\</OutputDirectory>
  49. <OutputName>uC</OutputName>
  50. <CreateExecutable>1</CreateExecutable>
  51. <CreateLib>0</CreateLib>
  52. <CreateHexFile>1</CreateHexFile>
  53. <DebugInformation>1</DebugInformation>
  54. <BrowseInformation>1</BrowseInformation>
  55. <ListingPath>.\List\</ListingPath>
  56. <HexFormatSelection>1</HexFormatSelection>
  57. <Merge32K>0</Merge32K>
  58. <CreateBatchFile>0</CreateBatchFile>
  59. <BeforeCompile>
  60. <RunUserProg1>0</RunUserProg1>
  61. <RunUserProg2>0</RunUserProg2>
  62. <UserProg1Name></UserProg1Name>
  63. <UserProg2Name></UserProg2Name>
  64. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  65. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  66. <nStopU1X>0</nStopU1X>
  67. <nStopU2X>0</nStopU2X>
  68. </BeforeCompile>
  69. <BeforeMake>
  70. <RunUserProg1>0</RunUserProg1>
  71. <RunUserProg2>0</RunUserProg2>
  72. <UserProg1Name></UserProg1Name>
  73. <UserProg2Name></UserProg2Name>
  74. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  75. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  76. <nStopB1X>0</nStopB1X>
  77. <nStopB2X>0</nStopB2X>
  78. </BeforeMake>
  79. <AfterMake>
  80. <RunUserProg1>1</RunUserProg1>
  81. <RunUserProg2>1</RunUserProg2>
  82. <UserProg1Name>fromelf --bin !L --output app.bin</UserProg1Name>
  83. <UserProg2Name>wbjw_bin.exe -a 08020000 -d 0101 -f 3 -v 01C -r .\app.bin</UserProg2Name>
  84. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  85. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  86. <nStopA1X>0</nStopA1X>
  87. <nStopA2X>0</nStopA2X>
  88. </AfterMake>
  89. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  90. <SVCSIdString></SVCSIdString>
  91. </TargetCommonOption>
  92. <CommonProperty>
  93. <UseCPPCompiler>0</UseCPPCompiler>
  94. <RVCTCodeConst>0</RVCTCodeConst>
  95. <RVCTZI>0</RVCTZI>
  96. <RVCTOtherData>0</RVCTOtherData>
  97. <ModuleSelection>0</ModuleSelection>
  98. <IncludeInBuild>1</IncludeInBuild>
  99. <AlwaysBuild>0</AlwaysBuild>
  100. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  101. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  102. <PublicsOnly>0</PublicsOnly>
  103. <StopOnExitCode>3</StopOnExitCode>
  104. <CustomArgument></CustomArgument>
  105. <IncludeLibraryModules></IncludeLibraryModules>
  106. <ComprImg>1</ComprImg>
  107. </CommonProperty>
  108. <DllOption>
  109. <SimDllName>SARMCM3.DLL</SimDllName>
  110. <SimDllArguments> -REMAP</SimDllArguments>
  111. <SimDlgDll>DCM.DLL</SimDlgDll>
  112. <SimDlgDllArguments>-pCM3</SimDlgDllArguments>
  113. <TargetDllName>SARMCM3.DLL</TargetDllName>
  114. <TargetDllArguments></TargetDllArguments>
  115. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  116. <TargetDlgDllArguments>-pCM3</TargetDlgDllArguments>
  117. </DllOption>
  118. <DebugOption>
  119. <OPTHX>
  120. <HexSelection>1</HexSelection>
  121. <HexRangeLowAddress>0</HexRangeLowAddress>
  122. <HexRangeHighAddress>0</HexRangeHighAddress>
  123. <HexOffset>0</HexOffset>
  124. <Oh166RecLen>16</Oh166RecLen>
  125. </OPTHX>
  126. </DebugOption>
  127. <Utilities>
  128. <Flash1>
  129. <UseTargetDll>1</UseTargetDll>
  130. <UseExternalTool>0</UseExternalTool>
  131. <RunIndependent>0</RunIndependent>
  132. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  133. <Capability>1</Capability>
  134. <DriverSelection>4096</DriverSelection>
  135. </Flash1>
  136. <bUseTDR>1</bUseTDR>
  137. <Flash2>BIN\UL2CM3.DLL</Flash2>
  138. <Flash3>"" ()</Flash3>
  139. <Flash4></Flash4>
  140. <pFcarmOut></pFcarmOut>
  141. <pFcarmGrp></pFcarmGrp>
  142. <pFcArmRoot></pFcArmRoot>
  143. <FcArmLst>0</FcArmLst>
  144. </Utilities>
  145. <TargetArmAds>
  146. <ArmAdsMisc>
  147. <GenerateListings>0</GenerateListings>
  148. <asHll>1</asHll>
  149. <asAsm>1</asAsm>
  150. <asMacX>1</asMacX>
  151. <asSyms>1</asSyms>
  152. <asFals>1</asFals>
  153. <asDbgD>1</asDbgD>
  154. <asForm>1</asForm>
  155. <ldLst>0</ldLst>
  156. <ldmm>1</ldmm>
  157. <ldXref>1</ldXref>
  158. <BigEnd>0</BigEnd>
  159. <AdsALst>1</AdsALst>
  160. <AdsACrf>1</AdsACrf>
  161. <AdsANop>0</AdsANop>
  162. <AdsANot>0</AdsANot>
  163. <AdsLLst>1</AdsLLst>
  164. <AdsLmap>1</AdsLmap>
  165. <AdsLcgr>1</AdsLcgr>
  166. <AdsLsym>1</AdsLsym>
  167. <AdsLszi>1</AdsLszi>
  168. <AdsLtoi>1</AdsLtoi>
  169. <AdsLsun>1</AdsLsun>
  170. <AdsLven>1</AdsLven>
  171. <AdsLsxf>1</AdsLsxf>
  172. <RvctClst>0</RvctClst>
  173. <GenPPlst>0</GenPPlst>
  174. <AdsCpuType>"Cortex-M3"</AdsCpuType>
  175. <RvctDeviceName></RvctDeviceName>
  176. <mOS>0</mOS>
  177. <uocRom>0</uocRom>
  178. <uocRam>0</uocRam>
  179. <hadIROM>1</hadIROM>
  180. <hadIRAM>1</hadIRAM>
  181. <hadXRAM>0</hadXRAM>
  182. <uocXRam>0</uocXRam>
  183. <RvdsVP>0</RvdsVP>
  184. <RvdsMve>0</RvdsMve>
  185. <RvdsCdeCp>0</RvdsCdeCp>
  186. <hadIRAM2>0</hadIRAM2>
  187. <hadIROM2>0</hadIROM2>
  188. <StupSel>8</StupSel>
  189. <useUlib>1</useUlib>
  190. <EndSel>0</EndSel>
  191. <uLtcg>0</uLtcg>
  192. <nSecure>0</nSecure>
  193. <RoSelD>3</RoSelD>
  194. <RwSelD>3</RwSelD>
  195. <CodeSel>0</CodeSel>
  196. <OptFeed>0</OptFeed>
  197. <NoZi1>0</NoZi1>
  198. <NoZi2>0</NoZi2>
  199. <NoZi3>0</NoZi3>
  200. <NoZi4>0</NoZi4>
  201. <NoZi5>0</NoZi5>
  202. <Ro1Chk>0</Ro1Chk>
  203. <Ro2Chk>0</Ro2Chk>
  204. <Ro3Chk>0</Ro3Chk>
  205. <Ir1Chk>1</Ir1Chk>
  206. <Ir2Chk>0</Ir2Chk>
  207. <Ra1Chk>0</Ra1Chk>
  208. <Ra2Chk>0</Ra2Chk>
  209. <Ra3Chk>0</Ra3Chk>
  210. <Im1Chk>1</Im1Chk>
  211. <Im2Chk>0</Im2Chk>
  212. <OnChipMemories>
  213. <Ocm1>
  214. <Type>0</Type>
  215. <StartAddress>0x0</StartAddress>
  216. <Size>0x0</Size>
  217. </Ocm1>
  218. <Ocm2>
  219. <Type>0</Type>
  220. <StartAddress>0x0</StartAddress>
  221. <Size>0x0</Size>
  222. </Ocm2>
  223. <Ocm3>
  224. <Type>0</Type>
  225. <StartAddress>0x0</StartAddress>
  226. <Size>0x0</Size>
  227. </Ocm3>
  228. <Ocm4>
  229. <Type>0</Type>
  230. <StartAddress>0x0</StartAddress>
  231. <Size>0x0</Size>
  232. </Ocm4>
  233. <Ocm5>
  234. <Type>0</Type>
  235. <StartAddress>0x0</StartAddress>
  236. <Size>0x0</Size>
  237. </Ocm5>
  238. <Ocm6>
  239. <Type>0</Type>
  240. <StartAddress>0x0</StartAddress>
  241. <Size>0x0</Size>
  242. </Ocm6>
  243. <IRAM>
  244. <Type>0</Type>
  245. <StartAddress>0x20000000</StartAddress>
  246. <Size>0x10000</Size>
  247. </IRAM>
  248. <IROM>
  249. <Type>1</Type>
  250. <StartAddress>0x8000000</StartAddress>
  251. <Size>0x80000</Size>
  252. </IROM>
  253. <XRAM>
  254. <Type>0</Type>
  255. <StartAddress>0x0</StartAddress>
  256. <Size>0x0</Size>
  257. </XRAM>
  258. <OCR_RVCT1>
  259. <Type>1</Type>
  260. <StartAddress>0x0</StartAddress>
  261. <Size>0x0</Size>
  262. </OCR_RVCT1>
  263. <OCR_RVCT2>
  264. <Type>1</Type>
  265. <StartAddress>0x0</StartAddress>
  266. <Size>0x0</Size>
  267. </OCR_RVCT2>
  268. <OCR_RVCT3>
  269. <Type>1</Type>
  270. <StartAddress>0x0</StartAddress>
  271. <Size>0x0</Size>
  272. </OCR_RVCT3>
  273. <OCR_RVCT4>
  274. <Type>1</Type>
  275. <StartAddress>0x8020000</StartAddress>
  276. <Size>0x20000</Size>
  277. </OCR_RVCT4>
  278. <OCR_RVCT5>
  279. <Type>1</Type>
  280. <StartAddress>0x0</StartAddress>
  281. <Size>0x0</Size>
  282. </OCR_RVCT5>
  283. <OCR_RVCT6>
  284. <Type>0</Type>
  285. <StartAddress>0x0</StartAddress>
  286. <Size>0x0</Size>
  287. </OCR_RVCT6>
  288. <OCR_RVCT7>
  289. <Type>0</Type>
  290. <StartAddress>0x0</StartAddress>
  291. <Size>0x0</Size>
  292. </OCR_RVCT7>
  293. <OCR_RVCT8>
  294. <Type>0</Type>
  295. <StartAddress>0x0</StartAddress>
  296. <Size>0x0</Size>
  297. </OCR_RVCT8>
  298. <OCR_RVCT9>
  299. <Type>0</Type>
  300. <StartAddress>0x20000000</StartAddress>
  301. <Size>0x10000</Size>
  302. </OCR_RVCT9>
  303. <OCR_RVCT10>
  304. <Type>0</Type>
  305. <StartAddress>0x0</StartAddress>
  306. <Size>0x0</Size>
  307. </OCR_RVCT10>
  308. </OnChipMemories>
  309. <RvctStartVector></RvctStartVector>
  310. </ArmAdsMisc>
  311. <Cads>
  312. <interw>1</interw>
  313. <Optim>1</Optim>
  314. <oTime>0</oTime>
  315. <SplitLS>0</SplitLS>
  316. <OneElfS>1</OneElfS>
  317. <Strict>0</Strict>
  318. <EnumInt>0</EnumInt>
  319. <PlainCh>0</PlainCh>
  320. <Ropi>0</Ropi>
  321. <Rwpi>0</Rwpi>
  322. <wLevel>0</wLevel>
  323. <uThumb>0</uThumb>
  324. <uSurpInc>0</uSurpInc>
  325. <uC99>0</uC99>
  326. <uGnu>0</uGnu>
  327. <useXO>0</useXO>
  328. <v6Lang>1</v6Lang>
  329. <v6LangP>1</v6LangP>
  330. <vShortEn>1</vShortEn>
  331. <vShortWch>1</vShortWch>
  332. <v6Lto>0</v6Lto>
  333. <v6WtE>0</v6WtE>
  334. <v6Rtti>0</v6Rtti>
  335. <VariousControls>
  336. <MiscControls></MiscControls>
  337. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER,GAS_STATION</Define>
  338. <Undefine></Undefine>
  339. <IncludePath>..\APP;..\BSP;..\User;..\_Lib-3.5\CMSIS;..\_Lib-3.5\StartUp;..\_Lib-3.5\StdPeriph_Driver\inc;..\_uCOS-III\uC-Config;..\_uCOS-III\uC-CPU;..\_uCOS-III\uC-LIB;..\_uCOS-III\uC-OS-Port;..\_uCOS-III\uC-OS-Source;..\APP\command;..\APP\network_mgr\at;..\APP\dev_mgr\taxctrl;..\APP\dev_mgr\common;..\APP\network_mgr\sx1268\peripherals\radio\sx126x;..\APP\network_mgr\sx1268\HAL;..\APP\network_mgr\me3616;..\APP\network_mgr;..\APP\ota;..\APP\network_mgr\sx1268\peripherals\radio;..\APP\dev_mgr\oiltank;..\APP\dev_mgr\gateway;..\APP\storage;..\APP\toolkit;..\APP\des;..\APP\gateway_collect;..\APP\tax;..\APP\network;..\APP\encode;..\APP\sm4</IncludePath>
  340. </VariousControls>
  341. </Cads>
  342. <Aads>
  343. <interw>1</interw>
  344. <Ropi>0</Ropi>
  345. <Rwpi>0</Rwpi>
  346. <thumb>0</thumb>
  347. <SplitLS>0</SplitLS>
  348. <SwStkChk>0</SwStkChk>
  349. <NoWarn>0</NoWarn>
  350. <uSurpInc>0</uSurpInc>
  351. <useXO>0</useXO>
  352. <ClangAsOpt>4</ClangAsOpt>
  353. <VariousControls>
  354. <MiscControls></MiscControls>
  355. <Define></Define>
  356. <Undefine></Undefine>
  357. <IncludePath></IncludePath>
  358. </VariousControls>
  359. </Aads>
  360. <LDads>
  361. <umfTarg>1</umfTarg>
  362. <Ropi>0</Ropi>
  363. <Rwpi>0</Rwpi>
  364. <noStLib>0</noStLib>
  365. <RepFail>1</RepFail>
  366. <useFile>0</useFile>
  367. <TextAddressRange>0x08000000</TextAddressRange>
  368. <DataAddressRange>0x20000000</DataAddressRange>
  369. <pXoBase></pXoBase>
  370. <ScatterFile></ScatterFile>
  371. <IncludeLibs></IncludeLibs>
  372. <IncludeLibsPath></IncludeLibsPath>
  373. <Misc></Misc>
  374. <LinkerInputFile></LinkerInputFile>
  375. <DisabledWarnings></DisabledWarnings>
  376. </LDads>
  377. </TargetArmAds>
  378. </TargetOption>
  379. <Groups>
  380. <Group>
  381. <GroupName>USER</GroupName>
  382. <Files>
  383. <File>
  384. <FileName>main.c</FileName>
  385. <FileType>1</FileType>
  386. <FilePath>..\User\main.c</FilePath>
  387. </File>
  388. <File>
  389. <FileName>stm32f10x_it.c</FileName>
  390. <FileType>1</FileType>
  391. <FilePath>..\User\stm32f10x_it.c</FilePath>
  392. </File>
  393. <File>
  394. <FileName>stm32f10x_it.h</FileName>
  395. <FileType>5</FileType>
  396. <FilePath>..\User\stm32f10x_it.h</FilePath>
  397. </File>
  398. </Files>
  399. </Group>
  400. <Group>
  401. <GroupName>BSP</GroupName>
  402. <Files>
  403. <File>
  404. <FileName>BSP.c</FileName>
  405. <FileType>1</FileType>
  406. <FilePath>..\BSP\BSP.c</FilePath>
  407. </File>
  408. <File>
  409. <FileName>Flash.c</FileName>
  410. <FileType>1</FileType>
  411. <FilePath>..\BSP\Flash.c</FilePath>
  412. </File>
  413. <File>
  414. <FileName>Uart.c</FileName>
  415. <FileType>1</FileType>
  416. <FilePath>..\BSP\Uart.c</FilePath>
  417. </File>
  418. <File>
  419. <FileName>includes.h</FileName>
  420. <FileType>5</FileType>
  421. <FilePath>..\User\includes.h</FilePath>
  422. </File>
  423. <File>
  424. <FileName>rtc.c</FileName>
  425. <FileType>1</FileType>
  426. <FilePath>..\BSP\rtc.c</FilePath>
  427. </File>
  428. </Files>
  429. </Group>
  430. <Group>
  431. <GroupName>APP</GroupName>
  432. <Files>
  433. <File>
  434. <FileName>app.h</FileName>
  435. <FileType>5</FileType>
  436. <FilePath>..\APP\app.h</FilePath>
  437. </File>
  438. <File>
  439. <FileName>app_cfg.h</FileName>
  440. <FileType>5</FileType>
  441. <FilePath>..\APP\app_cfg.h</FilePath>
  442. </File>
  443. <File>
  444. <FileName>app.c</FileName>
  445. <FileType>1</FileType>
  446. <FilePath>..\APP\app.c</FilePath>
  447. </File>
  448. <File>
  449. <FileName>tax_ctrl.c</FileName>
  450. <FileType>1</FileType>
  451. <FilePath>..\APP\dev_mgr\taxctrl\tax_ctrl.c</FilePath>
  452. </File>
  453. <File>
  454. <FileName>device.c</FileName>
  455. <FileType>1</FileType>
  456. <FilePath>..\APP\dev_mgr\common\device.c</FilePath>
  457. </File>
  458. <File>
  459. <FileName>w25qxx.c</FileName>
  460. <FileType>1</FileType>
  461. <FilePath>..\APP\storage\w25qxx.c</FilePath>
  462. </File>
  463. <File>
  464. <FileName>console.c</FileName>
  465. <FileType>1</FileType>
  466. <FilePath>..\APP\command\console.c</FilePath>
  467. </File>
  468. <File>
  469. <FileName>strfunc.c</FileName>
  470. <FileType>1</FileType>
  471. <FilePath>..\APP\command\strfunc.c</FilePath>
  472. </File>
  473. <File>
  474. <FileName>test_cli.c</FileName>
  475. <FileType>1</FileType>
  476. <FilePath>..\APP\command\test_cli.c</FilePath>
  477. </File>
  478. <File>
  479. <FileName>trace.c</FileName>
  480. <FileType>1</FileType>
  481. <FilePath>..\APP\command\trace.c</FilePath>
  482. </File>
  483. <File>
  484. <FileName>at_module.c</FileName>
  485. <FileType>1</FileType>
  486. <FilePath>..\APP\network_mgr\at\at_module.c</FilePath>
  487. </File>
  488. <File>
  489. <FileName>gpio.c</FileName>
  490. <FileType>1</FileType>
  491. <FilePath>..\APP\network_mgr\lora\lora_adapt\gpio.c</FilePath>
  492. </File>
  493. <File>
  494. <FileName>spi.c</FileName>
  495. <FileType>1</FileType>
  496. <FilePath>..\APP\network_mgr\lora\lora_adapt\spi.c</FilePath>
  497. </File>
  498. <File>
  499. <FileName>net_proc.c</FileName>
  500. <FileType>1</FileType>
  501. <FilePath>..\APP\network_mgr\net_proc.c</FilePath>
  502. </File>
  503. <File>
  504. <FileName>air72x.c</FileName>
  505. <FileType>1</FileType>
  506. <FilePath>..\APP\network_mgr\air72x\air72x.c</FilePath>
  507. </File>
  508. <File>
  509. <FileName>radio.c</FileName>
  510. <FileType>1</FileType>
  511. <FilePath>..\APP\network_mgr\sx1268\peripherals\radio\sx126x\radio.c</FilePath>
  512. </File>
  513. <File>
  514. <FileName>sx126x.c</FileName>
  515. <FileType>1</FileType>
  516. <FilePath>..\APP\network_mgr\sx1268\peripherals\radio\sx126x\sx126x.c</FilePath>
  517. </File>
  518. <File>
  519. <FileName>HAL_SPI.c</FileName>
  520. <FileType>1</FileType>
  521. <FilePath>..\APP\network_mgr\sx1268\HAL\HAL_SPI.c</FilePath>
  522. </File>
  523. <File>
  524. <FileName>SX126xSTM32F103-board.c</FileName>
  525. <FileType>1</FileType>
  526. <FilePath>..\APP\network_mgr\sx1268\HAL\SX126xSTM32F103-board.c</FilePath>
  527. </File>
  528. <File>
  529. <FileName>delay.c</FileName>
  530. <FileType>1</FileType>
  531. <FilePath>..\APP\network_mgr\sx1268\HAL\delay.c</FilePath>
  532. </File>
  533. <File>
  534. <FileName>lora.c</FileName>
  535. <FileType>1</FileType>
  536. <FilePath>..\APP\network_mgr\sx1268\lora.c</FilePath>
  537. </File>
  538. <File>
  539. <FileName>AT24C128.c</FileName>
  540. <FileType>1</FileType>
  541. <FilePath>..\APP\storage\AT24C128.c</FilePath>
  542. </File>
  543. <File>
  544. <FileName>gateway.c</FileName>
  545. <FileType>1</FileType>
  546. <FilePath>..\APP\dev_mgr\gateway\gateway.c</FilePath>
  547. </File>
  548. <File>
  549. <FileName>adc.c</FileName>
  550. <FileType>1</FileType>
  551. <FilePath>..\BSP\adc.c</FilePath>
  552. </File>
  553. <File>
  554. <FileName>can.c</FileName>
  555. <FileType>1</FileType>
  556. <FilePath>..\BSP\can.c</FilePath>
  557. </File>
  558. <File>
  559. <FileName>m95512.c</FileName>
  560. <FileType>1</FileType>
  561. <FilePath>..\APP\storage\m95512.c</FilePath>
  562. </File>
  563. <File>
  564. <FileName>des.c</FileName>
  565. <FileType>1</FileType>
  566. <FilePath>..\APP\des\des.c</FilePath>
  567. </File>
  568. <File>
  569. <FileName>net_ctrl.c</FileName>
  570. <FileType>1</FileType>
  571. <FilePath>..\APP\network_mgr\net_ctrl.c</FilePath>
  572. </File>
  573. <File>
  574. <FileName>gateway_collect.c</FileName>
  575. <FileType>1</FileType>
  576. <FilePath>..\APP\gateway_collect\gateway_collect.c</FilePath>
  577. </File>
  578. <File>
  579. <FileName>tax.c</FileName>
  580. <FileType>1</FileType>
  581. <FilePath>..\APP\tax\tax.c</FilePath>
  582. </File>
  583. <File>
  584. <FileName>uplink.c</FileName>
  585. <FileType>1</FileType>
  586. <FilePath>..\APP\network\uplink.c</FilePath>
  587. </File>
  588. <File>
  589. <FileName>downlink.c</FileName>
  590. <FileType>1</FileType>
  591. <FilePath>..\APP\network\downlink.c</FilePath>
  592. </File>
  593. <File>
  594. <FileName>uart_conf.c</FileName>
  595. <FileType>1</FileType>
  596. <FilePath>..\APP\command\uart_conf.c</FilePath>
  597. </File>
  598. <File>
  599. <FileName>ota.c</FileName>
  600. <FileType>1</FileType>
  601. <FilePath>..\APP\ota\ota.c</FilePath>
  602. </File>
  603. <File>
  604. <FileName>globalDef.c</FileName>
  605. <FileType>1</FileType>
  606. <FilePath>..\APP\globalDef.c</FilePath>
  607. </File>
  608. <File>
  609. <FileName>nettimer.c</FileName>
  610. <FileType>1</FileType>
  611. <FilePath>..\APP\network\nettimer.c</FilePath>
  612. </File>
  613. <File>
  614. <FileName>AT24C128Opt.c</FileName>
  615. <FileType>1</FileType>
  616. <FilePath>..\APP\storage\AT24C128Opt.c</FilePath>
  617. </File>
  618. <File>
  619. <FileName>CH455G.c</FileName>
  620. <FileType>1</FileType>
  621. <FilePath>..\APP\toolkit\CH455G.c</FilePath>
  622. </File>
  623. <File>
  624. <FileName>timeout.c</FileName>
  625. <FileType>1</FileType>
  626. <FilePath>..\APP\network\timeout.c</FilePath>
  627. </File>
  628. <File>
  629. <FileName>encodeOpt.c</FileName>
  630. <FileType>1</FileType>
  631. <FilePath>..\APP\encode\encodeOpt.c</FilePath>
  632. </File>
  633. <File>
  634. <FileName>sm4_src.c</FileName>
  635. <FileType>1</FileType>
  636. <FilePath>..\APP\sm4\sm4_src.c</FilePath>
  637. </File>
  638. </Files>
  639. </Group>
  640. <Group>
  641. <GroupName>Lib3.5/Startup</GroupName>
  642. <Files>
  643. <File>
  644. <FileName>startup_stm32f10x_hd.s</FileName>
  645. <FileType>2</FileType>
  646. <FilePath>..\_Lib-3.5\StartUp\startup_stm32f10x_hd.s</FilePath>
  647. </File>
  648. </Files>
  649. </Group>
  650. <Group>
  651. <GroupName>Lib3.5/CMSIS</GroupName>
  652. <Files>
  653. <File>
  654. <FileName>core_cm3.c</FileName>
  655. <FileType>1</FileType>
  656. <FilePath>..\_Lib-3.5\CMSIS\core_cm3.c</FilePath>
  657. </File>
  658. <File>
  659. <FileName>core_cm3.h</FileName>
  660. <FileType>5</FileType>
  661. <FilePath>..\_Lib-3.5\CMSIS\core_cm3.h</FilePath>
  662. </File>
  663. <File>
  664. <FileName>stm32f10x.h</FileName>
  665. <FileType>5</FileType>
  666. <FilePath>..\_Lib-3.5\CMSIS\stm32f10x.h</FilePath>
  667. </File>
  668. <File>
  669. <FileName>stm32f10x_conf.h</FileName>
  670. <FileType>5</FileType>
  671. <FilePath>..\_Lib-3.5\CMSIS\stm32f10x_conf.h</FilePath>
  672. </File>
  673. <File>
  674. <FileName>system_stm32f10x.c</FileName>
  675. <FileType>1</FileType>
  676. <FilePath>..\_Lib-3.5\CMSIS\system_stm32f10x.c</FilePath>
  677. </File>
  678. <File>
  679. <FileName>system_stm32f10x.h</FileName>
  680. <FileType>5</FileType>
  681. <FilePath>..\_Lib-3.5\CMSIS\system_stm32f10x.h</FilePath>
  682. </File>
  683. </Files>
  684. </Group>
  685. <Group>
  686. <GroupName>Lib3.5/StdPeriph_Driver</GroupName>
  687. <Files>
  688. <File>
  689. <FileName>misc.c</FileName>
  690. <FileType>1</FileType>
  691. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\misc.c</FilePath>
  692. </File>
  693. <File>
  694. <FileName>stm32f10x_adc.c</FileName>
  695. <FileType>1</FileType>
  696. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_adc.c</FilePath>
  697. </File>
  698. <File>
  699. <FileName>stm32f10x_bkp.c</FileName>
  700. <FileType>1</FileType>
  701. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_bkp.c</FilePath>
  702. </File>
  703. <File>
  704. <FileName>stm32f10x_can.c</FileName>
  705. <FileType>1</FileType>
  706. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_can.c</FilePath>
  707. </File>
  708. <File>
  709. <FileName>stm32f10x_cec.c</FileName>
  710. <FileType>1</FileType>
  711. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_cec.c</FilePath>
  712. </File>
  713. <File>
  714. <FileName>stm32f10x_crc.c</FileName>
  715. <FileType>1</FileType>
  716. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_crc.c</FilePath>
  717. </File>
  718. <File>
  719. <FileName>stm32f10x_dac.c</FileName>
  720. <FileType>1</FileType>
  721. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_dac.c</FilePath>
  722. </File>
  723. <File>
  724. <FileName>stm32f10x_dbgmcu.c</FileName>
  725. <FileType>1</FileType>
  726. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_dbgmcu.c</FilePath>
  727. </File>
  728. <File>
  729. <FileName>stm32f10x_dma.c</FileName>
  730. <FileType>1</FileType>
  731. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_dma.c</FilePath>
  732. </File>
  733. <File>
  734. <FileName>stm32f10x_exti.c</FileName>
  735. <FileType>1</FileType>
  736. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_exti.c</FilePath>
  737. </File>
  738. <File>
  739. <FileName>stm32f10x_flash.c</FileName>
  740. <FileType>1</FileType>
  741. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_flash.c</FilePath>
  742. </File>
  743. <File>
  744. <FileName>stm32f10x_fsmc.c</FileName>
  745. <FileType>1</FileType>
  746. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_fsmc.c</FilePath>
  747. </File>
  748. <File>
  749. <FileName>stm32f10x_gpio.c</FileName>
  750. <FileType>1</FileType>
  751. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_gpio.c</FilePath>
  752. </File>
  753. <File>
  754. <FileName>stm32f10x_i2c.c</FileName>
  755. <FileType>1</FileType>
  756. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_i2c.c</FilePath>
  757. </File>
  758. <File>
  759. <FileName>stm32f10x_iwdg.c</FileName>
  760. <FileType>1</FileType>
  761. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_iwdg.c</FilePath>
  762. </File>
  763. <File>
  764. <FileName>stm32f10x_pwr.c</FileName>
  765. <FileType>1</FileType>
  766. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_pwr.c</FilePath>
  767. </File>
  768. <File>
  769. <FileName>stm32f10x_rcc.c</FileName>
  770. <FileType>1</FileType>
  771. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_rcc.c</FilePath>
  772. </File>
  773. <File>
  774. <FileName>stm32f10x_rtc.c</FileName>
  775. <FileType>1</FileType>
  776. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_rtc.c</FilePath>
  777. </File>
  778. <File>
  779. <FileName>stm32f10x_sdio.c</FileName>
  780. <FileType>1</FileType>
  781. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_sdio.c</FilePath>
  782. </File>
  783. <File>
  784. <FileName>stm32f10x_spi.c</FileName>
  785. <FileType>1</FileType>
  786. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_spi.c</FilePath>
  787. </File>
  788. <File>
  789. <FileName>stm32f10x_tim.c</FileName>
  790. <FileType>1</FileType>
  791. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_tim.c</FilePath>
  792. </File>
  793. <File>
  794. <FileName>stm32f10x_usart.c</FileName>
  795. <FileType>1</FileType>
  796. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_usart.c</FilePath>
  797. </File>
  798. <File>
  799. <FileName>stm32f10x_wwdg.c</FileName>
  800. <FileType>1</FileType>
  801. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_wwdg.c</FilePath>
  802. </File>
  803. </Files>
  804. </Group>
  805. <Group>
  806. <GroupName>uCOS/Config</GroupName>
  807. <Files>
  808. <File>
  809. <FileName>os_cfg_app.h</FileName>
  810. <FileType>5</FileType>
  811. <FilePath>..\_uCOS-III\uC-Config\os_cfg_app.h</FilePath>
  812. </File>
  813. <File>
  814. <FileName>os_cfg.h</FileName>
  815. <FileType>5</FileType>
  816. <FilePath>..\_uCOS-III\uC-Config\os_cfg.h</FilePath>
  817. </File>
  818. <File>
  819. <FileName>os_type.h</FileName>
  820. <FileType>5</FileType>
  821. <FilePath>..\_uCOS-III\uC-Config\os_type.h</FilePath>
  822. </File>
  823. <File>
  824. <FileName>os_app_hooks.c</FileName>
  825. <FileType>1</FileType>
  826. <FilePath>..\_uCOS-III\uC-Config\os_app_hooks.c</FilePath>
  827. </File>
  828. <File>
  829. <FileName>os_app_hooks.h</FileName>
  830. <FileType>5</FileType>
  831. <FilePath>..\_uCOS-III\uC-Config\os_app_hooks.h</FilePath>
  832. </File>
  833. <File>
  834. <FileName>lib_cfg.h</FileName>
  835. <FileType>5</FileType>
  836. <FilePath>..\_uCOS-III\uC-Config\lib_cfg.h</FilePath>
  837. </File>
  838. <File>
  839. <FileName>cpu_cfg.h</FileName>
  840. <FileType>5</FileType>
  841. <FilePath>..\_uCOS-III\uC-Config\cpu_cfg.h</FilePath>
  842. </File>
  843. </Files>
  844. </Group>
  845. <Group>
  846. <GroupName>uCOS/Source</GroupName>
  847. <Files>
  848. <File>
  849. <FileName>os.h</FileName>
  850. <FileType>5</FileType>
  851. <FilePath>..\_uCOS-III\uC-OS-Source\os.h</FilePath>
  852. </File>
  853. <File>
  854. <FileName>os_cfg_app.c</FileName>
  855. <FileType>1</FileType>
  856. <FilePath>..\_uCOS-III\uC-OS-Source\os_cfg_app.c</FilePath>
  857. </File>
  858. <File>
  859. <FileName>os_core.c</FileName>
  860. <FileType>1</FileType>
  861. <FilePath>..\_uCOS-III\uC-OS-Source\os_core.c</FilePath>
  862. </File>
  863. <File>
  864. <FileName>os_dbg.c</FileName>
  865. <FileType>1</FileType>
  866. <FilePath>..\_uCOS-III\uC-OS-Source\os_dbg.c</FilePath>
  867. </File>
  868. <File>
  869. <FileName>os_flag.c</FileName>
  870. <FileType>1</FileType>
  871. <FilePath>..\_uCOS-III\uC-OS-Source\os_flag.c</FilePath>
  872. </File>
  873. <File>
  874. <FileName>os_int.c</FileName>
  875. <FileType>1</FileType>
  876. <FilePath>..\_uCOS-III\uC-OS-Source\os_int.c</FilePath>
  877. </File>
  878. <File>
  879. <FileName>os_mem.c</FileName>
  880. <FileType>1</FileType>
  881. <FilePath>..\_uCOS-III\uC-OS-Source\os_mem.c</FilePath>
  882. </File>
  883. <File>
  884. <FileName>os_msg.c</FileName>
  885. <FileType>1</FileType>
  886. <FilePath>..\_uCOS-III\uC-OS-Source\os_msg.c</FilePath>
  887. </File>
  888. <File>
  889. <FileName>os_mutex.c</FileName>
  890. <FileType>1</FileType>
  891. <FilePath>..\_uCOS-III\uC-OS-Source\os_mutex.c</FilePath>
  892. </File>
  893. <File>
  894. <FileName>os_pend_multi.c</FileName>
  895. <FileType>1</FileType>
  896. <FilePath>..\_uCOS-III\uC-OS-Source\os_pend_multi.c</FilePath>
  897. </File>
  898. <File>
  899. <FileName>os_prio.c</FileName>
  900. <FileType>1</FileType>
  901. <FilePath>..\_uCOS-III\uC-OS-Source\os_prio.c</FilePath>
  902. </File>
  903. <File>
  904. <FileName>os_q.c</FileName>
  905. <FileType>1</FileType>
  906. <FilePath>..\_uCOS-III\uC-OS-Source\os_q.c</FilePath>
  907. </File>
  908. <File>
  909. <FileName>os_sem.c</FileName>
  910. <FileType>1</FileType>
  911. <FilePath>..\_uCOS-III\uC-OS-Source\os_sem.c</FilePath>
  912. </File>
  913. <File>
  914. <FileName>os_stat.c</FileName>
  915. <FileType>1</FileType>
  916. <FilePath>..\_uCOS-III\uC-OS-Source\os_stat.c</FilePath>
  917. </File>
  918. <File>
  919. <FileName>os_task.c</FileName>
  920. <FileType>1</FileType>
  921. <FilePath>..\_uCOS-III\uC-OS-Source\os_task.c</FilePath>
  922. </File>
  923. <File>
  924. <FileName>os_tick.c</FileName>
  925. <FileType>1</FileType>
  926. <FilePath>..\_uCOS-III\uC-OS-Source\os_tick.c</FilePath>
  927. </File>
  928. <File>
  929. <FileName>os_time.c</FileName>
  930. <FileType>1</FileType>
  931. <FilePath>..\_uCOS-III\uC-OS-Source\os_time.c</FilePath>
  932. </File>
  933. <File>
  934. <FileName>os_tmr.c</FileName>
  935. <FileType>1</FileType>
  936. <FilePath>..\_uCOS-III\uC-OS-Source\os_tmr.c</FilePath>
  937. </File>
  938. <File>
  939. <FileName>os_var.c</FileName>
  940. <FileType>1</FileType>
  941. <FilePath>..\_uCOS-III\uC-OS-Source\os_var.c</FilePath>
  942. </File>
  943. </Files>
  944. </Group>
  945. <Group>
  946. <GroupName>uCOS/Port</GroupName>
  947. <Files>
  948. <File>
  949. <FileName>os_cpu.h</FileName>
  950. <FileType>5</FileType>
  951. <FilePath>..\_uCOS-III\uC-OS-Port\os_cpu.h</FilePath>
  952. </File>
  953. <File>
  954. <FileName>os_cpu_a.asm</FileName>
  955. <FileType>2</FileType>
  956. <FilePath>..\_uCOS-III\uC-OS-Port\os_cpu_a.asm</FilePath>
  957. </File>
  958. <File>
  959. <FileName>os_cpu_c.c</FileName>
  960. <FileType>1</FileType>
  961. <FilePath>..\_uCOS-III\uC-OS-Port\os_cpu_c.c</FilePath>
  962. </File>
  963. </Files>
  964. </Group>
  965. <Group>
  966. <GroupName>uCOS/CPU</GroupName>
  967. <Files>
  968. <File>
  969. <FileName>cpu.h</FileName>
  970. <FileType>5</FileType>
  971. <FilePath>..\_uCOS-III\uC-CPU\cpu.h</FilePath>
  972. </File>
  973. <File>
  974. <FileName>cpu_a.asm</FileName>
  975. <FileType>2</FileType>
  976. <FilePath>..\_uCOS-III\uC-CPU\cpu_a.asm</FilePath>
  977. </File>
  978. <File>
  979. <FileName>cpu_c.c</FileName>
  980. <FileType>1</FileType>
  981. <FilePath>..\_uCOS-III\uC-CPU\cpu_c.c</FilePath>
  982. </File>
  983. <File>
  984. <FileName>cpu_core.c</FileName>
  985. <FileType>1</FileType>
  986. <FilePath>..\_uCOS-III\uC-CPU\cpu_core.c</FilePath>
  987. </File>
  988. <File>
  989. <FileName>cpu_core.h</FileName>
  990. <FileType>5</FileType>
  991. <FilePath>..\_uCOS-III\uC-CPU\cpu_core.h</FilePath>
  992. </File>
  993. <File>
  994. <FileName>cpu_def.h</FileName>
  995. <FileType>5</FileType>
  996. <FilePath>..\_uCOS-III\uC-CPU\cpu_def.h</FilePath>
  997. </File>
  998. </Files>
  999. </Group>
  1000. <Group>
  1001. <GroupName>uCOS/Lib</GroupName>
  1002. <Files>
  1003. <File>
  1004. <FileName>lib_ascii.c</FileName>
  1005. <FileType>1</FileType>
  1006. <FilePath>..\_uCOS-III\uC-LIB\lib_ascii.c</FilePath>
  1007. </File>
  1008. <File>
  1009. <FileName>lib_ascii.h</FileName>
  1010. <FileType>5</FileType>
  1011. <FilePath>..\_uCOS-III\uC-LIB\lib_ascii.h</FilePath>
  1012. </File>
  1013. <File>
  1014. <FileName>lib_def.h</FileName>
  1015. <FileType>5</FileType>
  1016. <FilePath>..\_uCOS-III\uC-LIB\lib_def.h</FilePath>
  1017. </File>
  1018. <File>
  1019. <FileName>lib_math.c</FileName>
  1020. <FileType>1</FileType>
  1021. <FilePath>..\_uCOS-III\uC-LIB\lib_math.c</FilePath>
  1022. </File>
  1023. <File>
  1024. <FileName>lib_math.h</FileName>
  1025. <FileType>5</FileType>
  1026. <FilePath>..\_uCOS-III\uC-LIB\lib_math.h</FilePath>
  1027. </File>
  1028. <File>
  1029. <FileName>lib_mem.c</FileName>
  1030. <FileType>1</FileType>
  1031. <FilePath>..\_uCOS-III\uC-LIB\lib_mem.c</FilePath>
  1032. </File>
  1033. <File>
  1034. <FileName>lib_mem.h</FileName>
  1035. <FileType>5</FileType>
  1036. <FilePath>..\_uCOS-III\uC-LIB\lib_mem.h</FilePath>
  1037. </File>
  1038. <File>
  1039. <FileName>lib_str.c</FileName>
  1040. <FileType>1</FileType>
  1041. <FilePath>..\_uCOS-III\uC-LIB\lib_str.c</FilePath>
  1042. </File>
  1043. <File>
  1044. <FileName>lib_str.h</FileName>
  1045. <FileType>5</FileType>
  1046. <FilePath>..\_uCOS-III\uC-LIB\lib_str.h</FilePath>
  1047. </File>
  1048. </Files>
  1049. </Group>
  1050. </Groups>
  1051. </Target>
  1052. <Target>
  1053. <TargetName>Debug</TargetName>
  1054. <ToolsetNumber>0x4</ToolsetNumber>
  1055. <ToolsetName>ARM-ADS</ToolsetName>
  1056. <pCCUsed>5060960::V5.06 update 7 (build 960)::ARMCC</pCCUsed>
  1057. <uAC6>0</uAC6>
  1058. <TargetOption>
  1059. <TargetCommonOption>
  1060. <Device>GD32F103VE</Device>
  1061. <Vendor>GigaDevice</Vendor>
  1062. <PackID>GigaDevice.GD32F10x_DFP.2.0.2</PackID>
  1063. <PackURL>http://gd32mcu.com/data/documents/pack/</PackURL>
  1064. <Cpu>IRAM(0x20000000,0x00010000) IROM(0x08000000,0x00080000) CPUTYPE("Cortex-M3") CLOCK(12000000) ELITTLE</Cpu>
  1065. <FlashUtilSpec></FlashUtilSpec>
  1066. <StartupFile></StartupFile>
  1067. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0GD32F10x_HD -FS08000000 -FL080000 -FP0($$Device:GD32F103VE$Flash\GD32F10x_HD.FLM))</FlashDriverDll>
  1068. <DeviceId>0</DeviceId>
  1069. <RegisterFile>$$Device:GD32F103VE$Device\Include\gd32f10x.h</RegisterFile>
  1070. <MemoryEnv></MemoryEnv>
  1071. <Cmp></Cmp>
  1072. <Asm></Asm>
  1073. <Linker></Linker>
  1074. <OHString></OHString>
  1075. <InfinionOptionDll></InfinionOptionDll>
  1076. <SLE66CMisc></SLE66CMisc>
  1077. <SLE66AMisc></SLE66AMisc>
  1078. <SLE66LinkerMisc></SLE66LinkerMisc>
  1079. <SFDFile>$$Device:GD32F103VE$SVD\GD32F10x\GD32F10x_HD.svd</SFDFile>
  1080. <bCustSvd>0</bCustSvd>
  1081. <UseEnv>0</UseEnv>
  1082. <BinPath></BinPath>
  1083. <IncludePath></IncludePath>
  1084. <LibPath></LibPath>
  1085. <RegisterFilePath></RegisterFilePath>
  1086. <DBRegisterFilePath></DBRegisterFilePath>
  1087. <TargetStatus>
  1088. <Error>0</Error>
  1089. <ExitCodeStop>0</ExitCodeStop>
  1090. <ButtonStop>0</ButtonStop>
  1091. <NotGenerated>0</NotGenerated>
  1092. <InvalidFlash>1</InvalidFlash>
  1093. </TargetStatus>
  1094. <OutputDirectory>.\Output\</OutputDirectory>
  1095. <OutputName>uC</OutputName>
  1096. <CreateExecutable>1</CreateExecutable>
  1097. <CreateLib>0</CreateLib>
  1098. <CreateHexFile>1</CreateHexFile>
  1099. <DebugInformation>1</DebugInformation>
  1100. <BrowseInformation>1</BrowseInformation>
  1101. <ListingPath>.\List\</ListingPath>
  1102. <HexFormatSelection>1</HexFormatSelection>
  1103. <Merge32K>0</Merge32K>
  1104. <CreateBatchFile>0</CreateBatchFile>
  1105. <BeforeCompile>
  1106. <RunUserProg1>0</RunUserProg1>
  1107. <RunUserProg2>0</RunUserProg2>
  1108. <UserProg1Name></UserProg1Name>
  1109. <UserProg2Name></UserProg2Name>
  1110. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1111. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1112. <nStopU1X>0</nStopU1X>
  1113. <nStopU2X>0</nStopU2X>
  1114. </BeforeCompile>
  1115. <BeforeMake>
  1116. <RunUserProg1>0</RunUserProg1>
  1117. <RunUserProg2>0</RunUserProg2>
  1118. <UserProg1Name></UserProg1Name>
  1119. <UserProg2Name></UserProg2Name>
  1120. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1121. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1122. <nStopB1X>0</nStopB1X>
  1123. <nStopB2X>0</nStopB2X>
  1124. </BeforeMake>
  1125. <AfterMake>
  1126. <RunUserProg1>1</RunUserProg1>
  1127. <RunUserProg2>1</RunUserProg2>
  1128. <UserProg1Name>fromelf --bin !L --output app.bin</UserProg1Name>
  1129. <UserProg2Name>wbjw_bin.exe -a 08020000 -d 0101 -f 3 -v 001 -r .\app.bin</UserProg2Name>
  1130. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1131. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1132. <nStopA1X>0</nStopA1X>
  1133. <nStopA2X>0</nStopA2X>
  1134. </AfterMake>
  1135. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  1136. <SVCSIdString></SVCSIdString>
  1137. </TargetCommonOption>
  1138. <CommonProperty>
  1139. <UseCPPCompiler>0</UseCPPCompiler>
  1140. <RVCTCodeConst>0</RVCTCodeConst>
  1141. <RVCTZI>0</RVCTZI>
  1142. <RVCTOtherData>0</RVCTOtherData>
  1143. <ModuleSelection>0</ModuleSelection>
  1144. <IncludeInBuild>1</IncludeInBuild>
  1145. <AlwaysBuild>0</AlwaysBuild>
  1146. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  1147. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  1148. <PublicsOnly>0</PublicsOnly>
  1149. <StopOnExitCode>3</StopOnExitCode>
  1150. <CustomArgument></CustomArgument>
  1151. <IncludeLibraryModules></IncludeLibraryModules>
  1152. <ComprImg>1</ComprImg>
  1153. </CommonProperty>
  1154. <DllOption>
  1155. <SimDllName>SARMCM3.DLL</SimDllName>
  1156. <SimDllArguments> -REMAP</SimDllArguments>
  1157. <SimDlgDll>DCM.DLL</SimDlgDll>
  1158. <SimDlgDllArguments>-pCM3</SimDlgDllArguments>
  1159. <TargetDllName>SARMCM3.DLL</TargetDllName>
  1160. <TargetDllArguments></TargetDllArguments>
  1161. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  1162. <TargetDlgDllArguments>-pCM3</TargetDlgDllArguments>
  1163. </DllOption>
  1164. <DebugOption>
  1165. <OPTHX>
  1166. <HexSelection>1</HexSelection>
  1167. <HexRangeLowAddress>0</HexRangeLowAddress>
  1168. <HexRangeHighAddress>0</HexRangeHighAddress>
  1169. <HexOffset>0</HexOffset>
  1170. <Oh166RecLen>16</Oh166RecLen>
  1171. </OPTHX>
  1172. </DebugOption>
  1173. <Utilities>
  1174. <Flash1>
  1175. <UseTargetDll>1</UseTargetDll>
  1176. <UseExternalTool>0</UseExternalTool>
  1177. <RunIndependent>0</RunIndependent>
  1178. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  1179. <Capability>1</Capability>
  1180. <DriverSelection>4096</DriverSelection>
  1181. </Flash1>
  1182. <bUseTDR>1</bUseTDR>
  1183. <Flash2>BIN\UL2CM3.DLL</Flash2>
  1184. <Flash3>"" ()</Flash3>
  1185. <Flash4></Flash4>
  1186. <pFcarmOut></pFcarmOut>
  1187. <pFcarmGrp></pFcarmGrp>
  1188. <pFcArmRoot></pFcArmRoot>
  1189. <FcArmLst>0</FcArmLst>
  1190. </Utilities>
  1191. <TargetArmAds>
  1192. <ArmAdsMisc>
  1193. <GenerateListings>0</GenerateListings>
  1194. <asHll>1</asHll>
  1195. <asAsm>1</asAsm>
  1196. <asMacX>1</asMacX>
  1197. <asSyms>1</asSyms>
  1198. <asFals>1</asFals>
  1199. <asDbgD>1</asDbgD>
  1200. <asForm>1</asForm>
  1201. <ldLst>0</ldLst>
  1202. <ldmm>1</ldmm>
  1203. <ldXref>1</ldXref>
  1204. <BigEnd>0</BigEnd>
  1205. <AdsALst>1</AdsALst>
  1206. <AdsACrf>1</AdsACrf>
  1207. <AdsANop>0</AdsANop>
  1208. <AdsANot>0</AdsANot>
  1209. <AdsLLst>1</AdsLLst>
  1210. <AdsLmap>1</AdsLmap>
  1211. <AdsLcgr>1</AdsLcgr>
  1212. <AdsLsym>1</AdsLsym>
  1213. <AdsLszi>1</AdsLszi>
  1214. <AdsLtoi>1</AdsLtoi>
  1215. <AdsLsun>1</AdsLsun>
  1216. <AdsLven>1</AdsLven>
  1217. <AdsLsxf>1</AdsLsxf>
  1218. <RvctClst>0</RvctClst>
  1219. <GenPPlst>0</GenPPlst>
  1220. <AdsCpuType>"Cortex-M3"</AdsCpuType>
  1221. <RvctDeviceName></RvctDeviceName>
  1222. <mOS>0</mOS>
  1223. <uocRom>0</uocRom>
  1224. <uocRam>0</uocRam>
  1225. <hadIROM>1</hadIROM>
  1226. <hadIRAM>1</hadIRAM>
  1227. <hadXRAM>0</hadXRAM>
  1228. <uocXRam>0</uocXRam>
  1229. <RvdsVP>0</RvdsVP>
  1230. <RvdsMve>0</RvdsMve>
  1231. <RvdsCdeCp>0</RvdsCdeCp>
  1232. <hadIRAM2>0</hadIRAM2>
  1233. <hadIROM2>0</hadIROM2>
  1234. <StupSel>8</StupSel>
  1235. <useUlib>1</useUlib>
  1236. <EndSel>0</EndSel>
  1237. <uLtcg>0</uLtcg>
  1238. <nSecure>0</nSecure>
  1239. <RoSelD>3</RoSelD>
  1240. <RwSelD>3</RwSelD>
  1241. <CodeSel>0</CodeSel>
  1242. <OptFeed>0</OptFeed>
  1243. <NoZi1>0</NoZi1>
  1244. <NoZi2>0</NoZi2>
  1245. <NoZi3>0</NoZi3>
  1246. <NoZi4>0</NoZi4>
  1247. <NoZi5>0</NoZi5>
  1248. <Ro1Chk>0</Ro1Chk>
  1249. <Ro2Chk>0</Ro2Chk>
  1250. <Ro3Chk>0</Ro3Chk>
  1251. <Ir1Chk>1</Ir1Chk>
  1252. <Ir2Chk>0</Ir2Chk>
  1253. <Ra1Chk>0</Ra1Chk>
  1254. <Ra2Chk>0</Ra2Chk>
  1255. <Ra3Chk>0</Ra3Chk>
  1256. <Im1Chk>1</Im1Chk>
  1257. <Im2Chk>0</Im2Chk>
  1258. <OnChipMemories>
  1259. <Ocm1>
  1260. <Type>0</Type>
  1261. <StartAddress>0x0</StartAddress>
  1262. <Size>0x0</Size>
  1263. </Ocm1>
  1264. <Ocm2>
  1265. <Type>0</Type>
  1266. <StartAddress>0x0</StartAddress>
  1267. <Size>0x0</Size>
  1268. </Ocm2>
  1269. <Ocm3>
  1270. <Type>0</Type>
  1271. <StartAddress>0x0</StartAddress>
  1272. <Size>0x0</Size>
  1273. </Ocm3>
  1274. <Ocm4>
  1275. <Type>0</Type>
  1276. <StartAddress>0x0</StartAddress>
  1277. <Size>0x0</Size>
  1278. </Ocm4>
  1279. <Ocm5>
  1280. <Type>0</Type>
  1281. <StartAddress>0x0</StartAddress>
  1282. <Size>0x0</Size>
  1283. </Ocm5>
  1284. <Ocm6>
  1285. <Type>0</Type>
  1286. <StartAddress>0x0</StartAddress>
  1287. <Size>0x0</Size>
  1288. </Ocm6>
  1289. <IRAM>
  1290. <Type>0</Type>
  1291. <StartAddress>0x20000000</StartAddress>
  1292. <Size>0x10000</Size>
  1293. </IRAM>
  1294. <IROM>
  1295. <Type>1</Type>
  1296. <StartAddress>0x8000000</StartAddress>
  1297. <Size>0x80000</Size>
  1298. </IROM>
  1299. <XRAM>
  1300. <Type>0</Type>
  1301. <StartAddress>0x0</StartAddress>
  1302. <Size>0x0</Size>
  1303. </XRAM>
  1304. <OCR_RVCT1>
  1305. <Type>1</Type>
  1306. <StartAddress>0x0</StartAddress>
  1307. <Size>0x0</Size>
  1308. </OCR_RVCT1>
  1309. <OCR_RVCT2>
  1310. <Type>1</Type>
  1311. <StartAddress>0x0</StartAddress>
  1312. <Size>0x0</Size>
  1313. </OCR_RVCT2>
  1314. <OCR_RVCT3>
  1315. <Type>1</Type>
  1316. <StartAddress>0x0</StartAddress>
  1317. <Size>0x0</Size>
  1318. </OCR_RVCT3>
  1319. <OCR_RVCT4>
  1320. <Type>1</Type>
  1321. <StartAddress>0x8000000</StartAddress>
  1322. <Size>0x20000</Size>
  1323. </OCR_RVCT4>
  1324. <OCR_RVCT5>
  1325. <Type>1</Type>
  1326. <StartAddress>0x0</StartAddress>
  1327. <Size>0x0</Size>
  1328. </OCR_RVCT5>
  1329. <OCR_RVCT6>
  1330. <Type>0</Type>
  1331. <StartAddress>0x0</StartAddress>
  1332. <Size>0x0</Size>
  1333. </OCR_RVCT6>
  1334. <OCR_RVCT7>
  1335. <Type>0</Type>
  1336. <StartAddress>0x0</StartAddress>
  1337. <Size>0x0</Size>
  1338. </OCR_RVCT7>
  1339. <OCR_RVCT8>
  1340. <Type>0</Type>
  1341. <StartAddress>0x0</StartAddress>
  1342. <Size>0x0</Size>
  1343. </OCR_RVCT8>
  1344. <OCR_RVCT9>
  1345. <Type>0</Type>
  1346. <StartAddress>0x20000000</StartAddress>
  1347. <Size>0x10000</Size>
  1348. </OCR_RVCT9>
  1349. <OCR_RVCT10>
  1350. <Type>0</Type>
  1351. <StartAddress>0x0</StartAddress>
  1352. <Size>0x0</Size>
  1353. </OCR_RVCT10>
  1354. </OnChipMemories>
  1355. <RvctStartVector></RvctStartVector>
  1356. </ArmAdsMisc>
  1357. <Cads>
  1358. <interw>1</interw>
  1359. <Optim>1</Optim>
  1360. <oTime>0</oTime>
  1361. <SplitLS>0</SplitLS>
  1362. <OneElfS>0</OneElfS>
  1363. <Strict>0</Strict>
  1364. <EnumInt>0</EnumInt>
  1365. <PlainCh>0</PlainCh>
  1366. <Ropi>0</Ropi>
  1367. <Rwpi>0</Rwpi>
  1368. <wLevel>0</wLevel>
  1369. <uThumb>0</uThumb>
  1370. <uSurpInc>0</uSurpInc>
  1371. <uC99>0</uC99>
  1372. <uGnu>0</uGnu>
  1373. <useXO>0</useXO>
  1374. <v6Lang>1</v6Lang>
  1375. <v6LangP>1</v6LangP>
  1376. <vShortEn>1</vShortEn>
  1377. <vShortWch>1</vShortWch>
  1378. <v6Lto>0</v6Lto>
  1379. <v6WtE>0</v6WtE>
  1380. <v6Rtti>0</v6Rtti>
  1381. <VariousControls>
  1382. <MiscControls></MiscControls>
  1383. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER,GAS_STATION,_DEBUG__</Define>
  1384. <Undefine></Undefine>
  1385. <IncludePath>..\APP;..\BSP;..\User;..\_Lib-3.5\CMSIS;..\_Lib-3.5\StartUp;..\_Lib-3.5\StdPeriph_Driver\inc;..\_uCOS-III\uC-Config;..\_uCOS-III\uC-CPU;..\_uCOS-III\uC-LIB;..\_uCOS-III\uC-OS-Port;..\_uCOS-III\uC-OS-Source;..\APP\command;..\APP\network_mgr\at;..\APP\dev_mgr\taxctrl;..\APP\dev_mgr\common;..\APP\network_mgr\sx1268\peripherals\radio\sx126x;..\APP\network_mgr\sx1268\HAL;..\APP\network_mgr\me3616;..\APP\network_mgr;..\APP\ota;..\APP\network_mgr\sx1268\peripherals\radio;..\APP\dev_mgr\oiltank;..\APP\dev_mgr\gateway;..\APP\storage;..\APP\toolkit;..\APP\des;..\APP\gateway_collect;..\APP\tax;..\APP\network</IncludePath>
  1386. </VariousControls>
  1387. </Cads>
  1388. <Aads>
  1389. <interw>1</interw>
  1390. <Ropi>0</Ropi>
  1391. <Rwpi>0</Rwpi>
  1392. <thumb>0</thumb>
  1393. <SplitLS>0</SplitLS>
  1394. <SwStkChk>0</SwStkChk>
  1395. <NoWarn>0</NoWarn>
  1396. <uSurpInc>0</uSurpInc>
  1397. <useXO>0</useXO>
  1398. <ClangAsOpt>4</ClangAsOpt>
  1399. <VariousControls>
  1400. <MiscControls></MiscControls>
  1401. <Define></Define>
  1402. <Undefine></Undefine>
  1403. <IncludePath></IncludePath>
  1404. </VariousControls>
  1405. </Aads>
  1406. <LDads>
  1407. <umfTarg>1</umfTarg>
  1408. <Ropi>0</Ropi>
  1409. <Rwpi>0</Rwpi>
  1410. <noStLib>0</noStLib>
  1411. <RepFail>1</RepFail>
  1412. <useFile>0</useFile>
  1413. <TextAddressRange>0x08000000</TextAddressRange>
  1414. <DataAddressRange>0x20000000</DataAddressRange>
  1415. <pXoBase></pXoBase>
  1416. <ScatterFile></ScatterFile>
  1417. <IncludeLibs></IncludeLibs>
  1418. <IncludeLibsPath></IncludeLibsPath>
  1419. <Misc></Misc>
  1420. <LinkerInputFile></LinkerInputFile>
  1421. <DisabledWarnings></DisabledWarnings>
  1422. </LDads>
  1423. </TargetArmAds>
  1424. </TargetOption>
  1425. <Groups>
  1426. <Group>
  1427. <GroupName>USER</GroupName>
  1428. <Files>
  1429. <File>
  1430. <FileName>main.c</FileName>
  1431. <FileType>1</FileType>
  1432. <FilePath>..\User\main.c</FilePath>
  1433. </File>
  1434. <File>
  1435. <FileName>stm32f10x_it.c</FileName>
  1436. <FileType>1</FileType>
  1437. <FilePath>..\User\stm32f10x_it.c</FilePath>
  1438. </File>
  1439. <File>
  1440. <FileName>stm32f10x_it.h</FileName>
  1441. <FileType>5</FileType>
  1442. <FilePath>..\User\stm32f10x_it.h</FilePath>
  1443. </File>
  1444. </Files>
  1445. </Group>
  1446. <Group>
  1447. <GroupName>BSP</GroupName>
  1448. <Files>
  1449. <File>
  1450. <FileName>BSP.c</FileName>
  1451. <FileType>1</FileType>
  1452. <FilePath>..\BSP\BSP.c</FilePath>
  1453. </File>
  1454. <File>
  1455. <FileName>Flash.c</FileName>
  1456. <FileType>1</FileType>
  1457. <FilePath>..\BSP\Flash.c</FilePath>
  1458. </File>
  1459. <File>
  1460. <FileName>Uart.c</FileName>
  1461. <FileType>1</FileType>
  1462. <FilePath>..\BSP\Uart.c</FilePath>
  1463. </File>
  1464. <File>
  1465. <FileName>includes.h</FileName>
  1466. <FileType>5</FileType>
  1467. <FilePath>..\User\includes.h</FilePath>
  1468. </File>
  1469. <File>
  1470. <FileName>rtc.c</FileName>
  1471. <FileType>1</FileType>
  1472. <FilePath>..\BSP\rtc.c</FilePath>
  1473. </File>
  1474. </Files>
  1475. </Group>
  1476. <Group>
  1477. <GroupName>APP</GroupName>
  1478. <Files>
  1479. <File>
  1480. <FileName>app.h</FileName>
  1481. <FileType>5</FileType>
  1482. <FilePath>..\APP\app.h</FilePath>
  1483. </File>
  1484. <File>
  1485. <FileName>app_cfg.h</FileName>
  1486. <FileType>5</FileType>
  1487. <FilePath>..\APP\app_cfg.h</FilePath>
  1488. </File>
  1489. <File>
  1490. <FileName>app.c</FileName>
  1491. <FileType>1</FileType>
  1492. <FilePath>..\APP\app.c</FilePath>
  1493. </File>
  1494. <File>
  1495. <FileName>tax_ctrl.c</FileName>
  1496. <FileType>1</FileType>
  1497. <FilePath>..\APP\dev_mgr\taxctrl\tax_ctrl.c</FilePath>
  1498. </File>
  1499. <File>
  1500. <FileName>device.c</FileName>
  1501. <FileType>1</FileType>
  1502. <FilePath>..\APP\dev_mgr\common\device.c</FilePath>
  1503. </File>
  1504. <File>
  1505. <FileName>w25qxx.c</FileName>
  1506. <FileType>1</FileType>
  1507. <FilePath>..\APP\storage\w25qxx.c</FilePath>
  1508. </File>
  1509. <File>
  1510. <FileName>console.c</FileName>
  1511. <FileType>1</FileType>
  1512. <FilePath>..\APP\command\console.c</FilePath>
  1513. </File>
  1514. <File>
  1515. <FileName>strfunc.c</FileName>
  1516. <FileType>1</FileType>
  1517. <FilePath>..\APP\command\strfunc.c</FilePath>
  1518. </File>
  1519. <File>
  1520. <FileName>test_cli.c</FileName>
  1521. <FileType>1</FileType>
  1522. <FilePath>..\APP\command\test_cli.c</FilePath>
  1523. </File>
  1524. <File>
  1525. <FileName>trace.c</FileName>
  1526. <FileType>1</FileType>
  1527. <FilePath>..\APP\command\trace.c</FilePath>
  1528. </File>
  1529. <File>
  1530. <FileName>at_module.c</FileName>
  1531. <FileType>1</FileType>
  1532. <FilePath>..\APP\network_mgr\at\at_module.c</FilePath>
  1533. </File>
  1534. <File>
  1535. <FileName>gpio.c</FileName>
  1536. <FileType>1</FileType>
  1537. <FilePath>..\APP\network_mgr\lora\lora_adapt\gpio.c</FilePath>
  1538. </File>
  1539. <File>
  1540. <FileName>spi.c</FileName>
  1541. <FileType>1</FileType>
  1542. <FilePath>..\APP\network_mgr\lora\lora_adapt\spi.c</FilePath>
  1543. </File>
  1544. <File>
  1545. <FileName>net_proc.c</FileName>
  1546. <FileType>1</FileType>
  1547. <FilePath>..\APP\network_mgr\net_proc.c</FilePath>
  1548. </File>
  1549. <File>
  1550. <FileName>air72x.c</FileName>
  1551. <FileType>1</FileType>
  1552. <FilePath>..\APP\network_mgr\air72x\air72x.c</FilePath>
  1553. </File>
  1554. <File>
  1555. <FileName>radio.c</FileName>
  1556. <FileType>1</FileType>
  1557. <FilePath>..\APP\network_mgr\sx1268\peripherals\radio\sx126x\radio.c</FilePath>
  1558. </File>
  1559. <File>
  1560. <FileName>sx126x.c</FileName>
  1561. <FileType>1</FileType>
  1562. <FilePath>..\APP\network_mgr\sx1268\peripherals\radio\sx126x\sx126x.c</FilePath>
  1563. </File>
  1564. <File>
  1565. <FileName>HAL_SPI.c</FileName>
  1566. <FileType>1</FileType>
  1567. <FilePath>..\APP\network_mgr\sx1268\HAL\HAL_SPI.c</FilePath>
  1568. </File>
  1569. <File>
  1570. <FileName>SX126xSTM32F103-board.c</FileName>
  1571. <FileType>1</FileType>
  1572. <FilePath>..\APP\network_mgr\sx1268\HAL\SX126xSTM32F103-board.c</FilePath>
  1573. </File>
  1574. <File>
  1575. <FileName>delay.c</FileName>
  1576. <FileType>1</FileType>
  1577. <FilePath>..\APP\network_mgr\sx1268\HAL\delay.c</FilePath>
  1578. </File>
  1579. <File>
  1580. <FileName>lora.c</FileName>
  1581. <FileType>1</FileType>
  1582. <FilePath>..\APP\network_mgr\sx1268\lora.c</FilePath>
  1583. </File>
  1584. <File>
  1585. <FileName>AT24C128.c</FileName>
  1586. <FileType>1</FileType>
  1587. <FilePath>..\APP\storage\AT24C128.c</FilePath>
  1588. </File>
  1589. <File>
  1590. <FileName>gateway.c</FileName>
  1591. <FileType>1</FileType>
  1592. <FilePath>..\APP\dev_mgr\gateway\gateway.c</FilePath>
  1593. </File>
  1594. <File>
  1595. <FileName>adc.c</FileName>
  1596. <FileType>1</FileType>
  1597. <FilePath>..\BSP\adc.c</FilePath>
  1598. </File>
  1599. <File>
  1600. <FileName>can.c</FileName>
  1601. <FileType>1</FileType>
  1602. <FilePath>..\BSP\can.c</FilePath>
  1603. </File>
  1604. <File>
  1605. <FileName>m95512.c</FileName>
  1606. <FileType>1</FileType>
  1607. <FilePath>..\APP\storage\m95512.c</FilePath>
  1608. </File>
  1609. <File>
  1610. <FileName>des.c</FileName>
  1611. <FileType>1</FileType>
  1612. <FilePath>..\APP\des\des.c</FilePath>
  1613. </File>
  1614. <File>
  1615. <FileName>net_ctrl.c</FileName>
  1616. <FileType>1</FileType>
  1617. <FilePath>..\APP\network_mgr\net_ctrl.c</FilePath>
  1618. </File>
  1619. <File>
  1620. <FileName>gateway_collect.c</FileName>
  1621. <FileType>1</FileType>
  1622. <FilePath>..\APP\gateway_collect\gateway_collect.c</FilePath>
  1623. </File>
  1624. <File>
  1625. <FileName>tax.c</FileName>
  1626. <FileType>1</FileType>
  1627. <FilePath>..\APP\tax\tax.c</FilePath>
  1628. </File>
  1629. <File>
  1630. <FileName>uplink.c</FileName>
  1631. <FileType>1</FileType>
  1632. <FilePath>..\APP\network\uplink.c</FilePath>
  1633. </File>
  1634. <File>
  1635. <FileName>downlink.c</FileName>
  1636. <FileType>1</FileType>
  1637. <FilePath>..\APP\network\downlink.c</FilePath>
  1638. </File>
  1639. <File>
  1640. <FileName>uart_conf.c</FileName>
  1641. <FileType>1</FileType>
  1642. <FilePath>..\APP\command\uart_conf.c</FilePath>
  1643. </File>
  1644. <File>
  1645. <FileName>ota.c</FileName>
  1646. <FileType>1</FileType>
  1647. <FilePath>..\APP\ota\ota.c</FilePath>
  1648. </File>
  1649. <File>
  1650. <FileName>globalDef.c</FileName>
  1651. <FileType>1</FileType>
  1652. <FilePath>..\APP\globalDef.c</FilePath>
  1653. </File>
  1654. <File>
  1655. <FileName>nettimer.c</FileName>
  1656. <FileType>1</FileType>
  1657. <FilePath>..\APP\network\nettimer.c</FilePath>
  1658. </File>
  1659. <File>
  1660. <FileName>AT24C128Opt.c</FileName>
  1661. <FileType>1</FileType>
  1662. <FilePath>..\APP\storage\AT24C128Opt.c</FilePath>
  1663. </File>
  1664. <File>
  1665. <FileName>CH455G.c</FileName>
  1666. <FileType>1</FileType>
  1667. <FilePath>..\APP\toolkit\CH455G.c</FilePath>
  1668. </File>
  1669. <File>
  1670. <FileName>timeout.c</FileName>
  1671. <FileType>1</FileType>
  1672. <FilePath>..\APP\network\timeout.c</FilePath>
  1673. </File>
  1674. <File>
  1675. <FileName>encodeOpt.c</FileName>
  1676. <FileType>1</FileType>
  1677. <FilePath>..\APP\encode\encodeOpt.c</FilePath>
  1678. </File>
  1679. <File>
  1680. <FileName>sm4_src.c</FileName>
  1681. <FileType>1</FileType>
  1682. <FilePath>..\APP\sm4\sm4_src.c</FilePath>
  1683. </File>
  1684. </Files>
  1685. </Group>
  1686. <Group>
  1687. <GroupName>Lib3.5/Startup</GroupName>
  1688. <Files>
  1689. <File>
  1690. <FileName>startup_stm32f10x_hd.s</FileName>
  1691. <FileType>2</FileType>
  1692. <FilePath>..\_Lib-3.5\StartUp\startup_stm32f10x_hd.s</FilePath>
  1693. </File>
  1694. </Files>
  1695. </Group>
  1696. <Group>
  1697. <GroupName>Lib3.5/CMSIS</GroupName>
  1698. <Files>
  1699. <File>
  1700. <FileName>core_cm3.c</FileName>
  1701. <FileType>1</FileType>
  1702. <FilePath>..\_Lib-3.5\CMSIS\core_cm3.c</FilePath>
  1703. </File>
  1704. <File>
  1705. <FileName>core_cm3.h</FileName>
  1706. <FileType>5</FileType>
  1707. <FilePath>..\_Lib-3.5\CMSIS\core_cm3.h</FilePath>
  1708. </File>
  1709. <File>
  1710. <FileName>stm32f10x.h</FileName>
  1711. <FileType>5</FileType>
  1712. <FilePath>..\_Lib-3.5\CMSIS\stm32f10x.h</FilePath>
  1713. </File>
  1714. <File>
  1715. <FileName>stm32f10x_conf.h</FileName>
  1716. <FileType>5</FileType>
  1717. <FilePath>..\_Lib-3.5\CMSIS\stm32f10x_conf.h</FilePath>
  1718. </File>
  1719. <File>
  1720. <FileName>system_stm32f10x.c</FileName>
  1721. <FileType>1</FileType>
  1722. <FilePath>..\_Lib-3.5\CMSIS\system_stm32f10x.c</FilePath>
  1723. </File>
  1724. <File>
  1725. <FileName>system_stm32f10x.h</FileName>
  1726. <FileType>5</FileType>
  1727. <FilePath>..\_Lib-3.5\CMSIS\system_stm32f10x.h</FilePath>
  1728. </File>
  1729. </Files>
  1730. </Group>
  1731. <Group>
  1732. <GroupName>Lib3.5/StdPeriph_Driver</GroupName>
  1733. <Files>
  1734. <File>
  1735. <FileName>misc.c</FileName>
  1736. <FileType>1</FileType>
  1737. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\misc.c</FilePath>
  1738. </File>
  1739. <File>
  1740. <FileName>stm32f10x_adc.c</FileName>
  1741. <FileType>1</FileType>
  1742. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_adc.c</FilePath>
  1743. </File>
  1744. <File>
  1745. <FileName>stm32f10x_bkp.c</FileName>
  1746. <FileType>1</FileType>
  1747. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_bkp.c</FilePath>
  1748. </File>
  1749. <File>
  1750. <FileName>stm32f10x_can.c</FileName>
  1751. <FileType>1</FileType>
  1752. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_can.c</FilePath>
  1753. </File>
  1754. <File>
  1755. <FileName>stm32f10x_cec.c</FileName>
  1756. <FileType>1</FileType>
  1757. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_cec.c</FilePath>
  1758. </File>
  1759. <File>
  1760. <FileName>stm32f10x_crc.c</FileName>
  1761. <FileType>1</FileType>
  1762. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_crc.c</FilePath>
  1763. </File>
  1764. <File>
  1765. <FileName>stm32f10x_dac.c</FileName>
  1766. <FileType>1</FileType>
  1767. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_dac.c</FilePath>
  1768. </File>
  1769. <File>
  1770. <FileName>stm32f10x_dbgmcu.c</FileName>
  1771. <FileType>1</FileType>
  1772. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_dbgmcu.c</FilePath>
  1773. </File>
  1774. <File>
  1775. <FileName>stm32f10x_dma.c</FileName>
  1776. <FileType>1</FileType>
  1777. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_dma.c</FilePath>
  1778. </File>
  1779. <File>
  1780. <FileName>stm32f10x_exti.c</FileName>
  1781. <FileType>1</FileType>
  1782. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_exti.c</FilePath>
  1783. </File>
  1784. <File>
  1785. <FileName>stm32f10x_flash.c</FileName>
  1786. <FileType>1</FileType>
  1787. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_flash.c</FilePath>
  1788. </File>
  1789. <File>
  1790. <FileName>stm32f10x_fsmc.c</FileName>
  1791. <FileType>1</FileType>
  1792. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_fsmc.c</FilePath>
  1793. </File>
  1794. <File>
  1795. <FileName>stm32f10x_gpio.c</FileName>
  1796. <FileType>1</FileType>
  1797. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_gpio.c</FilePath>
  1798. </File>
  1799. <File>
  1800. <FileName>stm32f10x_i2c.c</FileName>
  1801. <FileType>1</FileType>
  1802. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_i2c.c</FilePath>
  1803. </File>
  1804. <File>
  1805. <FileName>stm32f10x_iwdg.c</FileName>
  1806. <FileType>1</FileType>
  1807. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_iwdg.c</FilePath>
  1808. </File>
  1809. <File>
  1810. <FileName>stm32f10x_pwr.c</FileName>
  1811. <FileType>1</FileType>
  1812. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_pwr.c</FilePath>
  1813. </File>
  1814. <File>
  1815. <FileName>stm32f10x_rcc.c</FileName>
  1816. <FileType>1</FileType>
  1817. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_rcc.c</FilePath>
  1818. </File>
  1819. <File>
  1820. <FileName>stm32f10x_rtc.c</FileName>
  1821. <FileType>1</FileType>
  1822. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_rtc.c</FilePath>
  1823. </File>
  1824. <File>
  1825. <FileName>stm32f10x_sdio.c</FileName>
  1826. <FileType>1</FileType>
  1827. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_sdio.c</FilePath>
  1828. </File>
  1829. <File>
  1830. <FileName>stm32f10x_spi.c</FileName>
  1831. <FileType>1</FileType>
  1832. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_spi.c</FilePath>
  1833. </File>
  1834. <File>
  1835. <FileName>stm32f10x_tim.c</FileName>
  1836. <FileType>1</FileType>
  1837. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_tim.c</FilePath>
  1838. </File>
  1839. <File>
  1840. <FileName>stm32f10x_usart.c</FileName>
  1841. <FileType>1</FileType>
  1842. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_usart.c</FilePath>
  1843. </File>
  1844. <File>
  1845. <FileName>stm32f10x_wwdg.c</FileName>
  1846. <FileType>1</FileType>
  1847. <FilePath>..\_Lib-3.5\StdPeriph_Driver\src\stm32f10x_wwdg.c</FilePath>
  1848. </File>
  1849. </Files>
  1850. </Group>
  1851. <Group>
  1852. <GroupName>uCOS/Config</GroupName>
  1853. <Files>
  1854. <File>
  1855. <FileName>os_cfg_app.h</FileName>
  1856. <FileType>5</FileType>
  1857. <FilePath>..\_uCOS-III\uC-Config\os_cfg_app.h</FilePath>
  1858. </File>
  1859. <File>
  1860. <FileName>os_cfg.h</FileName>
  1861. <FileType>5</FileType>
  1862. <FilePath>..\_uCOS-III\uC-Config\os_cfg.h</FilePath>
  1863. </File>
  1864. <File>
  1865. <FileName>os_type.h</FileName>
  1866. <FileType>5</FileType>
  1867. <FilePath>..\_uCOS-III\uC-Config\os_type.h</FilePath>
  1868. </File>
  1869. <File>
  1870. <FileName>os_app_hooks.c</FileName>
  1871. <FileType>1</FileType>
  1872. <FilePath>..\_uCOS-III\uC-Config\os_app_hooks.c</FilePath>
  1873. </File>
  1874. <File>
  1875. <FileName>os_app_hooks.h</FileName>
  1876. <FileType>5</FileType>
  1877. <FilePath>..\_uCOS-III\uC-Config\os_app_hooks.h</FilePath>
  1878. </File>
  1879. <File>
  1880. <FileName>lib_cfg.h</FileName>
  1881. <FileType>5</FileType>
  1882. <FilePath>..\_uCOS-III\uC-Config\lib_cfg.h</FilePath>
  1883. </File>
  1884. <File>
  1885. <FileName>cpu_cfg.h</FileName>
  1886. <FileType>5</FileType>
  1887. <FilePath>..\_uCOS-III\uC-Config\cpu_cfg.h</FilePath>
  1888. </File>
  1889. </Files>
  1890. </Group>
  1891. <Group>
  1892. <GroupName>uCOS/Source</GroupName>
  1893. <Files>
  1894. <File>
  1895. <FileName>os.h</FileName>
  1896. <FileType>5</FileType>
  1897. <FilePath>..\_uCOS-III\uC-OS-Source\os.h</FilePath>
  1898. </File>
  1899. <File>
  1900. <FileName>os_cfg_app.c</FileName>
  1901. <FileType>1</FileType>
  1902. <FilePath>..\_uCOS-III\uC-OS-Source\os_cfg_app.c</FilePath>
  1903. </File>
  1904. <File>
  1905. <FileName>os_core.c</FileName>
  1906. <FileType>1</FileType>
  1907. <FilePath>..\_uCOS-III\uC-OS-Source\os_core.c</FilePath>
  1908. </File>
  1909. <File>
  1910. <FileName>os_dbg.c</FileName>
  1911. <FileType>1</FileType>
  1912. <FilePath>..\_uCOS-III\uC-OS-Source\os_dbg.c</FilePath>
  1913. </File>
  1914. <File>
  1915. <FileName>os_flag.c</FileName>
  1916. <FileType>1</FileType>
  1917. <FilePath>..\_uCOS-III\uC-OS-Source\os_flag.c</FilePath>
  1918. </File>
  1919. <File>
  1920. <FileName>os_int.c</FileName>
  1921. <FileType>1</FileType>
  1922. <FilePath>..\_uCOS-III\uC-OS-Source\os_int.c</FilePath>
  1923. </File>
  1924. <File>
  1925. <FileName>os_mem.c</FileName>
  1926. <FileType>1</FileType>
  1927. <FilePath>..\_uCOS-III\uC-OS-Source\os_mem.c</FilePath>
  1928. </File>
  1929. <File>
  1930. <FileName>os_msg.c</FileName>
  1931. <FileType>1</FileType>
  1932. <FilePath>..\_uCOS-III\uC-OS-Source\os_msg.c</FilePath>
  1933. </File>
  1934. <File>
  1935. <FileName>os_mutex.c</FileName>
  1936. <FileType>1</FileType>
  1937. <FilePath>..\_uCOS-III\uC-OS-Source\os_mutex.c</FilePath>
  1938. </File>
  1939. <File>
  1940. <FileName>os_pend_multi.c</FileName>
  1941. <FileType>1</FileType>
  1942. <FilePath>..\_uCOS-III\uC-OS-Source\os_pend_multi.c</FilePath>
  1943. </File>
  1944. <File>
  1945. <FileName>os_prio.c</FileName>
  1946. <FileType>1</FileType>
  1947. <FilePath>..\_uCOS-III\uC-OS-Source\os_prio.c</FilePath>
  1948. </File>
  1949. <File>
  1950. <FileName>os_q.c</FileName>
  1951. <FileType>1</FileType>
  1952. <FilePath>..\_uCOS-III\uC-OS-Source\os_q.c</FilePath>
  1953. </File>
  1954. <File>
  1955. <FileName>os_sem.c</FileName>
  1956. <FileType>1</FileType>
  1957. <FilePath>..\_uCOS-III\uC-OS-Source\os_sem.c</FilePath>
  1958. </File>
  1959. <File>
  1960. <FileName>os_stat.c</FileName>
  1961. <FileType>1</FileType>
  1962. <FilePath>..\_uCOS-III\uC-OS-Source\os_stat.c</FilePath>
  1963. </File>
  1964. <File>
  1965. <FileName>os_task.c</FileName>
  1966. <FileType>1</FileType>
  1967. <FilePath>..\_uCOS-III\uC-OS-Source\os_task.c</FilePath>
  1968. </File>
  1969. <File>
  1970. <FileName>os_tick.c</FileName>
  1971. <FileType>1</FileType>
  1972. <FilePath>..\_uCOS-III\uC-OS-Source\os_tick.c</FilePath>
  1973. </File>
  1974. <File>
  1975. <FileName>os_time.c</FileName>
  1976. <FileType>1</FileType>
  1977. <FilePath>..\_uCOS-III\uC-OS-Source\os_time.c</FilePath>
  1978. </File>
  1979. <File>
  1980. <FileName>os_tmr.c</FileName>
  1981. <FileType>1</FileType>
  1982. <FilePath>..\_uCOS-III\uC-OS-Source\os_tmr.c</FilePath>
  1983. </File>
  1984. <File>
  1985. <FileName>os_var.c</FileName>
  1986. <FileType>1</FileType>
  1987. <FilePath>..\_uCOS-III\uC-OS-Source\os_var.c</FilePath>
  1988. </File>
  1989. </Files>
  1990. </Group>
  1991. <Group>
  1992. <GroupName>uCOS/Port</GroupName>
  1993. <Files>
  1994. <File>
  1995. <FileName>os_cpu.h</FileName>
  1996. <FileType>5</FileType>
  1997. <FilePath>..\_uCOS-III\uC-OS-Port\os_cpu.h</FilePath>
  1998. </File>
  1999. <File>
  2000. <FileName>os_cpu_a.asm</FileName>
  2001. <FileType>2</FileType>
  2002. <FilePath>..\_uCOS-III\uC-OS-Port\os_cpu_a.asm</FilePath>
  2003. </File>
  2004. <File>
  2005. <FileName>os_cpu_c.c</FileName>
  2006. <FileType>1</FileType>
  2007. <FilePath>..\_uCOS-III\uC-OS-Port\os_cpu_c.c</FilePath>
  2008. </File>
  2009. </Files>
  2010. </Group>
  2011. <Group>
  2012. <GroupName>uCOS/CPU</GroupName>
  2013. <Files>
  2014. <File>
  2015. <FileName>cpu.h</FileName>
  2016. <FileType>5</FileType>
  2017. <FilePath>..\_uCOS-III\uC-CPU\cpu.h</FilePath>
  2018. </File>
  2019. <File>
  2020. <FileName>cpu_a.asm</FileName>
  2021. <FileType>2</FileType>
  2022. <FilePath>..\_uCOS-III\uC-CPU\cpu_a.asm</FilePath>
  2023. </File>
  2024. <File>
  2025. <FileName>cpu_c.c</FileName>
  2026. <FileType>1</FileType>
  2027. <FilePath>..\_uCOS-III\uC-CPU\cpu_c.c</FilePath>
  2028. </File>
  2029. <File>
  2030. <FileName>cpu_core.c</FileName>
  2031. <FileType>1</FileType>
  2032. <FilePath>..\_uCOS-III\uC-CPU\cpu_core.c</FilePath>
  2033. </File>
  2034. <File>
  2035. <FileName>cpu_core.h</FileName>
  2036. <FileType>5</FileType>
  2037. <FilePath>..\_uCOS-III\uC-CPU\cpu_core.h</FilePath>
  2038. </File>
  2039. <File>
  2040. <FileName>cpu_def.h</FileName>
  2041. <FileType>5</FileType>
  2042. <FilePath>..\_uCOS-III\uC-CPU\cpu_def.h</FilePath>
  2043. </File>
  2044. </Files>
  2045. </Group>
  2046. <Group>
  2047. <GroupName>uCOS/Lib</GroupName>
  2048. <Files>
  2049. <File>
  2050. <FileName>lib_ascii.c</FileName>
  2051. <FileType>1</FileType>
  2052. <FilePath>..\_uCOS-III\uC-LIB\lib_ascii.c</FilePath>
  2053. </File>
  2054. <File>
  2055. <FileName>lib_ascii.h</FileName>
  2056. <FileType>5</FileType>
  2057. <FilePath>..\_uCOS-III\uC-LIB\lib_ascii.h</FilePath>
  2058. </File>
  2059. <File>
  2060. <FileName>lib_def.h</FileName>
  2061. <FileType>5</FileType>
  2062. <FilePath>..\_uCOS-III\uC-LIB\lib_def.h</FilePath>
  2063. </File>
  2064. <File>
  2065. <FileName>lib_math.c</FileName>
  2066. <FileType>1</FileType>
  2067. <FilePath>..\_uCOS-III\uC-LIB\lib_math.c</FilePath>
  2068. </File>
  2069. <File>
  2070. <FileName>lib_math.h</FileName>
  2071. <FileType>5</FileType>
  2072. <FilePath>..\_uCOS-III\uC-LIB\lib_math.h</FilePath>
  2073. </File>
  2074. <File>
  2075. <FileName>lib_mem.c</FileName>
  2076. <FileType>1</FileType>
  2077. <FilePath>..\_uCOS-III\uC-LIB\lib_mem.c</FilePath>
  2078. </File>
  2079. <File>
  2080. <FileName>lib_mem.h</FileName>
  2081. <FileType>5</FileType>
  2082. <FilePath>..\_uCOS-III\uC-LIB\lib_mem.h</FilePath>
  2083. </File>
  2084. <File>
  2085. <FileName>lib_str.c</FileName>
  2086. <FileType>1</FileType>
  2087. <FilePath>..\_uCOS-III\uC-LIB\lib_str.c</FilePath>
  2088. </File>
  2089. <File>
  2090. <FileName>lib_str.h</FileName>
  2091. <FileType>5</FileType>
  2092. <FilePath>..\_uCOS-III\uC-LIB\lib_str.h</FilePath>
  2093. </File>
  2094. </Files>
  2095. </Group>
  2096. </Groups>
  2097. </Target>
  2098. </Targets>
  2099. <RTE>
  2100. <apis/>
  2101. <components/>
  2102. <files/>
  2103. </RTE>
  2104. </Project>