project.uvprojx 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634
  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_ST</TargetName>
  8. <ToolsetNumber>0x4</ToolsetNumber>
  9. <ToolsetName>ARM-ADS</ToolsetName>
  10. <pCCUsed>5060750::V5.06 update 6 (build 750)::.\ARMCC</pCCUsed>
  11. <uAC6>0</uAC6>
  12. <TargetOption>
  13. <TargetCommonOption>
  14. <Device>STM32F103RC</Device>
  15. <Vendor>STMicroelectronics</Vendor>
  16. <PackID>Keil.STM32F1xx_DFP.2.3.0</PackID>
  17. <PackURL>http://www.keil.com/pack/</PackURL>
  18. <Cpu>IRAM(0x20000000,0x0000C000) IROM(0x08000000,0x00040000) CPUTYPE("Cortex-M3") CLOCK(12000000) ELITTLE</Cpu>
  19. <FlashUtilSpec></FlashUtilSpec>
  20. <StartupFile></StartupFile>
  21. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F10x_512 -FS08000000 -FL080000 -FP0($$Device:STM32F103RC$Flash\STM32F10x_512.FLM))</FlashDriverDll>
  22. <DeviceId>0</DeviceId>
  23. <RegisterFile>$$Device:STM32F103RC$Device\Include\stm32f10x.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:STM32F103RC$SVD\STM32F103xx.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>.\Objects\</OutputDirectory>
  49. <OutputName>VGKitBoard_237xS_ST_APP_V06</OutputName>
  50. <CreateExecutable>1</CreateExecutable>
  51. <CreateLib>0</CreateLib>
  52. <CreateHexFile>1</CreateHexFile>
  53. <DebugInformation>1</DebugInformation>
  54. <BrowseInformation>1</BrowseInformation>
  55. <ListingPath>.\Listings\</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>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</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>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</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>0</RunUserProg2>
  82. <UserProg1Name>fromelf.exe --bin --output .\Listings\@L.bin !L</UserProg1Name>
  83. <UserProg2Name></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>0xc000</Size>
  247. </IRAM>
  248. <IROM>
  249. <Type>1</Type>
  250. <StartAddress>0x8000000</StartAddress>
  251. <Size>0x40000</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>0x8000000</StartAddress>
  276. <Size>0x40000</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>0xc000</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>2</wLevel>
  323. <uThumb>0</uThumb>
  324. <uSurpInc>0</uSurpInc>
  325. <uC99>1</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,BOOTLOADER_APP</Define>
  338. <Undefine></Undefine>
  339. <IncludePath>..\project;..\core;..\STM32F10x_FWLib\inc;..\peripheral;..\app;..\radio</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>1</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>..\OBJ\Template.sct</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>project</GroupName>
  382. <Files>
  383. <File>
  384. <FileName>main.c</FileName>
  385. <FileType>1</FileType>
  386. <FilePath>..\project\main.c</FilePath>
  387. </File>
  388. <File>
  389. <FileName>stm32f10x_it.c</FileName>
  390. <FileType>1</FileType>
  391. <FilePath>..\project\stm32f10x_it.c</FilePath>
  392. </File>
  393. <File>
  394. <FileName>system_stm32f10x.c</FileName>
  395. <FileType>1</FileType>
  396. <FilePath>..\project\system_stm32f10x.c</FilePath>
  397. </File>
  398. </Files>
  399. </Group>
  400. <Group>
  401. <GroupName>peripheral</GroupName>
  402. <Files>
  403. <File>
  404. <FileName>myUart.c</FileName>
  405. <FileType>1</FileType>
  406. <FilePath>..\peripheral\myUart.c</FilePath>
  407. </File>
  408. <File>
  409. <FileName>sys.c</FileName>
  410. <FileType>1</FileType>
  411. <FilePath>..\peripheral\sys.c</FilePath>
  412. </File>
  413. <File>
  414. <FileName>myADC.c</FileName>
  415. <FileType>1</FileType>
  416. <FilePath>..\peripheral\myADC.c</FilePath>
  417. </File>
  418. <File>
  419. <FileName>myInputCapture.c</FileName>
  420. <FileType>1</FileType>
  421. <FilePath>..\peripheral\myInputCapture.c</FilePath>
  422. </File>
  423. <File>
  424. <FileName>myUart3.c</FileName>
  425. <FileType>1</FileType>
  426. <FilePath>..\peripheral\myUart3.c</FilePath>
  427. </File>
  428. </Files>
  429. </Group>
  430. <Group>
  431. <GroupName>core</GroupName>
  432. <Files>
  433. <File>
  434. <FileName>core_cm3.c</FileName>
  435. <FileType>1</FileType>
  436. <FilePath>..\CORE\core_cm3.c</FilePath>
  437. </File>
  438. <File>
  439. <FileName>startup_stm32f10x_hd.s</FileName>
  440. <FileType>2</FileType>
  441. <FilePath>..\CORE\startup_stm32f10x_hd.s</FilePath>
  442. </File>
  443. </Files>
  444. </Group>
  445. <Group>
  446. <GroupName>FWLIB</GroupName>
  447. <Files>
  448. <File>
  449. <FileName>misc.c</FileName>
  450. <FileType>1</FileType>
  451. <FilePath>..\STM32F10x_FWLib\src\misc.c</FilePath>
  452. </File>
  453. <File>
  454. <FileName>stm32f10x_adc.c</FileName>
  455. <FileType>1</FileType>
  456. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_adc.c</FilePath>
  457. </File>
  458. <File>
  459. <FileName>stm32f10x_bkp.c</FileName>
  460. <FileType>1</FileType>
  461. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_bkp.c</FilePath>
  462. </File>
  463. <File>
  464. <FileName>stm32f10x_can.c</FileName>
  465. <FileType>1</FileType>
  466. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_can.c</FilePath>
  467. </File>
  468. <File>
  469. <FileName>stm32f10x_cec.c</FileName>
  470. <FileType>1</FileType>
  471. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_cec.c</FilePath>
  472. </File>
  473. <File>
  474. <FileName>stm32f10x_crc.c</FileName>
  475. <FileType>1</FileType>
  476. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_crc.c</FilePath>
  477. </File>
  478. <File>
  479. <FileName>stm32f10x_dac.c</FileName>
  480. <FileType>1</FileType>
  481. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dac.c</FilePath>
  482. </File>
  483. <File>
  484. <FileName>stm32f10x_dbgmcu.c</FileName>
  485. <FileType>1</FileType>
  486. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dbgmcu.c</FilePath>
  487. </File>
  488. <File>
  489. <FileName>stm32f10x_dma.c</FileName>
  490. <FileType>1</FileType>
  491. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dma.c</FilePath>
  492. </File>
  493. <File>
  494. <FileName>stm32f10x_exti.c</FileName>
  495. <FileType>1</FileType>
  496. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_exti.c</FilePath>
  497. </File>
  498. <File>
  499. <FileName>stm32f10x_flash.c</FileName>
  500. <FileType>1</FileType>
  501. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_flash.c</FilePath>
  502. </File>
  503. <File>
  504. <FileName>stm32f10x_fsmc.c</FileName>
  505. <FileType>1</FileType>
  506. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_fsmc.c</FilePath>
  507. </File>
  508. <File>
  509. <FileName>stm32f10x_gpio.c</FileName>
  510. <FileType>1</FileType>
  511. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_gpio.c</FilePath>
  512. </File>
  513. <File>
  514. <FileName>stm32f10x_i2c.c</FileName>
  515. <FileType>1</FileType>
  516. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_i2c.c</FilePath>
  517. </File>
  518. <File>
  519. <FileName>stm32f10x_iwdg.c</FileName>
  520. <FileType>1</FileType>
  521. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_iwdg.c</FilePath>
  522. </File>
  523. <File>
  524. <FileName>stm32f10x_pwr.c</FileName>
  525. <FileType>1</FileType>
  526. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_pwr.c</FilePath>
  527. </File>
  528. <File>
  529. <FileName>stm32f10x_rcc.c</FileName>
  530. <FileType>1</FileType>
  531. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rcc.c</FilePath>
  532. </File>
  533. <File>
  534. <FileName>stm32f10x_rtc.c</FileName>
  535. <FileType>1</FileType>
  536. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rtc.c</FilePath>
  537. </File>
  538. <File>
  539. <FileName>stm32f10x_sdio.c</FileName>
  540. <FileType>1</FileType>
  541. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_sdio.c</FilePath>
  542. </File>
  543. <File>
  544. <FileName>stm32f10x_spi.c</FileName>
  545. <FileType>1</FileType>
  546. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_spi.c</FilePath>
  547. </File>
  548. <File>
  549. <FileName>stm32f10x_tim.c</FileName>
  550. <FileType>1</FileType>
  551. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_tim.c</FilePath>
  552. </File>
  553. <File>
  554. <FileName>stm32f10x_usart.c</FileName>
  555. <FileType>1</FileType>
  556. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_usart.c</FilePath>
  557. </File>
  558. <File>
  559. <FileName>stm32f10x_wwdg.c</FileName>
  560. <FileType>1</FileType>
  561. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_wwdg.c</FilePath>
  562. </File>
  563. </Files>
  564. </Group>
  565. <Group>
  566. <GroupName>app</GroupName>
  567. <Files>
  568. <File>
  569. <FileName>led.c</FileName>
  570. <FileType>1</FileType>
  571. <FilePath>..\APP\led.c</FilePath>
  572. </File>
  573. <File>
  574. <FileName>key.c</FileName>
  575. <FileType>1</FileType>
  576. <FilePath>..\APP\key.c</FilePath>
  577. </File>
  578. <File>
  579. <FileName>stmflash.c</FileName>
  580. <FileType>1</FileType>
  581. <FilePath>..\APP\stmflash.c</FilePath>
  582. </File>
  583. <File>
  584. <FileName>ReadKey.c</FileName>
  585. <FileType>1</FileType>
  586. <FilePath>..\APP\ReadKey.c</FilePath>
  587. </File>
  588. <File>
  589. <FileName>myLcd.c</FileName>
  590. <FileType>1</FileType>
  591. <FilePath>..\APP\myLcd.c</FilePath>
  592. </File>
  593. <File>
  594. <FileName>myTim.c</FileName>
  595. <FileType>1</FileType>
  596. <FilePath>..\APP\myTim.c</FilePath>
  597. </File>
  598. <File>
  599. <FileName>crc8.c</FileName>
  600. <FileType>1</FileType>
  601. <FilePath>..\app\crc8.c</FilePath>
  602. </File>
  603. <File>
  604. <FileName>eventUnit.c</FileName>
  605. <FileType>1</FileType>
  606. <FilePath>..\app\eventUnit.c</FilePath>
  607. </File>
  608. <File>
  609. <FileName>myDisplayUnit.c</FileName>
  610. <FileType>1</FileType>
  611. <FilePath>..\app\myDisplayUnit.c</FilePath>
  612. </File>
  613. <File>
  614. <FileName>myFlashData.c</FileName>
  615. <FileType>1</FileType>
  616. <FilePath>..\app\myFlashData.c</FilePath>
  617. </File>
  618. </Files>
  619. </Group>
  620. <Group>
  621. <GroupName>radio</GroupName>
  622. <Files>
  623. <File>
  624. <FileName>myRadio.c</FileName>
  625. <FileType>1</FileType>
  626. <FilePath>..\radio\myRadio.c</FilePath>
  627. </File>
  628. <File>
  629. <FileName>myRadio_gpio.c</FileName>
  630. <FileType>1</FileType>
  631. <FilePath>..\radio\myRadio_gpio.c</FilePath>
  632. </File>
  633. <File>
  634. <FileName>crc.c</FileName>
  635. <FileType>1</FileType>
  636. <FilePath>..\radio\crc.c</FilePath>
  637. </File>
  638. <File>
  639. <FileName>radio.c</FileName>
  640. <FileType>1</FileType>
  641. <FilePath>..\radio\radio.c</FilePath>
  642. </File>
  643. <File>
  644. <FileName>sx126x.c</FileName>
  645. <FileType>1</FileType>
  646. <FilePath>..\radio\sx126x.c</FilePath>
  647. </File>
  648. <File>
  649. <FileName>sx126x-board.c</FileName>
  650. <FileType>1</FileType>
  651. <FilePath>..\radio\sx126x-board.c</FilePath>
  652. </File>
  653. </Files>
  654. </Group>
  655. </Groups>
  656. </Target>
  657. <Target>
  658. <TargetName>project_AT</TargetName>
  659. <ToolsetNumber>0x4</ToolsetNumber>
  660. <ToolsetName>ARM-ADS</ToolsetName>
  661. <pCCUsed>5060750::V5.06 update 6 (build 750)::.\ARMCC</pCCUsed>
  662. <uAC6>0</uAC6>
  663. <TargetOption>
  664. <TargetCommonOption>
  665. <Device>-AT32F413RCT7</Device>
  666. <Vendor>ArteryTek</Vendor>
  667. <PackID>ArteryTek.AT32F413_DFP.2.0.7</PackID>
  668. <Cpu>IRAM(0x20000000,0x8000) IROM(0x08000000,0x40000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE</Cpu>
  669. <FlashUtilSpec></FlashUtilSpec>
  670. <StartupFile></StartupFile>
  671. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0AT32F413_256 -FS08000000 -FL040000 -FP0($$Device:-AT32F413RCT7$Flash\AT32F413_256.FLM))</FlashDriverDll>
  672. <DeviceId>0</DeviceId>
  673. <RegisterFile>$$Device:-AT32F413RCT7$Device\Include\at32f413.h</RegisterFile>
  674. <MemoryEnv></MemoryEnv>
  675. <Cmp></Cmp>
  676. <Asm></Asm>
  677. <Linker></Linker>
  678. <OHString></OHString>
  679. <InfinionOptionDll></InfinionOptionDll>
  680. <SLE66CMisc></SLE66CMisc>
  681. <SLE66AMisc></SLE66AMisc>
  682. <SLE66LinkerMisc></SLE66LinkerMisc>
  683. <SFDFile>$$Device:-AT32F413RCT7$SVD\AT32F413xx_v2.svd</SFDFile>
  684. <bCustSvd>0</bCustSvd>
  685. <UseEnv>0</UseEnv>
  686. <BinPath></BinPath>
  687. <IncludePath></IncludePath>
  688. <LibPath></LibPath>
  689. <RegisterFilePath></RegisterFilePath>
  690. <DBRegisterFilePath></DBRegisterFilePath>
  691. <TargetStatus>
  692. <Error>0</Error>
  693. <ExitCodeStop>0</ExitCodeStop>
  694. <ButtonStop>0</ButtonStop>
  695. <NotGenerated>0</NotGenerated>
  696. <InvalidFlash>1</InvalidFlash>
  697. </TargetStatus>
  698. <OutputDirectory>.\Objects\</OutputDirectory>
  699. <OutputName>VGKitBoard_237xS_AT_V10</OutputName>
  700. <CreateExecutable>1</CreateExecutable>
  701. <CreateLib>0</CreateLib>
  702. <CreateHexFile>1</CreateHexFile>
  703. <DebugInformation>1</DebugInformation>
  704. <BrowseInformation>1</BrowseInformation>
  705. <ListingPath>.\Listings\</ListingPath>
  706. <HexFormatSelection>1</HexFormatSelection>
  707. <Merge32K>0</Merge32K>
  708. <CreateBatchFile>0</CreateBatchFile>
  709. <BeforeCompile>
  710. <RunUserProg1>0</RunUserProg1>
  711. <RunUserProg2>0</RunUserProg2>
  712. <UserProg1Name>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</UserProg1Name>
  713. <UserProg2Name></UserProg2Name>
  714. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  715. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  716. <nStopU1X>0</nStopU1X>
  717. <nStopU2X>0</nStopU2X>
  718. </BeforeCompile>
  719. <BeforeMake>
  720. <RunUserProg1>0</RunUserProg1>
  721. <RunUserProg2>0</RunUserProg2>
  722. <UserProg1Name>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</UserProg1Name>
  723. <UserProg2Name></UserProg2Name>
  724. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  725. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  726. <nStopB1X>0</nStopB1X>
  727. <nStopB2X>0</nStopB2X>
  728. </BeforeMake>
  729. <AfterMake>
  730. <RunUserProg1>0</RunUserProg1>
  731. <RunUserProg2>0</RunUserProg2>
  732. <UserProg1Name></UserProg1Name>
  733. <UserProg2Name></UserProg2Name>
  734. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  735. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  736. <nStopA1X>0</nStopA1X>
  737. <nStopA2X>0</nStopA2X>
  738. </AfterMake>
  739. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  740. <SVCSIdString></SVCSIdString>
  741. </TargetCommonOption>
  742. <CommonProperty>
  743. <UseCPPCompiler>0</UseCPPCompiler>
  744. <RVCTCodeConst>0</RVCTCodeConst>
  745. <RVCTZI>0</RVCTZI>
  746. <RVCTOtherData>0</RVCTOtherData>
  747. <ModuleSelection>0</ModuleSelection>
  748. <IncludeInBuild>1</IncludeInBuild>
  749. <AlwaysBuild>0</AlwaysBuild>
  750. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  751. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  752. <PublicsOnly>0</PublicsOnly>
  753. <StopOnExitCode>3</StopOnExitCode>
  754. <CustomArgument></CustomArgument>
  755. <IncludeLibraryModules></IncludeLibraryModules>
  756. <ComprImg>1</ComprImg>
  757. </CommonProperty>
  758. <DllOption>
  759. <SimDllName>SARMCM3.DLL</SimDllName>
  760. <SimDllArguments> -REMAP -MPU</SimDllArguments>
  761. <SimDlgDll>DCM.DLL</SimDlgDll>
  762. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  763. <TargetDllName>SARMCM3.DLL</TargetDllName>
  764. <TargetDllArguments> -MPU</TargetDllArguments>
  765. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  766. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  767. </DllOption>
  768. <DebugOption>
  769. <OPTHX>
  770. <HexSelection>1</HexSelection>
  771. <HexRangeLowAddress>0</HexRangeLowAddress>
  772. <HexRangeHighAddress>0</HexRangeHighAddress>
  773. <HexOffset>0</HexOffset>
  774. <Oh166RecLen>16</Oh166RecLen>
  775. </OPTHX>
  776. </DebugOption>
  777. <Utilities>
  778. <Flash1>
  779. <UseTargetDll>1</UseTargetDll>
  780. <UseExternalTool>0</UseExternalTool>
  781. <RunIndependent>0</RunIndependent>
  782. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  783. <Capability>1</Capability>
  784. <DriverSelection>4096</DriverSelection>
  785. </Flash1>
  786. <bUseTDR>1</bUseTDR>
  787. <Flash2>BIN\UL2CM3.DLL</Flash2>
  788. <Flash3></Flash3>
  789. <Flash4></Flash4>
  790. <pFcarmOut></pFcarmOut>
  791. <pFcarmGrp></pFcarmGrp>
  792. <pFcArmRoot></pFcArmRoot>
  793. <FcArmLst>0</FcArmLst>
  794. </Utilities>
  795. <TargetArmAds>
  796. <ArmAdsMisc>
  797. <GenerateListings>0</GenerateListings>
  798. <asHll>1</asHll>
  799. <asAsm>1</asAsm>
  800. <asMacX>1</asMacX>
  801. <asSyms>1</asSyms>
  802. <asFals>1</asFals>
  803. <asDbgD>1</asDbgD>
  804. <asForm>1</asForm>
  805. <ldLst>0</ldLst>
  806. <ldmm>1</ldmm>
  807. <ldXref>1</ldXref>
  808. <BigEnd>0</BigEnd>
  809. <AdsALst>1</AdsALst>
  810. <AdsACrf>1</AdsACrf>
  811. <AdsANop>0</AdsANop>
  812. <AdsANot>0</AdsANot>
  813. <AdsLLst>1</AdsLLst>
  814. <AdsLmap>1</AdsLmap>
  815. <AdsLcgr>1</AdsLcgr>
  816. <AdsLsym>1</AdsLsym>
  817. <AdsLszi>1</AdsLszi>
  818. <AdsLtoi>1</AdsLtoi>
  819. <AdsLsun>1</AdsLsun>
  820. <AdsLven>1</AdsLven>
  821. <AdsLsxf>1</AdsLsxf>
  822. <RvctClst>0</RvctClst>
  823. <GenPPlst>0</GenPPlst>
  824. <AdsCpuType>"Cortex-M4"</AdsCpuType>
  825. <RvctDeviceName></RvctDeviceName>
  826. <mOS>0</mOS>
  827. <uocRom>0</uocRom>
  828. <uocRam>0</uocRam>
  829. <hadIROM>1</hadIROM>
  830. <hadIRAM>1</hadIRAM>
  831. <hadXRAM>0</hadXRAM>
  832. <uocXRam>0</uocXRam>
  833. <RvdsVP>1</RvdsVP>
  834. <RvdsMve>0</RvdsMve>
  835. <RvdsCdeCp>0</RvdsCdeCp>
  836. <hadIRAM2>0</hadIRAM2>
  837. <hadIROM2>0</hadIROM2>
  838. <StupSel>8</StupSel>
  839. <useUlib>1</useUlib>
  840. <EndSel>0</EndSel>
  841. <uLtcg>0</uLtcg>
  842. <nSecure>0</nSecure>
  843. <RoSelD>3</RoSelD>
  844. <RwSelD>3</RwSelD>
  845. <CodeSel>0</CodeSel>
  846. <OptFeed>0</OptFeed>
  847. <NoZi1>0</NoZi1>
  848. <NoZi2>0</NoZi2>
  849. <NoZi3>0</NoZi3>
  850. <NoZi4>0</NoZi4>
  851. <NoZi5>0</NoZi5>
  852. <Ro1Chk>0</Ro1Chk>
  853. <Ro2Chk>0</Ro2Chk>
  854. <Ro3Chk>0</Ro3Chk>
  855. <Ir1Chk>1</Ir1Chk>
  856. <Ir2Chk>0</Ir2Chk>
  857. <Ra1Chk>0</Ra1Chk>
  858. <Ra2Chk>0</Ra2Chk>
  859. <Ra3Chk>0</Ra3Chk>
  860. <Im1Chk>1</Im1Chk>
  861. <Im2Chk>0</Im2Chk>
  862. <OnChipMemories>
  863. <Ocm1>
  864. <Type>0</Type>
  865. <StartAddress>0x0</StartAddress>
  866. <Size>0x0</Size>
  867. </Ocm1>
  868. <Ocm2>
  869. <Type>0</Type>
  870. <StartAddress>0x0</StartAddress>
  871. <Size>0x0</Size>
  872. </Ocm2>
  873. <Ocm3>
  874. <Type>0</Type>
  875. <StartAddress>0x0</StartAddress>
  876. <Size>0x0</Size>
  877. </Ocm3>
  878. <Ocm4>
  879. <Type>0</Type>
  880. <StartAddress>0x0</StartAddress>
  881. <Size>0x0</Size>
  882. </Ocm4>
  883. <Ocm5>
  884. <Type>0</Type>
  885. <StartAddress>0x0</StartAddress>
  886. <Size>0x0</Size>
  887. </Ocm5>
  888. <Ocm6>
  889. <Type>0</Type>
  890. <StartAddress>0x0</StartAddress>
  891. <Size>0x0</Size>
  892. </Ocm6>
  893. <IRAM>
  894. <Type>0</Type>
  895. <StartAddress>0x20000000</StartAddress>
  896. <Size>0x8000</Size>
  897. </IRAM>
  898. <IROM>
  899. <Type>1</Type>
  900. <StartAddress>0x8000000</StartAddress>
  901. <Size>0x40000</Size>
  902. </IROM>
  903. <XRAM>
  904. <Type>0</Type>
  905. <StartAddress>0x0</StartAddress>
  906. <Size>0x0</Size>
  907. </XRAM>
  908. <OCR_RVCT1>
  909. <Type>1</Type>
  910. <StartAddress>0x0</StartAddress>
  911. <Size>0x0</Size>
  912. </OCR_RVCT1>
  913. <OCR_RVCT2>
  914. <Type>1</Type>
  915. <StartAddress>0x0</StartAddress>
  916. <Size>0x0</Size>
  917. </OCR_RVCT2>
  918. <OCR_RVCT3>
  919. <Type>1</Type>
  920. <StartAddress>0x0</StartAddress>
  921. <Size>0x0</Size>
  922. </OCR_RVCT3>
  923. <OCR_RVCT4>
  924. <Type>1</Type>
  925. <StartAddress>0x8000000</StartAddress>
  926. <Size>0x40000</Size>
  927. </OCR_RVCT4>
  928. <OCR_RVCT5>
  929. <Type>1</Type>
  930. <StartAddress>0x0</StartAddress>
  931. <Size>0x0</Size>
  932. </OCR_RVCT5>
  933. <OCR_RVCT6>
  934. <Type>0</Type>
  935. <StartAddress>0x0</StartAddress>
  936. <Size>0x0</Size>
  937. </OCR_RVCT6>
  938. <OCR_RVCT7>
  939. <Type>0</Type>
  940. <StartAddress>0x0</StartAddress>
  941. <Size>0x0</Size>
  942. </OCR_RVCT7>
  943. <OCR_RVCT8>
  944. <Type>0</Type>
  945. <StartAddress>0x0</StartAddress>
  946. <Size>0x0</Size>
  947. </OCR_RVCT8>
  948. <OCR_RVCT9>
  949. <Type>0</Type>
  950. <StartAddress>0x20000000</StartAddress>
  951. <Size>0x8000</Size>
  952. </OCR_RVCT9>
  953. <OCR_RVCT10>
  954. <Type>0</Type>
  955. <StartAddress>0x0</StartAddress>
  956. <Size>0x0</Size>
  957. </OCR_RVCT10>
  958. </OnChipMemories>
  959. <RvctStartVector></RvctStartVector>
  960. </ArmAdsMisc>
  961. <Cads>
  962. <interw>1</interw>
  963. <Optim>1</Optim>
  964. <oTime>0</oTime>
  965. <SplitLS>0</SplitLS>
  966. <OneElfS>1</OneElfS>
  967. <Strict>0</Strict>
  968. <EnumInt>0</EnumInt>
  969. <PlainCh>0</PlainCh>
  970. <Ropi>0</Ropi>
  971. <Rwpi>0</Rwpi>
  972. <wLevel>2</wLevel>
  973. <uThumb>0</uThumb>
  974. <uSurpInc>0</uSurpInc>
  975. <uC99>1</uC99>
  976. <uGnu>0</uGnu>
  977. <useXO>0</useXO>
  978. <v6Lang>1</v6Lang>
  979. <v6LangP>1</v6LangP>
  980. <vShortEn>1</vShortEn>
  981. <vShortWch>1</vShortWch>
  982. <v6Lto>0</v6Lto>
  983. <v6WtE>0</v6WtE>
  984. <v6Rtti>0</v6Rtti>
  985. <VariousControls>
  986. <MiscControls></MiscControls>
  987. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER</Define>
  988. <Undefine></Undefine>
  989. <IncludePath>..\project;..\core;..\STM32F10x_FWLib\inc;..\peripheral;..\app;..\radio</IncludePath>
  990. </VariousControls>
  991. </Cads>
  992. <Aads>
  993. <interw>1</interw>
  994. <Ropi>0</Ropi>
  995. <Rwpi>0</Rwpi>
  996. <thumb>0</thumb>
  997. <SplitLS>0</SplitLS>
  998. <SwStkChk>0</SwStkChk>
  999. <NoWarn>0</NoWarn>
  1000. <uSurpInc>0</uSurpInc>
  1001. <useXO>0</useXO>
  1002. <ClangAsOpt>1</ClangAsOpt>
  1003. <VariousControls>
  1004. <MiscControls></MiscControls>
  1005. <Define></Define>
  1006. <Undefine></Undefine>
  1007. <IncludePath></IncludePath>
  1008. </VariousControls>
  1009. </Aads>
  1010. <LDads>
  1011. <umfTarg>1</umfTarg>
  1012. <Ropi>0</Ropi>
  1013. <Rwpi>0</Rwpi>
  1014. <noStLib>0</noStLib>
  1015. <RepFail>1</RepFail>
  1016. <useFile>0</useFile>
  1017. <TextAddressRange>0x08000000</TextAddressRange>
  1018. <DataAddressRange>0x20000000</DataAddressRange>
  1019. <pXoBase></pXoBase>
  1020. <ScatterFile>..\OBJ\Template.sct</ScatterFile>
  1021. <IncludeLibs></IncludeLibs>
  1022. <IncludeLibsPath></IncludeLibsPath>
  1023. <Misc></Misc>
  1024. <LinkerInputFile></LinkerInputFile>
  1025. <DisabledWarnings></DisabledWarnings>
  1026. </LDads>
  1027. </TargetArmAds>
  1028. </TargetOption>
  1029. <Groups>
  1030. <Group>
  1031. <GroupName>project</GroupName>
  1032. <Files>
  1033. <File>
  1034. <FileName>main.c</FileName>
  1035. <FileType>1</FileType>
  1036. <FilePath>..\project\main.c</FilePath>
  1037. </File>
  1038. <File>
  1039. <FileName>stm32f10x_it.c</FileName>
  1040. <FileType>1</FileType>
  1041. <FilePath>..\project\stm32f10x_it.c</FilePath>
  1042. </File>
  1043. <File>
  1044. <FileName>system_stm32f10x.c</FileName>
  1045. <FileType>1</FileType>
  1046. <FilePath>..\project\system_stm32f10x.c</FilePath>
  1047. </File>
  1048. </Files>
  1049. </Group>
  1050. <Group>
  1051. <GroupName>peripheral</GroupName>
  1052. <Files>
  1053. <File>
  1054. <FileName>myUart.c</FileName>
  1055. <FileType>1</FileType>
  1056. <FilePath>..\peripheral\myUart.c</FilePath>
  1057. </File>
  1058. <File>
  1059. <FileName>sys.c</FileName>
  1060. <FileType>1</FileType>
  1061. <FilePath>..\peripheral\sys.c</FilePath>
  1062. </File>
  1063. <File>
  1064. <FileName>myADC.c</FileName>
  1065. <FileType>1</FileType>
  1066. <FilePath>..\peripheral\myADC.c</FilePath>
  1067. </File>
  1068. <File>
  1069. <FileName>myInputCapture.c</FileName>
  1070. <FileType>1</FileType>
  1071. <FilePath>..\peripheral\myInputCapture.c</FilePath>
  1072. </File>
  1073. <File>
  1074. <FileName>myUart3.c</FileName>
  1075. <FileType>1</FileType>
  1076. <FilePath>..\peripheral\myUart3.c</FilePath>
  1077. </File>
  1078. </Files>
  1079. </Group>
  1080. <Group>
  1081. <GroupName>core</GroupName>
  1082. <Files>
  1083. <File>
  1084. <FileName>core_cm3.c</FileName>
  1085. <FileType>1</FileType>
  1086. <FilePath>..\CORE\core_cm3.c</FilePath>
  1087. </File>
  1088. <File>
  1089. <FileName>startup_stm32f10x_hd.s</FileName>
  1090. <FileType>2</FileType>
  1091. <FilePath>..\CORE\startup_stm32f10x_hd.s</FilePath>
  1092. </File>
  1093. </Files>
  1094. </Group>
  1095. <Group>
  1096. <GroupName>FWLIB</GroupName>
  1097. <Files>
  1098. <File>
  1099. <FileName>misc.c</FileName>
  1100. <FileType>1</FileType>
  1101. <FilePath>..\STM32F10x_FWLib\src\misc.c</FilePath>
  1102. </File>
  1103. <File>
  1104. <FileName>stm32f10x_adc.c</FileName>
  1105. <FileType>1</FileType>
  1106. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_adc.c</FilePath>
  1107. </File>
  1108. <File>
  1109. <FileName>stm32f10x_bkp.c</FileName>
  1110. <FileType>1</FileType>
  1111. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_bkp.c</FilePath>
  1112. </File>
  1113. <File>
  1114. <FileName>stm32f10x_can.c</FileName>
  1115. <FileType>1</FileType>
  1116. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_can.c</FilePath>
  1117. </File>
  1118. <File>
  1119. <FileName>stm32f10x_cec.c</FileName>
  1120. <FileType>1</FileType>
  1121. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_cec.c</FilePath>
  1122. </File>
  1123. <File>
  1124. <FileName>stm32f10x_crc.c</FileName>
  1125. <FileType>1</FileType>
  1126. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_crc.c</FilePath>
  1127. </File>
  1128. <File>
  1129. <FileName>stm32f10x_dac.c</FileName>
  1130. <FileType>1</FileType>
  1131. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dac.c</FilePath>
  1132. </File>
  1133. <File>
  1134. <FileName>stm32f10x_dbgmcu.c</FileName>
  1135. <FileType>1</FileType>
  1136. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dbgmcu.c</FilePath>
  1137. </File>
  1138. <File>
  1139. <FileName>stm32f10x_dma.c</FileName>
  1140. <FileType>1</FileType>
  1141. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dma.c</FilePath>
  1142. </File>
  1143. <File>
  1144. <FileName>stm32f10x_exti.c</FileName>
  1145. <FileType>1</FileType>
  1146. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_exti.c</FilePath>
  1147. </File>
  1148. <File>
  1149. <FileName>stm32f10x_flash.c</FileName>
  1150. <FileType>1</FileType>
  1151. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_flash.c</FilePath>
  1152. </File>
  1153. <File>
  1154. <FileName>stm32f10x_fsmc.c</FileName>
  1155. <FileType>1</FileType>
  1156. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_fsmc.c</FilePath>
  1157. </File>
  1158. <File>
  1159. <FileName>stm32f10x_gpio.c</FileName>
  1160. <FileType>1</FileType>
  1161. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_gpio.c</FilePath>
  1162. </File>
  1163. <File>
  1164. <FileName>stm32f10x_i2c.c</FileName>
  1165. <FileType>1</FileType>
  1166. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_i2c.c</FilePath>
  1167. </File>
  1168. <File>
  1169. <FileName>stm32f10x_iwdg.c</FileName>
  1170. <FileType>1</FileType>
  1171. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_iwdg.c</FilePath>
  1172. </File>
  1173. <File>
  1174. <FileName>stm32f10x_pwr.c</FileName>
  1175. <FileType>1</FileType>
  1176. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_pwr.c</FilePath>
  1177. </File>
  1178. <File>
  1179. <FileName>stm32f10x_rcc.c</FileName>
  1180. <FileType>1</FileType>
  1181. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rcc.c</FilePath>
  1182. </File>
  1183. <File>
  1184. <FileName>stm32f10x_rtc.c</FileName>
  1185. <FileType>1</FileType>
  1186. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rtc.c</FilePath>
  1187. </File>
  1188. <File>
  1189. <FileName>stm32f10x_sdio.c</FileName>
  1190. <FileType>1</FileType>
  1191. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_sdio.c</FilePath>
  1192. </File>
  1193. <File>
  1194. <FileName>stm32f10x_spi.c</FileName>
  1195. <FileType>1</FileType>
  1196. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_spi.c</FilePath>
  1197. </File>
  1198. <File>
  1199. <FileName>stm32f10x_tim.c</FileName>
  1200. <FileType>1</FileType>
  1201. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_tim.c</FilePath>
  1202. </File>
  1203. <File>
  1204. <FileName>stm32f10x_usart.c</FileName>
  1205. <FileType>1</FileType>
  1206. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_usart.c</FilePath>
  1207. </File>
  1208. <File>
  1209. <FileName>stm32f10x_wwdg.c</FileName>
  1210. <FileType>1</FileType>
  1211. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_wwdg.c</FilePath>
  1212. </File>
  1213. </Files>
  1214. </Group>
  1215. <Group>
  1216. <GroupName>app</GroupName>
  1217. <Files>
  1218. <File>
  1219. <FileName>led.c</FileName>
  1220. <FileType>1</FileType>
  1221. <FilePath>..\APP\led.c</FilePath>
  1222. </File>
  1223. <File>
  1224. <FileName>key.c</FileName>
  1225. <FileType>1</FileType>
  1226. <FilePath>..\APP\key.c</FilePath>
  1227. </File>
  1228. <File>
  1229. <FileName>stmflash.c</FileName>
  1230. <FileType>1</FileType>
  1231. <FilePath>..\APP\stmflash.c</FilePath>
  1232. </File>
  1233. <File>
  1234. <FileName>ReadKey.c</FileName>
  1235. <FileType>1</FileType>
  1236. <FilePath>..\APP\ReadKey.c</FilePath>
  1237. </File>
  1238. <File>
  1239. <FileName>myLcd.c</FileName>
  1240. <FileType>1</FileType>
  1241. <FilePath>..\APP\myLcd.c</FilePath>
  1242. </File>
  1243. <File>
  1244. <FileName>myTim.c</FileName>
  1245. <FileType>1</FileType>
  1246. <FilePath>..\APP\myTim.c</FilePath>
  1247. </File>
  1248. <File>
  1249. <FileName>crc8.c</FileName>
  1250. <FileType>1</FileType>
  1251. <FilePath>..\app\crc8.c</FilePath>
  1252. </File>
  1253. <File>
  1254. <FileName>eventUnit.c</FileName>
  1255. <FileType>1</FileType>
  1256. <FilePath>..\app\eventUnit.c</FilePath>
  1257. </File>
  1258. <File>
  1259. <FileName>myDisplayUnit.c</FileName>
  1260. <FileType>1</FileType>
  1261. <FilePath>..\app\myDisplayUnit.c</FilePath>
  1262. </File>
  1263. <File>
  1264. <FileName>myFlashData.c</FileName>
  1265. <FileType>1</FileType>
  1266. <FilePath>..\app\myFlashData.c</FilePath>
  1267. </File>
  1268. </Files>
  1269. </Group>
  1270. <Group>
  1271. <GroupName>radio</GroupName>
  1272. <Files>
  1273. <File>
  1274. <FileName>myRadio.c</FileName>
  1275. <FileType>1</FileType>
  1276. <FilePath>..\radio\myRadio.c</FilePath>
  1277. </File>
  1278. <File>
  1279. <FileName>myRadio_gpio.c</FileName>
  1280. <FileType>1</FileType>
  1281. <FilePath>..\radio\myRadio_gpio.c</FilePath>
  1282. </File>
  1283. <File>
  1284. <FileName>crc.c</FileName>
  1285. <FileType>1</FileType>
  1286. <FilePath>..\radio\crc.c</FilePath>
  1287. </File>
  1288. <File>
  1289. <FileName>radio.c</FileName>
  1290. <FileType>1</FileType>
  1291. <FilePath>..\radio\radio.c</FilePath>
  1292. </File>
  1293. <File>
  1294. <FileName>sx126x.c</FileName>
  1295. <FileType>1</FileType>
  1296. <FilePath>..\radio\sx126x.c</FilePath>
  1297. </File>
  1298. <File>
  1299. <FileName>sx126x-board.c</FileName>
  1300. <FileType>1</FileType>
  1301. <FilePath>..\radio\sx126x-board.c</FilePath>
  1302. </File>
  1303. </Files>
  1304. </Group>
  1305. </Groups>
  1306. </Target>
  1307. <Target>
  1308. <TargetName>project_ST_APP</TargetName>
  1309. <ToolsetNumber>0x4</ToolsetNumber>
  1310. <ToolsetName>ARM-ADS</ToolsetName>
  1311. <pCCUsed>5060750::V5.06 update 6 (build 750)::.\ARMCC</pCCUsed>
  1312. <uAC6>0</uAC6>
  1313. <TargetOption>
  1314. <TargetCommonOption>
  1315. <Device>STM32F103RC</Device>
  1316. <Vendor>STMicroelectronics</Vendor>
  1317. <PackID>Keil.STM32F1xx_DFP.2.3.0</PackID>
  1318. <PackURL>http://www.keil.com/pack/</PackURL>
  1319. <Cpu>IRAM(0x20000000,0x0000C000) IROM(0x08000000,0x00040000) CPUTYPE("Cortex-M3") CLOCK(12000000) ELITTLE</Cpu>
  1320. <FlashUtilSpec></FlashUtilSpec>
  1321. <StartupFile></StartupFile>
  1322. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F10x_512 -FS08000000 -FL080000 -FP0($$Device:STM32F103RC$Flash\STM32F10x_512.FLM))</FlashDriverDll>
  1323. <DeviceId>0</DeviceId>
  1324. <RegisterFile>$$Device:STM32F103RC$Device\Include\stm32f10x.h</RegisterFile>
  1325. <MemoryEnv></MemoryEnv>
  1326. <Cmp></Cmp>
  1327. <Asm></Asm>
  1328. <Linker></Linker>
  1329. <OHString></OHString>
  1330. <InfinionOptionDll></InfinionOptionDll>
  1331. <SLE66CMisc></SLE66CMisc>
  1332. <SLE66AMisc></SLE66AMisc>
  1333. <SLE66LinkerMisc></SLE66LinkerMisc>
  1334. <SFDFile>$$Device:STM32F103RC$SVD\STM32F103xx.svd</SFDFile>
  1335. <bCustSvd>0</bCustSvd>
  1336. <UseEnv>0</UseEnv>
  1337. <BinPath></BinPath>
  1338. <IncludePath></IncludePath>
  1339. <LibPath></LibPath>
  1340. <RegisterFilePath></RegisterFilePath>
  1341. <DBRegisterFilePath></DBRegisterFilePath>
  1342. <TargetStatus>
  1343. <Error>0</Error>
  1344. <ExitCodeStop>0</ExitCodeStop>
  1345. <ButtonStop>0</ButtonStop>
  1346. <NotGenerated>0</NotGenerated>
  1347. <InvalidFlash>1</InvalidFlash>
  1348. </TargetStatus>
  1349. <OutputDirectory>.\Objects\</OutputDirectory>
  1350. <OutputName>VGKitBoard_237xS_ST_APP_V14</OutputName>
  1351. <CreateExecutable>1</CreateExecutable>
  1352. <CreateLib>0</CreateLib>
  1353. <CreateHexFile>1</CreateHexFile>
  1354. <DebugInformation>1</DebugInformation>
  1355. <BrowseInformation>1</BrowseInformation>
  1356. <ListingPath>.\Listings\</ListingPath>
  1357. <HexFormatSelection>1</HexFormatSelection>
  1358. <Merge32K>0</Merge32K>
  1359. <CreateBatchFile>0</CreateBatchFile>
  1360. <BeforeCompile>
  1361. <RunUserProg1>0</RunUserProg1>
  1362. <RunUserProg2>0</RunUserProg2>
  1363. <UserProg1Name>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</UserProg1Name>
  1364. <UserProg2Name></UserProg2Name>
  1365. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1366. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1367. <nStopU1X>0</nStopU1X>
  1368. <nStopU2X>0</nStopU2X>
  1369. </BeforeCompile>
  1370. <BeforeMake>
  1371. <RunUserProg1>0</RunUserProg1>
  1372. <RunUserProg2>0</RunUserProg2>
  1373. <UserProg1Name>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</UserProg1Name>
  1374. <UserProg2Name></UserProg2Name>
  1375. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1376. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1377. <nStopB1X>0</nStopB1X>
  1378. <nStopB2X>0</nStopB2X>
  1379. </BeforeMake>
  1380. <AfterMake>
  1381. <RunUserProg1>1</RunUserProg1>
  1382. <RunUserProg2>0</RunUserProg2>
  1383. <UserProg1Name>fromelf.exe --bin --output .\Listings\@L.bin !L</UserProg1Name>
  1384. <UserProg2Name></UserProg2Name>
  1385. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1386. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1387. <nStopA1X>0</nStopA1X>
  1388. <nStopA2X>0</nStopA2X>
  1389. </AfterMake>
  1390. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  1391. <SVCSIdString></SVCSIdString>
  1392. </TargetCommonOption>
  1393. <CommonProperty>
  1394. <UseCPPCompiler>0</UseCPPCompiler>
  1395. <RVCTCodeConst>0</RVCTCodeConst>
  1396. <RVCTZI>0</RVCTZI>
  1397. <RVCTOtherData>0</RVCTOtherData>
  1398. <ModuleSelection>0</ModuleSelection>
  1399. <IncludeInBuild>1</IncludeInBuild>
  1400. <AlwaysBuild>0</AlwaysBuild>
  1401. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  1402. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  1403. <PublicsOnly>0</PublicsOnly>
  1404. <StopOnExitCode>3</StopOnExitCode>
  1405. <CustomArgument></CustomArgument>
  1406. <IncludeLibraryModules></IncludeLibraryModules>
  1407. <ComprImg>1</ComprImg>
  1408. </CommonProperty>
  1409. <DllOption>
  1410. <SimDllName>SARMCM3.DLL</SimDllName>
  1411. <SimDllArguments> -REMAP</SimDllArguments>
  1412. <SimDlgDll>DCM.DLL</SimDlgDll>
  1413. <SimDlgDllArguments>-pCM3</SimDlgDllArguments>
  1414. <TargetDllName>SARMCM3.DLL</TargetDllName>
  1415. <TargetDllArguments></TargetDllArguments>
  1416. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  1417. <TargetDlgDllArguments>-pCM3</TargetDlgDllArguments>
  1418. </DllOption>
  1419. <DebugOption>
  1420. <OPTHX>
  1421. <HexSelection>1</HexSelection>
  1422. <HexRangeLowAddress>0</HexRangeLowAddress>
  1423. <HexRangeHighAddress>0</HexRangeHighAddress>
  1424. <HexOffset>0</HexOffset>
  1425. <Oh166RecLen>16</Oh166RecLen>
  1426. </OPTHX>
  1427. </DebugOption>
  1428. <Utilities>
  1429. <Flash1>
  1430. <UseTargetDll>1</UseTargetDll>
  1431. <UseExternalTool>0</UseExternalTool>
  1432. <RunIndependent>0</RunIndependent>
  1433. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  1434. <Capability>1</Capability>
  1435. <DriverSelection>4096</DriverSelection>
  1436. </Flash1>
  1437. <bUseTDR>1</bUseTDR>
  1438. <Flash2>BIN\UL2CM3.DLL</Flash2>
  1439. <Flash3></Flash3>
  1440. <Flash4></Flash4>
  1441. <pFcarmOut></pFcarmOut>
  1442. <pFcarmGrp></pFcarmGrp>
  1443. <pFcArmRoot></pFcArmRoot>
  1444. <FcArmLst>0</FcArmLst>
  1445. </Utilities>
  1446. <TargetArmAds>
  1447. <ArmAdsMisc>
  1448. <GenerateListings>0</GenerateListings>
  1449. <asHll>1</asHll>
  1450. <asAsm>1</asAsm>
  1451. <asMacX>1</asMacX>
  1452. <asSyms>1</asSyms>
  1453. <asFals>1</asFals>
  1454. <asDbgD>1</asDbgD>
  1455. <asForm>1</asForm>
  1456. <ldLst>0</ldLst>
  1457. <ldmm>1</ldmm>
  1458. <ldXref>1</ldXref>
  1459. <BigEnd>0</BigEnd>
  1460. <AdsALst>1</AdsALst>
  1461. <AdsACrf>1</AdsACrf>
  1462. <AdsANop>0</AdsANop>
  1463. <AdsANot>0</AdsANot>
  1464. <AdsLLst>1</AdsLLst>
  1465. <AdsLmap>1</AdsLmap>
  1466. <AdsLcgr>1</AdsLcgr>
  1467. <AdsLsym>1</AdsLsym>
  1468. <AdsLszi>1</AdsLszi>
  1469. <AdsLtoi>1</AdsLtoi>
  1470. <AdsLsun>1</AdsLsun>
  1471. <AdsLven>1</AdsLven>
  1472. <AdsLsxf>1</AdsLsxf>
  1473. <RvctClst>0</RvctClst>
  1474. <GenPPlst>0</GenPPlst>
  1475. <AdsCpuType>"Cortex-M3"</AdsCpuType>
  1476. <RvctDeviceName></RvctDeviceName>
  1477. <mOS>0</mOS>
  1478. <uocRom>0</uocRom>
  1479. <uocRam>0</uocRam>
  1480. <hadIROM>1</hadIROM>
  1481. <hadIRAM>1</hadIRAM>
  1482. <hadXRAM>0</hadXRAM>
  1483. <uocXRam>0</uocXRam>
  1484. <RvdsVP>0</RvdsVP>
  1485. <RvdsMve>0</RvdsMve>
  1486. <RvdsCdeCp>0</RvdsCdeCp>
  1487. <hadIRAM2>0</hadIRAM2>
  1488. <hadIROM2>0</hadIROM2>
  1489. <StupSel>8</StupSel>
  1490. <useUlib>1</useUlib>
  1491. <EndSel>0</EndSel>
  1492. <uLtcg>0</uLtcg>
  1493. <nSecure>0</nSecure>
  1494. <RoSelD>3</RoSelD>
  1495. <RwSelD>3</RwSelD>
  1496. <CodeSel>0</CodeSel>
  1497. <OptFeed>0</OptFeed>
  1498. <NoZi1>0</NoZi1>
  1499. <NoZi2>0</NoZi2>
  1500. <NoZi3>0</NoZi3>
  1501. <NoZi4>0</NoZi4>
  1502. <NoZi5>0</NoZi5>
  1503. <Ro1Chk>0</Ro1Chk>
  1504. <Ro2Chk>0</Ro2Chk>
  1505. <Ro3Chk>0</Ro3Chk>
  1506. <Ir1Chk>1</Ir1Chk>
  1507. <Ir2Chk>0</Ir2Chk>
  1508. <Ra1Chk>0</Ra1Chk>
  1509. <Ra2Chk>0</Ra2Chk>
  1510. <Ra3Chk>0</Ra3Chk>
  1511. <Im1Chk>1</Im1Chk>
  1512. <Im2Chk>0</Im2Chk>
  1513. <OnChipMemories>
  1514. <Ocm1>
  1515. <Type>0</Type>
  1516. <StartAddress>0x0</StartAddress>
  1517. <Size>0x0</Size>
  1518. </Ocm1>
  1519. <Ocm2>
  1520. <Type>0</Type>
  1521. <StartAddress>0x0</StartAddress>
  1522. <Size>0x0</Size>
  1523. </Ocm2>
  1524. <Ocm3>
  1525. <Type>0</Type>
  1526. <StartAddress>0x0</StartAddress>
  1527. <Size>0x0</Size>
  1528. </Ocm3>
  1529. <Ocm4>
  1530. <Type>0</Type>
  1531. <StartAddress>0x0</StartAddress>
  1532. <Size>0x0</Size>
  1533. </Ocm4>
  1534. <Ocm5>
  1535. <Type>0</Type>
  1536. <StartAddress>0x0</StartAddress>
  1537. <Size>0x0</Size>
  1538. </Ocm5>
  1539. <Ocm6>
  1540. <Type>0</Type>
  1541. <StartAddress>0x0</StartAddress>
  1542. <Size>0x0</Size>
  1543. </Ocm6>
  1544. <IRAM>
  1545. <Type>0</Type>
  1546. <StartAddress>0x20000000</StartAddress>
  1547. <Size>0xc000</Size>
  1548. </IRAM>
  1549. <IROM>
  1550. <Type>1</Type>
  1551. <StartAddress>0x8000000</StartAddress>
  1552. <Size>0x40000</Size>
  1553. </IROM>
  1554. <XRAM>
  1555. <Type>0</Type>
  1556. <StartAddress>0x0</StartAddress>
  1557. <Size>0x0</Size>
  1558. </XRAM>
  1559. <OCR_RVCT1>
  1560. <Type>1</Type>
  1561. <StartAddress>0x0</StartAddress>
  1562. <Size>0x0</Size>
  1563. </OCR_RVCT1>
  1564. <OCR_RVCT2>
  1565. <Type>1</Type>
  1566. <StartAddress>0x0</StartAddress>
  1567. <Size>0x0</Size>
  1568. </OCR_RVCT2>
  1569. <OCR_RVCT3>
  1570. <Type>1</Type>
  1571. <StartAddress>0x0</StartAddress>
  1572. <Size>0x0</Size>
  1573. </OCR_RVCT3>
  1574. <OCR_RVCT4>
  1575. <Type>1</Type>
  1576. <StartAddress>0x800c800</StartAddress>
  1577. <Size>0x40000</Size>
  1578. </OCR_RVCT4>
  1579. <OCR_RVCT5>
  1580. <Type>1</Type>
  1581. <StartAddress>0x0</StartAddress>
  1582. <Size>0x0</Size>
  1583. </OCR_RVCT5>
  1584. <OCR_RVCT6>
  1585. <Type>0</Type>
  1586. <StartAddress>0x0</StartAddress>
  1587. <Size>0x0</Size>
  1588. </OCR_RVCT6>
  1589. <OCR_RVCT7>
  1590. <Type>0</Type>
  1591. <StartAddress>0x0</StartAddress>
  1592. <Size>0x0</Size>
  1593. </OCR_RVCT7>
  1594. <OCR_RVCT8>
  1595. <Type>0</Type>
  1596. <StartAddress>0x0</StartAddress>
  1597. <Size>0x0</Size>
  1598. </OCR_RVCT8>
  1599. <OCR_RVCT9>
  1600. <Type>0</Type>
  1601. <StartAddress>0x20000000</StartAddress>
  1602. <Size>0xc000</Size>
  1603. </OCR_RVCT9>
  1604. <OCR_RVCT10>
  1605. <Type>0</Type>
  1606. <StartAddress>0x0</StartAddress>
  1607. <Size>0x0</Size>
  1608. </OCR_RVCT10>
  1609. </OnChipMemories>
  1610. <RvctStartVector></RvctStartVector>
  1611. </ArmAdsMisc>
  1612. <Cads>
  1613. <interw>1</interw>
  1614. <Optim>1</Optim>
  1615. <oTime>0</oTime>
  1616. <SplitLS>0</SplitLS>
  1617. <OneElfS>1</OneElfS>
  1618. <Strict>0</Strict>
  1619. <EnumInt>0</EnumInt>
  1620. <PlainCh>0</PlainCh>
  1621. <Ropi>0</Ropi>
  1622. <Rwpi>0</Rwpi>
  1623. <wLevel>2</wLevel>
  1624. <uThumb>0</uThumb>
  1625. <uSurpInc>0</uSurpInc>
  1626. <uC99>1</uC99>
  1627. <uGnu>0</uGnu>
  1628. <useXO>0</useXO>
  1629. <v6Lang>1</v6Lang>
  1630. <v6LangP>1</v6LangP>
  1631. <vShortEn>1</vShortEn>
  1632. <vShortWch>1</vShortWch>
  1633. <v6Lto>0</v6Lto>
  1634. <v6WtE>0</v6WtE>
  1635. <v6Rtti>0</v6Rtti>
  1636. <VariousControls>
  1637. <MiscControls></MiscControls>
  1638. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER,BOOTLOADER_APP</Define>
  1639. <Undefine></Undefine>
  1640. <IncludePath>..\project;..\core;..\STM32F10x_FWLib\inc;..\peripheral;..\app;..\radio</IncludePath>
  1641. </VariousControls>
  1642. </Cads>
  1643. <Aads>
  1644. <interw>1</interw>
  1645. <Ropi>0</Ropi>
  1646. <Rwpi>0</Rwpi>
  1647. <thumb>0</thumb>
  1648. <SplitLS>0</SplitLS>
  1649. <SwStkChk>0</SwStkChk>
  1650. <NoWarn>0</NoWarn>
  1651. <uSurpInc>0</uSurpInc>
  1652. <useXO>0</useXO>
  1653. <ClangAsOpt>1</ClangAsOpt>
  1654. <VariousControls>
  1655. <MiscControls></MiscControls>
  1656. <Define></Define>
  1657. <Undefine></Undefine>
  1658. <IncludePath></IncludePath>
  1659. </VariousControls>
  1660. </Aads>
  1661. <LDads>
  1662. <umfTarg>1</umfTarg>
  1663. <Ropi>0</Ropi>
  1664. <Rwpi>0</Rwpi>
  1665. <noStLib>0</noStLib>
  1666. <RepFail>1</RepFail>
  1667. <useFile>0</useFile>
  1668. <TextAddressRange>0x08000000</TextAddressRange>
  1669. <DataAddressRange>0x20000000</DataAddressRange>
  1670. <pXoBase></pXoBase>
  1671. <ScatterFile>..\OBJ\Template.sct</ScatterFile>
  1672. <IncludeLibs></IncludeLibs>
  1673. <IncludeLibsPath></IncludeLibsPath>
  1674. <Misc></Misc>
  1675. <LinkerInputFile></LinkerInputFile>
  1676. <DisabledWarnings></DisabledWarnings>
  1677. </LDads>
  1678. </TargetArmAds>
  1679. </TargetOption>
  1680. <Groups>
  1681. <Group>
  1682. <GroupName>project</GroupName>
  1683. <Files>
  1684. <File>
  1685. <FileName>main.c</FileName>
  1686. <FileType>1</FileType>
  1687. <FilePath>..\project\main.c</FilePath>
  1688. </File>
  1689. <File>
  1690. <FileName>stm32f10x_it.c</FileName>
  1691. <FileType>1</FileType>
  1692. <FilePath>..\project\stm32f10x_it.c</FilePath>
  1693. </File>
  1694. <File>
  1695. <FileName>system_stm32f10x.c</FileName>
  1696. <FileType>1</FileType>
  1697. <FilePath>..\project\system_stm32f10x.c</FilePath>
  1698. </File>
  1699. </Files>
  1700. </Group>
  1701. <Group>
  1702. <GroupName>peripheral</GroupName>
  1703. <Files>
  1704. <File>
  1705. <FileName>myUart.c</FileName>
  1706. <FileType>1</FileType>
  1707. <FilePath>..\peripheral\myUart.c</FilePath>
  1708. </File>
  1709. <File>
  1710. <FileName>sys.c</FileName>
  1711. <FileType>1</FileType>
  1712. <FilePath>..\peripheral\sys.c</FilePath>
  1713. </File>
  1714. <File>
  1715. <FileName>myADC.c</FileName>
  1716. <FileType>1</FileType>
  1717. <FilePath>..\peripheral\myADC.c</FilePath>
  1718. </File>
  1719. <File>
  1720. <FileName>myInputCapture.c</FileName>
  1721. <FileType>1</FileType>
  1722. <FilePath>..\peripheral\myInputCapture.c</FilePath>
  1723. </File>
  1724. <File>
  1725. <FileName>myUart3.c</FileName>
  1726. <FileType>1</FileType>
  1727. <FilePath>..\peripheral\myUart3.c</FilePath>
  1728. </File>
  1729. </Files>
  1730. </Group>
  1731. <Group>
  1732. <GroupName>core</GroupName>
  1733. <Files>
  1734. <File>
  1735. <FileName>core_cm3.c</FileName>
  1736. <FileType>1</FileType>
  1737. <FilePath>..\CORE\core_cm3.c</FilePath>
  1738. </File>
  1739. <File>
  1740. <FileName>startup_stm32f10x_hd.s</FileName>
  1741. <FileType>2</FileType>
  1742. <FilePath>..\CORE\startup_stm32f10x_hd.s</FilePath>
  1743. </File>
  1744. </Files>
  1745. </Group>
  1746. <Group>
  1747. <GroupName>FWLIB</GroupName>
  1748. <Files>
  1749. <File>
  1750. <FileName>misc.c</FileName>
  1751. <FileType>1</FileType>
  1752. <FilePath>..\STM32F10x_FWLib\src\misc.c</FilePath>
  1753. </File>
  1754. <File>
  1755. <FileName>stm32f10x_adc.c</FileName>
  1756. <FileType>1</FileType>
  1757. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_adc.c</FilePath>
  1758. </File>
  1759. <File>
  1760. <FileName>stm32f10x_bkp.c</FileName>
  1761. <FileType>1</FileType>
  1762. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_bkp.c</FilePath>
  1763. </File>
  1764. <File>
  1765. <FileName>stm32f10x_can.c</FileName>
  1766. <FileType>1</FileType>
  1767. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_can.c</FilePath>
  1768. </File>
  1769. <File>
  1770. <FileName>stm32f10x_cec.c</FileName>
  1771. <FileType>1</FileType>
  1772. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_cec.c</FilePath>
  1773. </File>
  1774. <File>
  1775. <FileName>stm32f10x_crc.c</FileName>
  1776. <FileType>1</FileType>
  1777. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_crc.c</FilePath>
  1778. </File>
  1779. <File>
  1780. <FileName>stm32f10x_dac.c</FileName>
  1781. <FileType>1</FileType>
  1782. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dac.c</FilePath>
  1783. </File>
  1784. <File>
  1785. <FileName>stm32f10x_dbgmcu.c</FileName>
  1786. <FileType>1</FileType>
  1787. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dbgmcu.c</FilePath>
  1788. </File>
  1789. <File>
  1790. <FileName>stm32f10x_dma.c</FileName>
  1791. <FileType>1</FileType>
  1792. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dma.c</FilePath>
  1793. </File>
  1794. <File>
  1795. <FileName>stm32f10x_exti.c</FileName>
  1796. <FileType>1</FileType>
  1797. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_exti.c</FilePath>
  1798. </File>
  1799. <File>
  1800. <FileName>stm32f10x_flash.c</FileName>
  1801. <FileType>1</FileType>
  1802. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_flash.c</FilePath>
  1803. </File>
  1804. <File>
  1805. <FileName>stm32f10x_fsmc.c</FileName>
  1806. <FileType>1</FileType>
  1807. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_fsmc.c</FilePath>
  1808. </File>
  1809. <File>
  1810. <FileName>stm32f10x_gpio.c</FileName>
  1811. <FileType>1</FileType>
  1812. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_gpio.c</FilePath>
  1813. </File>
  1814. <File>
  1815. <FileName>stm32f10x_i2c.c</FileName>
  1816. <FileType>1</FileType>
  1817. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_i2c.c</FilePath>
  1818. </File>
  1819. <File>
  1820. <FileName>stm32f10x_iwdg.c</FileName>
  1821. <FileType>1</FileType>
  1822. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_iwdg.c</FilePath>
  1823. </File>
  1824. <File>
  1825. <FileName>stm32f10x_pwr.c</FileName>
  1826. <FileType>1</FileType>
  1827. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_pwr.c</FilePath>
  1828. </File>
  1829. <File>
  1830. <FileName>stm32f10x_rcc.c</FileName>
  1831. <FileType>1</FileType>
  1832. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rcc.c</FilePath>
  1833. </File>
  1834. <File>
  1835. <FileName>stm32f10x_rtc.c</FileName>
  1836. <FileType>1</FileType>
  1837. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rtc.c</FilePath>
  1838. </File>
  1839. <File>
  1840. <FileName>stm32f10x_sdio.c</FileName>
  1841. <FileType>1</FileType>
  1842. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_sdio.c</FilePath>
  1843. </File>
  1844. <File>
  1845. <FileName>stm32f10x_spi.c</FileName>
  1846. <FileType>1</FileType>
  1847. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_spi.c</FilePath>
  1848. </File>
  1849. <File>
  1850. <FileName>stm32f10x_tim.c</FileName>
  1851. <FileType>1</FileType>
  1852. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_tim.c</FilePath>
  1853. </File>
  1854. <File>
  1855. <FileName>stm32f10x_usart.c</FileName>
  1856. <FileType>1</FileType>
  1857. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_usart.c</FilePath>
  1858. </File>
  1859. <File>
  1860. <FileName>stm32f10x_wwdg.c</FileName>
  1861. <FileType>1</FileType>
  1862. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_wwdg.c</FilePath>
  1863. </File>
  1864. </Files>
  1865. </Group>
  1866. <Group>
  1867. <GroupName>app</GroupName>
  1868. <Files>
  1869. <File>
  1870. <FileName>led.c</FileName>
  1871. <FileType>1</FileType>
  1872. <FilePath>..\APP\led.c</FilePath>
  1873. </File>
  1874. <File>
  1875. <FileName>key.c</FileName>
  1876. <FileType>1</FileType>
  1877. <FilePath>..\APP\key.c</FilePath>
  1878. </File>
  1879. <File>
  1880. <FileName>stmflash.c</FileName>
  1881. <FileType>1</FileType>
  1882. <FilePath>..\APP\stmflash.c</FilePath>
  1883. </File>
  1884. <File>
  1885. <FileName>ReadKey.c</FileName>
  1886. <FileType>1</FileType>
  1887. <FilePath>..\APP\ReadKey.c</FilePath>
  1888. </File>
  1889. <File>
  1890. <FileName>myLcd.c</FileName>
  1891. <FileType>1</FileType>
  1892. <FilePath>..\APP\myLcd.c</FilePath>
  1893. </File>
  1894. <File>
  1895. <FileName>myTim.c</FileName>
  1896. <FileType>1</FileType>
  1897. <FilePath>..\APP\myTim.c</FilePath>
  1898. </File>
  1899. <File>
  1900. <FileName>crc8.c</FileName>
  1901. <FileType>1</FileType>
  1902. <FilePath>..\app\crc8.c</FilePath>
  1903. </File>
  1904. <File>
  1905. <FileName>eventUnit.c</FileName>
  1906. <FileType>1</FileType>
  1907. <FilePath>..\app\eventUnit.c</FilePath>
  1908. </File>
  1909. <File>
  1910. <FileName>myDisplayUnit.c</FileName>
  1911. <FileType>1</FileType>
  1912. <FilePath>..\app\myDisplayUnit.c</FilePath>
  1913. </File>
  1914. <File>
  1915. <FileName>myFlashData.c</FileName>
  1916. <FileType>1</FileType>
  1917. <FilePath>..\app\myFlashData.c</FilePath>
  1918. </File>
  1919. </Files>
  1920. </Group>
  1921. <Group>
  1922. <GroupName>radio</GroupName>
  1923. <Files>
  1924. <File>
  1925. <FileName>myRadio.c</FileName>
  1926. <FileType>1</FileType>
  1927. <FilePath>..\radio\myRadio.c</FilePath>
  1928. </File>
  1929. <File>
  1930. <FileName>myRadio_gpio.c</FileName>
  1931. <FileType>1</FileType>
  1932. <FilePath>..\radio\myRadio_gpio.c</FilePath>
  1933. </File>
  1934. <File>
  1935. <FileName>crc.c</FileName>
  1936. <FileType>1</FileType>
  1937. <FilePath>..\radio\crc.c</FilePath>
  1938. </File>
  1939. <File>
  1940. <FileName>radio.c</FileName>
  1941. <FileType>1</FileType>
  1942. <FilePath>..\radio\radio.c</FilePath>
  1943. </File>
  1944. <File>
  1945. <FileName>sx126x.c</FileName>
  1946. <FileType>1</FileType>
  1947. <FilePath>..\radio\sx126x.c</FilePath>
  1948. </File>
  1949. <File>
  1950. <FileName>sx126x-board.c</FileName>
  1951. <FileType>1</FileType>
  1952. <FilePath>..\radio\sx126x-board.c</FilePath>
  1953. </File>
  1954. </Files>
  1955. </Group>
  1956. </Groups>
  1957. </Target>
  1958. <Target>
  1959. <TargetName>project_AT_APP</TargetName>
  1960. <ToolsetNumber>0x4</ToolsetNumber>
  1961. <ToolsetName>ARM-ADS</ToolsetName>
  1962. <pCCUsed>5060750::V5.06 update 6 (build 750)::.\ARMCC</pCCUsed>
  1963. <uAC6>0</uAC6>
  1964. <TargetOption>
  1965. <TargetCommonOption>
  1966. <Device>-AT32F413RCT7</Device>
  1967. <Vendor>ArteryTek</Vendor>
  1968. <PackID>ArteryTek.AT32F413_DFP.2.0.7</PackID>
  1969. <Cpu>IRAM(0x20000000,0x8000) IROM(0x08000000,0x40000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE</Cpu>
  1970. <FlashUtilSpec></FlashUtilSpec>
  1971. <StartupFile></StartupFile>
  1972. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0AT32F413_256 -FS08000000 -FL040000 -FP0($$Device:-AT32F413RCT7$Flash\AT32F413_256.FLM))</FlashDriverDll>
  1973. <DeviceId>0</DeviceId>
  1974. <RegisterFile>$$Device:-AT32F413RCT7$Device\Include\at32f413.h</RegisterFile>
  1975. <MemoryEnv></MemoryEnv>
  1976. <Cmp></Cmp>
  1977. <Asm></Asm>
  1978. <Linker></Linker>
  1979. <OHString></OHString>
  1980. <InfinionOptionDll></InfinionOptionDll>
  1981. <SLE66CMisc></SLE66CMisc>
  1982. <SLE66AMisc></SLE66AMisc>
  1983. <SLE66LinkerMisc></SLE66LinkerMisc>
  1984. <SFDFile>$$Device:-AT32F413RCT7$SVD\AT32F413xx_v2.svd</SFDFile>
  1985. <bCustSvd>0</bCustSvd>
  1986. <UseEnv>0</UseEnv>
  1987. <BinPath></BinPath>
  1988. <IncludePath></IncludePath>
  1989. <LibPath></LibPath>
  1990. <RegisterFilePath></RegisterFilePath>
  1991. <DBRegisterFilePath></DBRegisterFilePath>
  1992. <TargetStatus>
  1993. <Error>0</Error>
  1994. <ExitCodeStop>0</ExitCodeStop>
  1995. <ButtonStop>0</ButtonStop>
  1996. <NotGenerated>0</NotGenerated>
  1997. <InvalidFlash>1</InvalidFlash>
  1998. </TargetStatus>
  1999. <OutputDirectory>.\Objects\</OutputDirectory>
  2000. <OutputName>VGKitBoard_237xS_AT_APP_V14</OutputName>
  2001. <CreateExecutable>1</CreateExecutable>
  2002. <CreateLib>0</CreateLib>
  2003. <CreateHexFile>1</CreateHexFile>
  2004. <DebugInformation>1</DebugInformation>
  2005. <BrowseInformation>1</BrowseInformation>
  2006. <ListingPath>.\Listings\</ListingPath>
  2007. <HexFormatSelection>1</HexFormatSelection>
  2008. <Merge32K>0</Merge32K>
  2009. <CreateBatchFile>0</CreateBatchFile>
  2010. <BeforeCompile>
  2011. <RunUserProg1>0</RunUserProg1>
  2012. <RunUserProg2>0</RunUserProg2>
  2013. <UserProg1Name>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</UserProg1Name>
  2014. <UserProg2Name></UserProg2Name>
  2015. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2016. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2017. <nStopU1X>0</nStopU1X>
  2018. <nStopU2X>0</nStopU2X>
  2019. </BeforeCompile>
  2020. <BeforeMake>
  2021. <RunUserProg1>0</RunUserProg1>
  2022. <RunUserProg2>0</RunUserProg2>
  2023. <UserProg1Name>E:\xxxx2\evaluationBoard\software\adapterBoardDriver_VG237xSxxxN0S1_V05\keilkilll.bat</UserProg1Name>
  2024. <UserProg2Name></UserProg2Name>
  2025. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2026. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2027. <nStopB1X>0</nStopB1X>
  2028. <nStopB2X>0</nStopB2X>
  2029. </BeforeMake>
  2030. <AfterMake>
  2031. <RunUserProg1>1</RunUserProg1>
  2032. <RunUserProg2>0</RunUserProg2>
  2033. <UserProg1Name>fromelf.exe --bin --output .\Listings\@L.bin !L</UserProg1Name>
  2034. <UserProg2Name></UserProg2Name>
  2035. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2036. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2037. <nStopA1X>0</nStopA1X>
  2038. <nStopA2X>0</nStopA2X>
  2039. </AfterMake>
  2040. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  2041. <SVCSIdString></SVCSIdString>
  2042. </TargetCommonOption>
  2043. <CommonProperty>
  2044. <UseCPPCompiler>0</UseCPPCompiler>
  2045. <RVCTCodeConst>0</RVCTCodeConst>
  2046. <RVCTZI>0</RVCTZI>
  2047. <RVCTOtherData>0</RVCTOtherData>
  2048. <ModuleSelection>0</ModuleSelection>
  2049. <IncludeInBuild>1</IncludeInBuild>
  2050. <AlwaysBuild>0</AlwaysBuild>
  2051. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  2052. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  2053. <PublicsOnly>0</PublicsOnly>
  2054. <StopOnExitCode>3</StopOnExitCode>
  2055. <CustomArgument></CustomArgument>
  2056. <IncludeLibraryModules></IncludeLibraryModules>
  2057. <ComprImg>1</ComprImg>
  2058. </CommonProperty>
  2059. <DllOption>
  2060. <SimDllName>SARMCM3.DLL</SimDllName>
  2061. <SimDllArguments> -REMAP -MPU</SimDllArguments>
  2062. <SimDlgDll>DCM.DLL</SimDlgDll>
  2063. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  2064. <TargetDllName>SARMCM3.DLL</TargetDllName>
  2065. <TargetDllArguments> -MPU</TargetDllArguments>
  2066. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  2067. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  2068. </DllOption>
  2069. <DebugOption>
  2070. <OPTHX>
  2071. <HexSelection>1</HexSelection>
  2072. <HexRangeLowAddress>0</HexRangeLowAddress>
  2073. <HexRangeHighAddress>0</HexRangeHighAddress>
  2074. <HexOffset>0</HexOffset>
  2075. <Oh166RecLen>16</Oh166RecLen>
  2076. </OPTHX>
  2077. </DebugOption>
  2078. <Utilities>
  2079. <Flash1>
  2080. <UseTargetDll>1</UseTargetDll>
  2081. <UseExternalTool>0</UseExternalTool>
  2082. <RunIndependent>0</RunIndependent>
  2083. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  2084. <Capability>1</Capability>
  2085. <DriverSelection>4096</DriverSelection>
  2086. </Flash1>
  2087. <bUseTDR>1</bUseTDR>
  2088. <Flash2>BIN\UL2CM3.DLL</Flash2>
  2089. <Flash3></Flash3>
  2090. <Flash4></Flash4>
  2091. <pFcarmOut></pFcarmOut>
  2092. <pFcarmGrp></pFcarmGrp>
  2093. <pFcArmRoot></pFcArmRoot>
  2094. <FcArmLst>0</FcArmLst>
  2095. </Utilities>
  2096. <TargetArmAds>
  2097. <ArmAdsMisc>
  2098. <GenerateListings>0</GenerateListings>
  2099. <asHll>1</asHll>
  2100. <asAsm>1</asAsm>
  2101. <asMacX>1</asMacX>
  2102. <asSyms>1</asSyms>
  2103. <asFals>1</asFals>
  2104. <asDbgD>1</asDbgD>
  2105. <asForm>1</asForm>
  2106. <ldLst>0</ldLst>
  2107. <ldmm>1</ldmm>
  2108. <ldXref>1</ldXref>
  2109. <BigEnd>0</BigEnd>
  2110. <AdsALst>1</AdsALst>
  2111. <AdsACrf>1</AdsACrf>
  2112. <AdsANop>0</AdsANop>
  2113. <AdsANot>0</AdsANot>
  2114. <AdsLLst>1</AdsLLst>
  2115. <AdsLmap>1</AdsLmap>
  2116. <AdsLcgr>1</AdsLcgr>
  2117. <AdsLsym>1</AdsLsym>
  2118. <AdsLszi>1</AdsLszi>
  2119. <AdsLtoi>1</AdsLtoi>
  2120. <AdsLsun>1</AdsLsun>
  2121. <AdsLven>1</AdsLven>
  2122. <AdsLsxf>1</AdsLsxf>
  2123. <RvctClst>0</RvctClst>
  2124. <GenPPlst>0</GenPPlst>
  2125. <AdsCpuType>"Cortex-M4"</AdsCpuType>
  2126. <RvctDeviceName></RvctDeviceName>
  2127. <mOS>0</mOS>
  2128. <uocRom>0</uocRom>
  2129. <uocRam>0</uocRam>
  2130. <hadIROM>1</hadIROM>
  2131. <hadIRAM>1</hadIRAM>
  2132. <hadXRAM>0</hadXRAM>
  2133. <uocXRam>0</uocXRam>
  2134. <RvdsVP>1</RvdsVP>
  2135. <RvdsMve>0</RvdsMve>
  2136. <RvdsCdeCp>0</RvdsCdeCp>
  2137. <hadIRAM2>0</hadIRAM2>
  2138. <hadIROM2>0</hadIROM2>
  2139. <StupSel>8</StupSel>
  2140. <useUlib>1</useUlib>
  2141. <EndSel>0</EndSel>
  2142. <uLtcg>0</uLtcg>
  2143. <nSecure>0</nSecure>
  2144. <RoSelD>3</RoSelD>
  2145. <RwSelD>3</RwSelD>
  2146. <CodeSel>0</CodeSel>
  2147. <OptFeed>0</OptFeed>
  2148. <NoZi1>0</NoZi1>
  2149. <NoZi2>0</NoZi2>
  2150. <NoZi3>0</NoZi3>
  2151. <NoZi4>0</NoZi4>
  2152. <NoZi5>0</NoZi5>
  2153. <Ro1Chk>0</Ro1Chk>
  2154. <Ro2Chk>0</Ro2Chk>
  2155. <Ro3Chk>0</Ro3Chk>
  2156. <Ir1Chk>1</Ir1Chk>
  2157. <Ir2Chk>0</Ir2Chk>
  2158. <Ra1Chk>0</Ra1Chk>
  2159. <Ra2Chk>0</Ra2Chk>
  2160. <Ra3Chk>0</Ra3Chk>
  2161. <Im1Chk>1</Im1Chk>
  2162. <Im2Chk>0</Im2Chk>
  2163. <OnChipMemories>
  2164. <Ocm1>
  2165. <Type>0</Type>
  2166. <StartAddress>0x0</StartAddress>
  2167. <Size>0x0</Size>
  2168. </Ocm1>
  2169. <Ocm2>
  2170. <Type>0</Type>
  2171. <StartAddress>0x0</StartAddress>
  2172. <Size>0x0</Size>
  2173. </Ocm2>
  2174. <Ocm3>
  2175. <Type>0</Type>
  2176. <StartAddress>0x0</StartAddress>
  2177. <Size>0x0</Size>
  2178. </Ocm3>
  2179. <Ocm4>
  2180. <Type>0</Type>
  2181. <StartAddress>0x0</StartAddress>
  2182. <Size>0x0</Size>
  2183. </Ocm4>
  2184. <Ocm5>
  2185. <Type>0</Type>
  2186. <StartAddress>0x0</StartAddress>
  2187. <Size>0x0</Size>
  2188. </Ocm5>
  2189. <Ocm6>
  2190. <Type>0</Type>
  2191. <StartAddress>0x0</StartAddress>
  2192. <Size>0x0</Size>
  2193. </Ocm6>
  2194. <IRAM>
  2195. <Type>0</Type>
  2196. <StartAddress>0x20000000</StartAddress>
  2197. <Size>0x8000</Size>
  2198. </IRAM>
  2199. <IROM>
  2200. <Type>1</Type>
  2201. <StartAddress>0x8000000</StartAddress>
  2202. <Size>0x40000</Size>
  2203. </IROM>
  2204. <XRAM>
  2205. <Type>0</Type>
  2206. <StartAddress>0x0</StartAddress>
  2207. <Size>0x0</Size>
  2208. </XRAM>
  2209. <OCR_RVCT1>
  2210. <Type>1</Type>
  2211. <StartAddress>0x0</StartAddress>
  2212. <Size>0x0</Size>
  2213. </OCR_RVCT1>
  2214. <OCR_RVCT2>
  2215. <Type>1</Type>
  2216. <StartAddress>0x0</StartAddress>
  2217. <Size>0x0</Size>
  2218. </OCR_RVCT2>
  2219. <OCR_RVCT3>
  2220. <Type>1</Type>
  2221. <StartAddress>0x0</StartAddress>
  2222. <Size>0x0</Size>
  2223. </OCR_RVCT3>
  2224. <OCR_RVCT4>
  2225. <Type>1</Type>
  2226. <StartAddress>0x800c800</StartAddress>
  2227. <Size>0x40000</Size>
  2228. </OCR_RVCT4>
  2229. <OCR_RVCT5>
  2230. <Type>1</Type>
  2231. <StartAddress>0x0</StartAddress>
  2232. <Size>0x0</Size>
  2233. </OCR_RVCT5>
  2234. <OCR_RVCT6>
  2235. <Type>0</Type>
  2236. <StartAddress>0x0</StartAddress>
  2237. <Size>0x0</Size>
  2238. </OCR_RVCT6>
  2239. <OCR_RVCT7>
  2240. <Type>0</Type>
  2241. <StartAddress>0x0</StartAddress>
  2242. <Size>0x0</Size>
  2243. </OCR_RVCT7>
  2244. <OCR_RVCT8>
  2245. <Type>0</Type>
  2246. <StartAddress>0x0</StartAddress>
  2247. <Size>0x0</Size>
  2248. </OCR_RVCT8>
  2249. <OCR_RVCT9>
  2250. <Type>0</Type>
  2251. <StartAddress>0x20000000</StartAddress>
  2252. <Size>0x8000</Size>
  2253. </OCR_RVCT9>
  2254. <OCR_RVCT10>
  2255. <Type>0</Type>
  2256. <StartAddress>0x0</StartAddress>
  2257. <Size>0x0</Size>
  2258. </OCR_RVCT10>
  2259. </OnChipMemories>
  2260. <RvctStartVector></RvctStartVector>
  2261. </ArmAdsMisc>
  2262. <Cads>
  2263. <interw>1</interw>
  2264. <Optim>1</Optim>
  2265. <oTime>0</oTime>
  2266. <SplitLS>0</SplitLS>
  2267. <OneElfS>1</OneElfS>
  2268. <Strict>0</Strict>
  2269. <EnumInt>0</EnumInt>
  2270. <PlainCh>0</PlainCh>
  2271. <Ropi>0</Ropi>
  2272. <Rwpi>0</Rwpi>
  2273. <wLevel>2</wLevel>
  2274. <uThumb>0</uThumb>
  2275. <uSurpInc>0</uSurpInc>
  2276. <uC99>1</uC99>
  2277. <uGnu>0</uGnu>
  2278. <useXO>0</useXO>
  2279. <v6Lang>1</v6Lang>
  2280. <v6LangP>1</v6LangP>
  2281. <vShortEn>1</vShortEn>
  2282. <vShortWch>1</vShortWch>
  2283. <v6Lto>0</v6Lto>
  2284. <v6WtE>0</v6WtE>
  2285. <v6Rtti>0</v6Rtti>
  2286. <VariousControls>
  2287. <MiscControls></MiscControls>
  2288. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER,BOOTLOADER_APP</Define>
  2289. <Undefine></Undefine>
  2290. <IncludePath>..\project;..\core;..\STM32F10x_FWLib\inc;..\peripheral;..\app;..\radio</IncludePath>
  2291. </VariousControls>
  2292. </Cads>
  2293. <Aads>
  2294. <interw>1</interw>
  2295. <Ropi>0</Ropi>
  2296. <Rwpi>0</Rwpi>
  2297. <thumb>0</thumb>
  2298. <SplitLS>0</SplitLS>
  2299. <SwStkChk>0</SwStkChk>
  2300. <NoWarn>0</NoWarn>
  2301. <uSurpInc>0</uSurpInc>
  2302. <useXO>0</useXO>
  2303. <ClangAsOpt>1</ClangAsOpt>
  2304. <VariousControls>
  2305. <MiscControls></MiscControls>
  2306. <Define></Define>
  2307. <Undefine></Undefine>
  2308. <IncludePath></IncludePath>
  2309. </VariousControls>
  2310. </Aads>
  2311. <LDads>
  2312. <umfTarg>1</umfTarg>
  2313. <Ropi>0</Ropi>
  2314. <Rwpi>0</Rwpi>
  2315. <noStLib>0</noStLib>
  2316. <RepFail>1</RepFail>
  2317. <useFile>0</useFile>
  2318. <TextAddressRange>0x08000000</TextAddressRange>
  2319. <DataAddressRange>0x20000000</DataAddressRange>
  2320. <pXoBase></pXoBase>
  2321. <ScatterFile>..\OBJ\Template.sct</ScatterFile>
  2322. <IncludeLibs></IncludeLibs>
  2323. <IncludeLibsPath></IncludeLibsPath>
  2324. <Misc></Misc>
  2325. <LinkerInputFile></LinkerInputFile>
  2326. <DisabledWarnings></DisabledWarnings>
  2327. </LDads>
  2328. </TargetArmAds>
  2329. </TargetOption>
  2330. <Groups>
  2331. <Group>
  2332. <GroupName>project</GroupName>
  2333. <Files>
  2334. <File>
  2335. <FileName>main.c</FileName>
  2336. <FileType>1</FileType>
  2337. <FilePath>..\project\main.c</FilePath>
  2338. </File>
  2339. <File>
  2340. <FileName>stm32f10x_it.c</FileName>
  2341. <FileType>1</FileType>
  2342. <FilePath>..\project\stm32f10x_it.c</FilePath>
  2343. </File>
  2344. <File>
  2345. <FileName>system_stm32f10x.c</FileName>
  2346. <FileType>1</FileType>
  2347. <FilePath>..\project\system_stm32f10x.c</FilePath>
  2348. </File>
  2349. </Files>
  2350. </Group>
  2351. <Group>
  2352. <GroupName>peripheral</GroupName>
  2353. <Files>
  2354. <File>
  2355. <FileName>myUart.c</FileName>
  2356. <FileType>1</FileType>
  2357. <FilePath>..\peripheral\myUart.c</FilePath>
  2358. </File>
  2359. <File>
  2360. <FileName>sys.c</FileName>
  2361. <FileType>1</FileType>
  2362. <FilePath>..\peripheral\sys.c</FilePath>
  2363. </File>
  2364. <File>
  2365. <FileName>myADC.c</FileName>
  2366. <FileType>1</FileType>
  2367. <FilePath>..\peripheral\myADC.c</FilePath>
  2368. </File>
  2369. <File>
  2370. <FileName>myInputCapture.c</FileName>
  2371. <FileType>1</FileType>
  2372. <FilePath>..\peripheral\myInputCapture.c</FilePath>
  2373. </File>
  2374. <File>
  2375. <FileName>myUart3.c</FileName>
  2376. <FileType>1</FileType>
  2377. <FilePath>..\peripheral\myUart3.c</FilePath>
  2378. </File>
  2379. </Files>
  2380. </Group>
  2381. <Group>
  2382. <GroupName>core</GroupName>
  2383. <Files>
  2384. <File>
  2385. <FileName>core_cm3.c</FileName>
  2386. <FileType>1</FileType>
  2387. <FilePath>..\CORE\core_cm3.c</FilePath>
  2388. </File>
  2389. <File>
  2390. <FileName>startup_stm32f10x_hd.s</FileName>
  2391. <FileType>2</FileType>
  2392. <FilePath>..\CORE\startup_stm32f10x_hd.s</FilePath>
  2393. </File>
  2394. </Files>
  2395. </Group>
  2396. <Group>
  2397. <GroupName>FWLIB</GroupName>
  2398. <Files>
  2399. <File>
  2400. <FileName>misc.c</FileName>
  2401. <FileType>1</FileType>
  2402. <FilePath>..\STM32F10x_FWLib\src\misc.c</FilePath>
  2403. </File>
  2404. <File>
  2405. <FileName>stm32f10x_adc.c</FileName>
  2406. <FileType>1</FileType>
  2407. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_adc.c</FilePath>
  2408. </File>
  2409. <File>
  2410. <FileName>stm32f10x_bkp.c</FileName>
  2411. <FileType>1</FileType>
  2412. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_bkp.c</FilePath>
  2413. </File>
  2414. <File>
  2415. <FileName>stm32f10x_can.c</FileName>
  2416. <FileType>1</FileType>
  2417. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_can.c</FilePath>
  2418. </File>
  2419. <File>
  2420. <FileName>stm32f10x_cec.c</FileName>
  2421. <FileType>1</FileType>
  2422. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_cec.c</FilePath>
  2423. </File>
  2424. <File>
  2425. <FileName>stm32f10x_crc.c</FileName>
  2426. <FileType>1</FileType>
  2427. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_crc.c</FilePath>
  2428. </File>
  2429. <File>
  2430. <FileName>stm32f10x_dac.c</FileName>
  2431. <FileType>1</FileType>
  2432. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dac.c</FilePath>
  2433. </File>
  2434. <File>
  2435. <FileName>stm32f10x_dbgmcu.c</FileName>
  2436. <FileType>1</FileType>
  2437. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dbgmcu.c</FilePath>
  2438. </File>
  2439. <File>
  2440. <FileName>stm32f10x_dma.c</FileName>
  2441. <FileType>1</FileType>
  2442. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dma.c</FilePath>
  2443. </File>
  2444. <File>
  2445. <FileName>stm32f10x_exti.c</FileName>
  2446. <FileType>1</FileType>
  2447. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_exti.c</FilePath>
  2448. </File>
  2449. <File>
  2450. <FileName>stm32f10x_flash.c</FileName>
  2451. <FileType>1</FileType>
  2452. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_flash.c</FilePath>
  2453. </File>
  2454. <File>
  2455. <FileName>stm32f10x_fsmc.c</FileName>
  2456. <FileType>1</FileType>
  2457. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_fsmc.c</FilePath>
  2458. </File>
  2459. <File>
  2460. <FileName>stm32f10x_gpio.c</FileName>
  2461. <FileType>1</FileType>
  2462. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_gpio.c</FilePath>
  2463. </File>
  2464. <File>
  2465. <FileName>stm32f10x_i2c.c</FileName>
  2466. <FileType>1</FileType>
  2467. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_i2c.c</FilePath>
  2468. </File>
  2469. <File>
  2470. <FileName>stm32f10x_iwdg.c</FileName>
  2471. <FileType>1</FileType>
  2472. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_iwdg.c</FilePath>
  2473. </File>
  2474. <File>
  2475. <FileName>stm32f10x_pwr.c</FileName>
  2476. <FileType>1</FileType>
  2477. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_pwr.c</FilePath>
  2478. </File>
  2479. <File>
  2480. <FileName>stm32f10x_rcc.c</FileName>
  2481. <FileType>1</FileType>
  2482. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rcc.c</FilePath>
  2483. </File>
  2484. <File>
  2485. <FileName>stm32f10x_rtc.c</FileName>
  2486. <FileType>1</FileType>
  2487. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rtc.c</FilePath>
  2488. </File>
  2489. <File>
  2490. <FileName>stm32f10x_sdio.c</FileName>
  2491. <FileType>1</FileType>
  2492. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_sdio.c</FilePath>
  2493. </File>
  2494. <File>
  2495. <FileName>stm32f10x_spi.c</FileName>
  2496. <FileType>1</FileType>
  2497. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_spi.c</FilePath>
  2498. </File>
  2499. <File>
  2500. <FileName>stm32f10x_tim.c</FileName>
  2501. <FileType>1</FileType>
  2502. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_tim.c</FilePath>
  2503. </File>
  2504. <File>
  2505. <FileName>stm32f10x_usart.c</FileName>
  2506. <FileType>1</FileType>
  2507. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_usart.c</FilePath>
  2508. </File>
  2509. <File>
  2510. <FileName>stm32f10x_wwdg.c</FileName>
  2511. <FileType>1</FileType>
  2512. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_wwdg.c</FilePath>
  2513. </File>
  2514. </Files>
  2515. </Group>
  2516. <Group>
  2517. <GroupName>app</GroupName>
  2518. <Files>
  2519. <File>
  2520. <FileName>led.c</FileName>
  2521. <FileType>1</FileType>
  2522. <FilePath>..\APP\led.c</FilePath>
  2523. </File>
  2524. <File>
  2525. <FileName>key.c</FileName>
  2526. <FileType>1</FileType>
  2527. <FilePath>..\APP\key.c</FilePath>
  2528. </File>
  2529. <File>
  2530. <FileName>stmflash.c</FileName>
  2531. <FileType>1</FileType>
  2532. <FilePath>..\APP\stmflash.c</FilePath>
  2533. </File>
  2534. <File>
  2535. <FileName>ReadKey.c</FileName>
  2536. <FileType>1</FileType>
  2537. <FilePath>..\APP\ReadKey.c</FilePath>
  2538. </File>
  2539. <File>
  2540. <FileName>myLcd.c</FileName>
  2541. <FileType>1</FileType>
  2542. <FilePath>..\APP\myLcd.c</FilePath>
  2543. </File>
  2544. <File>
  2545. <FileName>myTim.c</FileName>
  2546. <FileType>1</FileType>
  2547. <FilePath>..\APP\myTim.c</FilePath>
  2548. </File>
  2549. <File>
  2550. <FileName>crc8.c</FileName>
  2551. <FileType>1</FileType>
  2552. <FilePath>..\app\crc8.c</FilePath>
  2553. </File>
  2554. <File>
  2555. <FileName>eventUnit.c</FileName>
  2556. <FileType>1</FileType>
  2557. <FilePath>..\app\eventUnit.c</FilePath>
  2558. </File>
  2559. <File>
  2560. <FileName>myDisplayUnit.c</FileName>
  2561. <FileType>1</FileType>
  2562. <FilePath>..\app\myDisplayUnit.c</FilePath>
  2563. </File>
  2564. <File>
  2565. <FileName>myFlashData.c</FileName>
  2566. <FileType>1</FileType>
  2567. <FilePath>..\app\myFlashData.c</FilePath>
  2568. </File>
  2569. </Files>
  2570. </Group>
  2571. <Group>
  2572. <GroupName>radio</GroupName>
  2573. <Files>
  2574. <File>
  2575. <FileName>myRadio.c</FileName>
  2576. <FileType>1</FileType>
  2577. <FilePath>..\radio\myRadio.c</FilePath>
  2578. </File>
  2579. <File>
  2580. <FileName>myRadio_gpio.c</FileName>
  2581. <FileType>1</FileType>
  2582. <FilePath>..\radio\myRadio_gpio.c</FilePath>
  2583. </File>
  2584. <File>
  2585. <FileName>crc.c</FileName>
  2586. <FileType>1</FileType>
  2587. <FilePath>..\radio\crc.c</FilePath>
  2588. </File>
  2589. <File>
  2590. <FileName>radio.c</FileName>
  2591. <FileType>1</FileType>
  2592. <FilePath>..\radio\radio.c</FilePath>
  2593. </File>
  2594. <File>
  2595. <FileName>sx126x.c</FileName>
  2596. <FileType>1</FileType>
  2597. <FilePath>..\radio\sx126x.c</FilePath>
  2598. </File>
  2599. <File>
  2600. <FileName>sx126x-board.c</FileName>
  2601. <FileType>1</FileType>
  2602. <FilePath>..\radio\sx126x-board.c</FilePath>
  2603. </File>
  2604. </Files>
  2605. </Group>
  2606. </Groups>
  2607. </Target>
  2608. </Targets>
  2609. <RTE>
  2610. <apis/>
  2611. <components/>
  2612. <files/>
  2613. </RTE>
  2614. <LayerInfo>
  2615. <Layers>
  2616. <Layer>
  2617. <LayName>&lt;Project Info&gt;</LayName>
  2618. <LayDesc></LayDesc>
  2619. <LayUrl></LayUrl>
  2620. <LayKeys></LayKeys>
  2621. <LayCat></LayCat>
  2622. <LayLic></LayLic>
  2623. <LayTarg>0</LayTarg>
  2624. <LayPrjMark>1</LayPrjMark>
  2625. </Layer>
  2626. </Layers>
  2627. </LayerInfo>
  2628. </Project>