adapterBoardDriver.uvprojx 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  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>adapterBoardDriver_ST_APP</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_55xxS_ST_APP_V08</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></UserProg1Name>
  63. <UserProg2Name></UserProg2Name>
  64. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  65. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  66. <nStopU1X>0</nStopU1X>
  67. <nStopU2X>0</nStopU2X>
  68. </BeforeCompile>
  69. <BeforeMake>
  70. <RunUserProg1>0</RunUserProg1>
  71. <RunUserProg2>0</RunUserProg2>
  72. <UserProg1Name></UserProg1Name>
  73. <UserProg2Name></UserProg2Name>
  74. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  75. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  76. <nStopB1X>0</nStopB1X>
  77. <nStopB2X>0</nStopB2X>
  78. </BeforeMake>
  79. <AfterMake>
  80. <RunUserProg1>1</RunUserProg1>
  81. <RunUserProg2>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>0x800c800</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>myRadio_setting.c</FileName>
  635. <FileType>1</FileType>
  636. <FilePath>..\radio\myRadio_setting.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>radio_comm.c</FileName>
  645. <FileType>1</FileType>
  646. <FilePath>..\radio\radio_comm.c</FilePath>
  647. </File>
  648. <File>
  649. <FileName>radio_hal.c</FileName>
  650. <FileType>1</FileType>
  651. <FilePath>..\radio\radio_hal.c</FilePath>
  652. </File>
  653. <File>
  654. <FileName>si446x_api_lib.c</FileName>
  655. <FileType>1</FileType>
  656. <FilePath>..\radio\si446x_api_lib.c</FilePath>
  657. </File>
  658. </Files>
  659. </Group>
  660. </Groups>
  661. </Target>
  662. <Target>
  663. <TargetName>adapterBoardDriver</TargetName>
  664. <ToolsetNumber>0x4</ToolsetNumber>
  665. <ToolsetName>ARM-ADS</ToolsetName>
  666. <pCCUsed>5060750::V5.06 update 6 (build 750)::.\ARMCC</pCCUsed>
  667. <uAC6>0</uAC6>
  668. <TargetOption>
  669. <TargetCommonOption>
  670. <Device>-AT32F413RCT7</Device>
  671. <Vendor>ArteryTek</Vendor>
  672. <PackID>ArteryTek.AT32F413_DFP.2.0.7</PackID>
  673. <Cpu>IRAM(0x20000000,0x8000) IROM(0x08000000,0x40000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE</Cpu>
  674. <FlashUtilSpec></FlashUtilSpec>
  675. <StartupFile></StartupFile>
  676. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0AT32F413_256 -FS08000000 -FL040000 -FP0($$Device:-AT32F413RCT7$Flash\AT32F413_256.FLM))</FlashDriverDll>
  677. <DeviceId>0</DeviceId>
  678. <RegisterFile>$$Device:-AT32F413RCT7$Device\Include\at32f413.h</RegisterFile>
  679. <MemoryEnv></MemoryEnv>
  680. <Cmp></Cmp>
  681. <Asm></Asm>
  682. <Linker></Linker>
  683. <OHString></OHString>
  684. <InfinionOptionDll></InfinionOptionDll>
  685. <SLE66CMisc></SLE66CMisc>
  686. <SLE66AMisc></SLE66AMisc>
  687. <SLE66LinkerMisc></SLE66LinkerMisc>
  688. <SFDFile>$$Device:-AT32F413RCT7$SVD\AT32F413xx_v2.svd</SFDFile>
  689. <bCustSvd>0</bCustSvd>
  690. <UseEnv>0</UseEnv>
  691. <BinPath></BinPath>
  692. <IncludePath></IncludePath>
  693. <LibPath></LibPath>
  694. <RegisterFilePath></RegisterFilePath>
  695. <DBRegisterFilePath></DBRegisterFilePath>
  696. <TargetStatus>
  697. <Error>0</Error>
  698. <ExitCodeStop>0</ExitCodeStop>
  699. <ButtonStop>0</ButtonStop>
  700. <NotGenerated>0</NotGenerated>
  701. <InvalidFlash>1</InvalidFlash>
  702. </TargetStatus>
  703. <OutputDirectory>.\Objects\</OutputDirectory>
  704. <OutputName>VGKitBoard_55xxS_V07</OutputName>
  705. <CreateExecutable>1</CreateExecutable>
  706. <CreateLib>0</CreateLib>
  707. <CreateHexFile>1</CreateHexFile>
  708. <DebugInformation>1</DebugInformation>
  709. <BrowseInformation>1</BrowseInformation>
  710. <ListingPath>.\Listings\</ListingPath>
  711. <HexFormatSelection>1</HexFormatSelection>
  712. <Merge32K>0</Merge32K>
  713. <CreateBatchFile>0</CreateBatchFile>
  714. <BeforeCompile>
  715. <RunUserProg1>0</RunUserProg1>
  716. <RunUserProg2>0</RunUserProg2>
  717. <UserProg1Name></UserProg1Name>
  718. <UserProg2Name></UserProg2Name>
  719. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  720. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  721. <nStopU1X>0</nStopU1X>
  722. <nStopU2X>0</nStopU2X>
  723. </BeforeCompile>
  724. <BeforeMake>
  725. <RunUserProg1>0</RunUserProg1>
  726. <RunUserProg2>0</RunUserProg2>
  727. <UserProg1Name></UserProg1Name>
  728. <UserProg2Name></UserProg2Name>
  729. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  730. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  731. <nStopB1X>0</nStopB1X>
  732. <nStopB2X>0</nStopB2X>
  733. </BeforeMake>
  734. <AfterMake>
  735. <RunUserProg1>0</RunUserProg1>
  736. <RunUserProg2>0</RunUserProg2>
  737. <UserProg1Name></UserProg1Name>
  738. <UserProg2Name></UserProg2Name>
  739. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  740. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  741. <nStopA1X>0</nStopA1X>
  742. <nStopA2X>0</nStopA2X>
  743. </AfterMake>
  744. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  745. <SVCSIdString></SVCSIdString>
  746. </TargetCommonOption>
  747. <CommonProperty>
  748. <UseCPPCompiler>0</UseCPPCompiler>
  749. <RVCTCodeConst>0</RVCTCodeConst>
  750. <RVCTZI>0</RVCTZI>
  751. <RVCTOtherData>0</RVCTOtherData>
  752. <ModuleSelection>0</ModuleSelection>
  753. <IncludeInBuild>1</IncludeInBuild>
  754. <AlwaysBuild>0</AlwaysBuild>
  755. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  756. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  757. <PublicsOnly>0</PublicsOnly>
  758. <StopOnExitCode>3</StopOnExitCode>
  759. <CustomArgument></CustomArgument>
  760. <IncludeLibraryModules></IncludeLibraryModules>
  761. <ComprImg>1</ComprImg>
  762. </CommonProperty>
  763. <DllOption>
  764. <SimDllName>SARMCM3.DLL</SimDllName>
  765. <SimDllArguments> -REMAP -MPU</SimDllArguments>
  766. <SimDlgDll>DCM.DLL</SimDlgDll>
  767. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  768. <TargetDllName>SARMCM3.DLL</TargetDllName>
  769. <TargetDllArguments> -MPU</TargetDllArguments>
  770. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  771. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  772. </DllOption>
  773. <DebugOption>
  774. <OPTHX>
  775. <HexSelection>1</HexSelection>
  776. <HexRangeLowAddress>0</HexRangeLowAddress>
  777. <HexRangeHighAddress>0</HexRangeHighAddress>
  778. <HexOffset>0</HexOffset>
  779. <Oh166RecLen>16</Oh166RecLen>
  780. </OPTHX>
  781. </DebugOption>
  782. <Utilities>
  783. <Flash1>
  784. <UseTargetDll>1</UseTargetDll>
  785. <UseExternalTool>0</UseExternalTool>
  786. <RunIndependent>0</RunIndependent>
  787. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  788. <Capability>1</Capability>
  789. <DriverSelection>4096</DriverSelection>
  790. </Flash1>
  791. <bUseTDR>1</bUseTDR>
  792. <Flash2>BIN\UL2CM3.DLL</Flash2>
  793. <Flash3></Flash3>
  794. <Flash4></Flash4>
  795. <pFcarmOut></pFcarmOut>
  796. <pFcarmGrp></pFcarmGrp>
  797. <pFcArmRoot></pFcArmRoot>
  798. <FcArmLst>0</FcArmLst>
  799. </Utilities>
  800. <TargetArmAds>
  801. <ArmAdsMisc>
  802. <GenerateListings>0</GenerateListings>
  803. <asHll>1</asHll>
  804. <asAsm>1</asAsm>
  805. <asMacX>1</asMacX>
  806. <asSyms>1</asSyms>
  807. <asFals>1</asFals>
  808. <asDbgD>1</asDbgD>
  809. <asForm>1</asForm>
  810. <ldLst>0</ldLst>
  811. <ldmm>1</ldmm>
  812. <ldXref>1</ldXref>
  813. <BigEnd>0</BigEnd>
  814. <AdsALst>1</AdsALst>
  815. <AdsACrf>1</AdsACrf>
  816. <AdsANop>0</AdsANop>
  817. <AdsANot>0</AdsANot>
  818. <AdsLLst>1</AdsLLst>
  819. <AdsLmap>1</AdsLmap>
  820. <AdsLcgr>1</AdsLcgr>
  821. <AdsLsym>1</AdsLsym>
  822. <AdsLszi>1</AdsLszi>
  823. <AdsLtoi>1</AdsLtoi>
  824. <AdsLsun>1</AdsLsun>
  825. <AdsLven>1</AdsLven>
  826. <AdsLsxf>1</AdsLsxf>
  827. <RvctClst>0</RvctClst>
  828. <GenPPlst>0</GenPPlst>
  829. <AdsCpuType>"Cortex-M4"</AdsCpuType>
  830. <RvctDeviceName></RvctDeviceName>
  831. <mOS>0</mOS>
  832. <uocRom>0</uocRom>
  833. <uocRam>0</uocRam>
  834. <hadIROM>1</hadIROM>
  835. <hadIRAM>1</hadIRAM>
  836. <hadXRAM>0</hadXRAM>
  837. <uocXRam>0</uocXRam>
  838. <RvdsVP>1</RvdsVP>
  839. <RvdsMve>0</RvdsMve>
  840. <RvdsCdeCp>0</RvdsCdeCp>
  841. <hadIRAM2>0</hadIRAM2>
  842. <hadIROM2>0</hadIROM2>
  843. <StupSel>8</StupSel>
  844. <useUlib>1</useUlib>
  845. <EndSel>0</EndSel>
  846. <uLtcg>0</uLtcg>
  847. <nSecure>0</nSecure>
  848. <RoSelD>3</RoSelD>
  849. <RwSelD>3</RwSelD>
  850. <CodeSel>0</CodeSel>
  851. <OptFeed>0</OptFeed>
  852. <NoZi1>0</NoZi1>
  853. <NoZi2>0</NoZi2>
  854. <NoZi3>0</NoZi3>
  855. <NoZi4>0</NoZi4>
  856. <NoZi5>0</NoZi5>
  857. <Ro1Chk>0</Ro1Chk>
  858. <Ro2Chk>0</Ro2Chk>
  859. <Ro3Chk>0</Ro3Chk>
  860. <Ir1Chk>1</Ir1Chk>
  861. <Ir2Chk>0</Ir2Chk>
  862. <Ra1Chk>0</Ra1Chk>
  863. <Ra2Chk>0</Ra2Chk>
  864. <Ra3Chk>0</Ra3Chk>
  865. <Im1Chk>1</Im1Chk>
  866. <Im2Chk>0</Im2Chk>
  867. <OnChipMemories>
  868. <Ocm1>
  869. <Type>0</Type>
  870. <StartAddress>0x0</StartAddress>
  871. <Size>0x0</Size>
  872. </Ocm1>
  873. <Ocm2>
  874. <Type>0</Type>
  875. <StartAddress>0x0</StartAddress>
  876. <Size>0x0</Size>
  877. </Ocm2>
  878. <Ocm3>
  879. <Type>0</Type>
  880. <StartAddress>0x0</StartAddress>
  881. <Size>0x0</Size>
  882. </Ocm3>
  883. <Ocm4>
  884. <Type>0</Type>
  885. <StartAddress>0x0</StartAddress>
  886. <Size>0x0</Size>
  887. </Ocm4>
  888. <Ocm5>
  889. <Type>0</Type>
  890. <StartAddress>0x0</StartAddress>
  891. <Size>0x0</Size>
  892. </Ocm5>
  893. <Ocm6>
  894. <Type>0</Type>
  895. <StartAddress>0x0</StartAddress>
  896. <Size>0x0</Size>
  897. </Ocm6>
  898. <IRAM>
  899. <Type>0</Type>
  900. <StartAddress>0x20000000</StartAddress>
  901. <Size>0x8000</Size>
  902. </IRAM>
  903. <IROM>
  904. <Type>1</Type>
  905. <StartAddress>0x8000000</StartAddress>
  906. <Size>0x40000</Size>
  907. </IROM>
  908. <XRAM>
  909. <Type>0</Type>
  910. <StartAddress>0x0</StartAddress>
  911. <Size>0x0</Size>
  912. </XRAM>
  913. <OCR_RVCT1>
  914. <Type>1</Type>
  915. <StartAddress>0x0</StartAddress>
  916. <Size>0x0</Size>
  917. </OCR_RVCT1>
  918. <OCR_RVCT2>
  919. <Type>1</Type>
  920. <StartAddress>0x0</StartAddress>
  921. <Size>0x0</Size>
  922. </OCR_RVCT2>
  923. <OCR_RVCT3>
  924. <Type>1</Type>
  925. <StartAddress>0x0</StartAddress>
  926. <Size>0x0</Size>
  927. </OCR_RVCT3>
  928. <OCR_RVCT4>
  929. <Type>1</Type>
  930. <StartAddress>0x8000000</StartAddress>
  931. <Size>0x40000</Size>
  932. </OCR_RVCT4>
  933. <OCR_RVCT5>
  934. <Type>1</Type>
  935. <StartAddress>0x0</StartAddress>
  936. <Size>0x0</Size>
  937. </OCR_RVCT5>
  938. <OCR_RVCT6>
  939. <Type>0</Type>
  940. <StartAddress>0x0</StartAddress>
  941. <Size>0x0</Size>
  942. </OCR_RVCT6>
  943. <OCR_RVCT7>
  944. <Type>0</Type>
  945. <StartAddress>0x0</StartAddress>
  946. <Size>0x0</Size>
  947. </OCR_RVCT7>
  948. <OCR_RVCT8>
  949. <Type>0</Type>
  950. <StartAddress>0x0</StartAddress>
  951. <Size>0x0</Size>
  952. </OCR_RVCT8>
  953. <OCR_RVCT9>
  954. <Type>0</Type>
  955. <StartAddress>0x20000000</StartAddress>
  956. <Size>0x8000</Size>
  957. </OCR_RVCT9>
  958. <OCR_RVCT10>
  959. <Type>0</Type>
  960. <StartAddress>0x0</StartAddress>
  961. <Size>0x0</Size>
  962. </OCR_RVCT10>
  963. </OnChipMemories>
  964. <RvctStartVector></RvctStartVector>
  965. </ArmAdsMisc>
  966. <Cads>
  967. <interw>1</interw>
  968. <Optim>1</Optim>
  969. <oTime>0</oTime>
  970. <SplitLS>0</SplitLS>
  971. <OneElfS>1</OneElfS>
  972. <Strict>0</Strict>
  973. <EnumInt>0</EnumInt>
  974. <PlainCh>0</PlainCh>
  975. <Ropi>0</Ropi>
  976. <Rwpi>0</Rwpi>
  977. <wLevel>2</wLevel>
  978. <uThumb>0</uThumb>
  979. <uSurpInc>0</uSurpInc>
  980. <uC99>1</uC99>
  981. <uGnu>0</uGnu>
  982. <useXO>0</useXO>
  983. <v6Lang>1</v6Lang>
  984. <v6LangP>1</v6LangP>
  985. <vShortEn>1</vShortEn>
  986. <vShortWch>1</vShortWch>
  987. <v6Lto>0</v6Lto>
  988. <v6WtE>0</v6WtE>
  989. <v6Rtti>0</v6Rtti>
  990. <VariousControls>
  991. <MiscControls></MiscControls>
  992. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER</Define>
  993. <Undefine></Undefine>
  994. <IncludePath>..\project;..\core;..\STM32F10x_FWLib\inc;..\peripheral;..\app;..\radio</IncludePath>
  995. </VariousControls>
  996. </Cads>
  997. <Aads>
  998. <interw>1</interw>
  999. <Ropi>0</Ropi>
  1000. <Rwpi>0</Rwpi>
  1001. <thumb>0</thumb>
  1002. <SplitLS>0</SplitLS>
  1003. <SwStkChk>0</SwStkChk>
  1004. <NoWarn>0</NoWarn>
  1005. <uSurpInc>0</uSurpInc>
  1006. <useXO>0</useXO>
  1007. <ClangAsOpt>1</ClangAsOpt>
  1008. <VariousControls>
  1009. <MiscControls></MiscControls>
  1010. <Define></Define>
  1011. <Undefine></Undefine>
  1012. <IncludePath></IncludePath>
  1013. </VariousControls>
  1014. </Aads>
  1015. <LDads>
  1016. <umfTarg>1</umfTarg>
  1017. <Ropi>0</Ropi>
  1018. <Rwpi>0</Rwpi>
  1019. <noStLib>0</noStLib>
  1020. <RepFail>1</RepFail>
  1021. <useFile>0</useFile>
  1022. <TextAddressRange>0x08000000</TextAddressRange>
  1023. <DataAddressRange>0x20000000</DataAddressRange>
  1024. <pXoBase></pXoBase>
  1025. <ScatterFile>..\OBJ\Template.sct</ScatterFile>
  1026. <IncludeLibs></IncludeLibs>
  1027. <IncludeLibsPath></IncludeLibsPath>
  1028. <Misc></Misc>
  1029. <LinkerInputFile></LinkerInputFile>
  1030. <DisabledWarnings></DisabledWarnings>
  1031. </LDads>
  1032. </TargetArmAds>
  1033. </TargetOption>
  1034. <Groups>
  1035. <Group>
  1036. <GroupName>project</GroupName>
  1037. <Files>
  1038. <File>
  1039. <FileName>main.c</FileName>
  1040. <FileType>1</FileType>
  1041. <FilePath>..\project\main.c</FilePath>
  1042. </File>
  1043. <File>
  1044. <FileName>stm32f10x_it.c</FileName>
  1045. <FileType>1</FileType>
  1046. <FilePath>..\project\stm32f10x_it.c</FilePath>
  1047. </File>
  1048. <File>
  1049. <FileName>system_stm32f10x.c</FileName>
  1050. <FileType>1</FileType>
  1051. <FilePath>..\project\system_stm32f10x.c</FilePath>
  1052. </File>
  1053. </Files>
  1054. </Group>
  1055. <Group>
  1056. <GroupName>peripheral</GroupName>
  1057. <Files>
  1058. <File>
  1059. <FileName>myUart.c</FileName>
  1060. <FileType>1</FileType>
  1061. <FilePath>..\peripheral\myUart.c</FilePath>
  1062. </File>
  1063. <File>
  1064. <FileName>sys.c</FileName>
  1065. <FileType>1</FileType>
  1066. <FilePath>..\peripheral\sys.c</FilePath>
  1067. </File>
  1068. <File>
  1069. <FileName>myADC.c</FileName>
  1070. <FileType>1</FileType>
  1071. <FilePath>..\peripheral\myADC.c</FilePath>
  1072. </File>
  1073. <File>
  1074. <FileName>myInputCapture.c</FileName>
  1075. <FileType>1</FileType>
  1076. <FilePath>..\peripheral\myInputCapture.c</FilePath>
  1077. </File>
  1078. <File>
  1079. <FileName>myUart3.c</FileName>
  1080. <FileType>1</FileType>
  1081. <FilePath>..\peripheral\myUart3.c</FilePath>
  1082. </File>
  1083. </Files>
  1084. </Group>
  1085. <Group>
  1086. <GroupName>core</GroupName>
  1087. <Files>
  1088. <File>
  1089. <FileName>core_cm3.c</FileName>
  1090. <FileType>1</FileType>
  1091. <FilePath>..\CORE\core_cm3.c</FilePath>
  1092. </File>
  1093. <File>
  1094. <FileName>startup_stm32f10x_hd.s</FileName>
  1095. <FileType>2</FileType>
  1096. <FilePath>..\CORE\startup_stm32f10x_hd.s</FilePath>
  1097. </File>
  1098. </Files>
  1099. </Group>
  1100. <Group>
  1101. <GroupName>FWLIB</GroupName>
  1102. <Files>
  1103. <File>
  1104. <FileName>misc.c</FileName>
  1105. <FileType>1</FileType>
  1106. <FilePath>..\STM32F10x_FWLib\src\misc.c</FilePath>
  1107. </File>
  1108. <File>
  1109. <FileName>stm32f10x_adc.c</FileName>
  1110. <FileType>1</FileType>
  1111. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_adc.c</FilePath>
  1112. </File>
  1113. <File>
  1114. <FileName>stm32f10x_bkp.c</FileName>
  1115. <FileType>1</FileType>
  1116. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_bkp.c</FilePath>
  1117. </File>
  1118. <File>
  1119. <FileName>stm32f10x_can.c</FileName>
  1120. <FileType>1</FileType>
  1121. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_can.c</FilePath>
  1122. </File>
  1123. <File>
  1124. <FileName>stm32f10x_cec.c</FileName>
  1125. <FileType>1</FileType>
  1126. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_cec.c</FilePath>
  1127. </File>
  1128. <File>
  1129. <FileName>stm32f10x_crc.c</FileName>
  1130. <FileType>1</FileType>
  1131. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_crc.c</FilePath>
  1132. </File>
  1133. <File>
  1134. <FileName>stm32f10x_dac.c</FileName>
  1135. <FileType>1</FileType>
  1136. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dac.c</FilePath>
  1137. </File>
  1138. <File>
  1139. <FileName>stm32f10x_dbgmcu.c</FileName>
  1140. <FileType>1</FileType>
  1141. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dbgmcu.c</FilePath>
  1142. </File>
  1143. <File>
  1144. <FileName>stm32f10x_dma.c</FileName>
  1145. <FileType>1</FileType>
  1146. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dma.c</FilePath>
  1147. </File>
  1148. <File>
  1149. <FileName>stm32f10x_exti.c</FileName>
  1150. <FileType>1</FileType>
  1151. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_exti.c</FilePath>
  1152. </File>
  1153. <File>
  1154. <FileName>stm32f10x_flash.c</FileName>
  1155. <FileType>1</FileType>
  1156. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_flash.c</FilePath>
  1157. </File>
  1158. <File>
  1159. <FileName>stm32f10x_fsmc.c</FileName>
  1160. <FileType>1</FileType>
  1161. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_fsmc.c</FilePath>
  1162. </File>
  1163. <File>
  1164. <FileName>stm32f10x_gpio.c</FileName>
  1165. <FileType>1</FileType>
  1166. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_gpio.c</FilePath>
  1167. </File>
  1168. <File>
  1169. <FileName>stm32f10x_i2c.c</FileName>
  1170. <FileType>1</FileType>
  1171. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_i2c.c</FilePath>
  1172. </File>
  1173. <File>
  1174. <FileName>stm32f10x_iwdg.c</FileName>
  1175. <FileType>1</FileType>
  1176. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_iwdg.c</FilePath>
  1177. </File>
  1178. <File>
  1179. <FileName>stm32f10x_pwr.c</FileName>
  1180. <FileType>1</FileType>
  1181. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_pwr.c</FilePath>
  1182. </File>
  1183. <File>
  1184. <FileName>stm32f10x_rcc.c</FileName>
  1185. <FileType>1</FileType>
  1186. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rcc.c</FilePath>
  1187. </File>
  1188. <File>
  1189. <FileName>stm32f10x_rtc.c</FileName>
  1190. <FileType>1</FileType>
  1191. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rtc.c</FilePath>
  1192. </File>
  1193. <File>
  1194. <FileName>stm32f10x_sdio.c</FileName>
  1195. <FileType>1</FileType>
  1196. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_sdio.c</FilePath>
  1197. </File>
  1198. <File>
  1199. <FileName>stm32f10x_spi.c</FileName>
  1200. <FileType>1</FileType>
  1201. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_spi.c</FilePath>
  1202. </File>
  1203. <File>
  1204. <FileName>stm32f10x_tim.c</FileName>
  1205. <FileType>1</FileType>
  1206. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_tim.c</FilePath>
  1207. </File>
  1208. <File>
  1209. <FileName>stm32f10x_usart.c</FileName>
  1210. <FileType>1</FileType>
  1211. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_usart.c</FilePath>
  1212. </File>
  1213. <File>
  1214. <FileName>stm32f10x_wwdg.c</FileName>
  1215. <FileType>1</FileType>
  1216. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_wwdg.c</FilePath>
  1217. </File>
  1218. </Files>
  1219. </Group>
  1220. <Group>
  1221. <GroupName>app</GroupName>
  1222. <Files>
  1223. <File>
  1224. <FileName>led.c</FileName>
  1225. <FileType>1</FileType>
  1226. <FilePath>..\APP\led.c</FilePath>
  1227. </File>
  1228. <File>
  1229. <FileName>key.c</FileName>
  1230. <FileType>1</FileType>
  1231. <FilePath>..\APP\key.c</FilePath>
  1232. </File>
  1233. <File>
  1234. <FileName>stmflash.c</FileName>
  1235. <FileType>1</FileType>
  1236. <FilePath>..\APP\stmflash.c</FilePath>
  1237. </File>
  1238. <File>
  1239. <FileName>ReadKey.c</FileName>
  1240. <FileType>1</FileType>
  1241. <FilePath>..\APP\ReadKey.c</FilePath>
  1242. </File>
  1243. <File>
  1244. <FileName>myLcd.c</FileName>
  1245. <FileType>1</FileType>
  1246. <FilePath>..\APP\myLcd.c</FilePath>
  1247. </File>
  1248. <File>
  1249. <FileName>myTim.c</FileName>
  1250. <FileType>1</FileType>
  1251. <FilePath>..\APP\myTim.c</FilePath>
  1252. </File>
  1253. <File>
  1254. <FileName>crc8.c</FileName>
  1255. <FileType>1</FileType>
  1256. <FilePath>..\app\crc8.c</FilePath>
  1257. </File>
  1258. <File>
  1259. <FileName>eventUnit.c</FileName>
  1260. <FileType>1</FileType>
  1261. <FilePath>..\app\eventUnit.c</FilePath>
  1262. </File>
  1263. <File>
  1264. <FileName>myDisplayUnit.c</FileName>
  1265. <FileType>1</FileType>
  1266. <FilePath>..\app\myDisplayUnit.c</FilePath>
  1267. </File>
  1268. <File>
  1269. <FileName>myFlashData.c</FileName>
  1270. <FileType>1</FileType>
  1271. <FilePath>..\app\myFlashData.c</FilePath>
  1272. </File>
  1273. </Files>
  1274. </Group>
  1275. <Group>
  1276. <GroupName>radio</GroupName>
  1277. <Files>
  1278. <File>
  1279. <FileName>myRadio.c</FileName>
  1280. <FileType>1</FileType>
  1281. <FilePath>..\radio\myRadio.c</FilePath>
  1282. </File>
  1283. <File>
  1284. <FileName>myRadio_gpio.c</FileName>
  1285. <FileType>1</FileType>
  1286. <FilePath>..\radio\myRadio_gpio.c</FilePath>
  1287. </File>
  1288. <File>
  1289. <FileName>myRadio_setting.c</FileName>
  1290. <FileType>1</FileType>
  1291. <FilePath>..\radio\myRadio_setting.c</FilePath>
  1292. </File>
  1293. <File>
  1294. <FileName>radio.c</FileName>
  1295. <FileType>1</FileType>
  1296. <FilePath>..\radio\radio.c</FilePath>
  1297. </File>
  1298. <File>
  1299. <FileName>radio_comm.c</FileName>
  1300. <FileType>1</FileType>
  1301. <FilePath>..\radio\radio_comm.c</FilePath>
  1302. </File>
  1303. <File>
  1304. <FileName>radio_hal.c</FileName>
  1305. <FileType>1</FileType>
  1306. <FilePath>..\radio\radio_hal.c</FilePath>
  1307. </File>
  1308. <File>
  1309. <FileName>si446x_api_lib.c</FileName>
  1310. <FileType>1</FileType>
  1311. <FilePath>..\radio\si446x_api_lib.c</FilePath>
  1312. </File>
  1313. </Files>
  1314. </Group>
  1315. </Groups>
  1316. </Target>
  1317. <Target>
  1318. <TargetName>adapterBoardDriver_APP</TargetName>
  1319. <ToolsetNumber>0x4</ToolsetNumber>
  1320. <ToolsetName>ARM-ADS</ToolsetName>
  1321. <pCCUsed>5060750::V5.06 update 6 (build 750)::.\ARMCC</pCCUsed>
  1322. <uAC6>0</uAC6>
  1323. <TargetOption>
  1324. <TargetCommonOption>
  1325. <Device>-AT32F413RCT7</Device>
  1326. <Vendor>ArteryTek</Vendor>
  1327. <PackID>ArteryTek.AT32F413_DFP.2.0.7</PackID>
  1328. <Cpu>IRAM(0x20000000,0x8000) IROM(0x08000000,0x40000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE</Cpu>
  1329. <FlashUtilSpec></FlashUtilSpec>
  1330. <StartupFile></StartupFile>
  1331. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0AT32F413_256 -FS08000000 -FL040000 -FP0($$Device:-AT32F413RCT7$Flash\AT32F413_256.FLM))</FlashDriverDll>
  1332. <DeviceId>0</DeviceId>
  1333. <RegisterFile>$$Device:-AT32F413RCT7$Device\Include\at32f413.h</RegisterFile>
  1334. <MemoryEnv></MemoryEnv>
  1335. <Cmp></Cmp>
  1336. <Asm></Asm>
  1337. <Linker></Linker>
  1338. <OHString></OHString>
  1339. <InfinionOptionDll></InfinionOptionDll>
  1340. <SLE66CMisc></SLE66CMisc>
  1341. <SLE66AMisc></SLE66AMisc>
  1342. <SLE66LinkerMisc></SLE66LinkerMisc>
  1343. <SFDFile>$$Device:-AT32F413RCT7$SVD\AT32F413xx_v2.svd</SFDFile>
  1344. <bCustSvd>0</bCustSvd>
  1345. <UseEnv>0</UseEnv>
  1346. <BinPath></BinPath>
  1347. <IncludePath></IncludePath>
  1348. <LibPath></LibPath>
  1349. <RegisterFilePath></RegisterFilePath>
  1350. <DBRegisterFilePath></DBRegisterFilePath>
  1351. <TargetStatus>
  1352. <Error>0</Error>
  1353. <ExitCodeStop>0</ExitCodeStop>
  1354. <ButtonStop>0</ButtonStop>
  1355. <NotGenerated>0</NotGenerated>
  1356. <InvalidFlash>1</InvalidFlash>
  1357. </TargetStatus>
  1358. <OutputDirectory>.\Objects\</OutputDirectory>
  1359. <OutputName>VGKitBoard_55xxS_APP_V08</OutputName>
  1360. <CreateExecutable>1</CreateExecutable>
  1361. <CreateLib>0</CreateLib>
  1362. <CreateHexFile>1</CreateHexFile>
  1363. <DebugInformation>1</DebugInformation>
  1364. <BrowseInformation>1</BrowseInformation>
  1365. <ListingPath>.\Listings\</ListingPath>
  1366. <HexFormatSelection>1</HexFormatSelection>
  1367. <Merge32K>0</Merge32K>
  1368. <CreateBatchFile>0</CreateBatchFile>
  1369. <BeforeCompile>
  1370. <RunUserProg1>0</RunUserProg1>
  1371. <RunUserProg2>0</RunUserProg2>
  1372. <UserProg1Name></UserProg1Name>
  1373. <UserProg2Name></UserProg2Name>
  1374. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1375. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1376. <nStopU1X>0</nStopU1X>
  1377. <nStopU2X>0</nStopU2X>
  1378. </BeforeCompile>
  1379. <BeforeMake>
  1380. <RunUserProg1>0</RunUserProg1>
  1381. <RunUserProg2>0</RunUserProg2>
  1382. <UserProg1Name></UserProg1Name>
  1383. <UserProg2Name></UserProg2Name>
  1384. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1385. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1386. <nStopB1X>0</nStopB1X>
  1387. <nStopB2X>0</nStopB2X>
  1388. </BeforeMake>
  1389. <AfterMake>
  1390. <RunUserProg1>1</RunUserProg1>
  1391. <RunUserProg2>0</RunUserProg2>
  1392. <UserProg1Name>fromelf.exe --bin --output .\Listings\@L.bin !L</UserProg1Name>
  1393. <UserProg2Name></UserProg2Name>
  1394. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1395. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1396. <nStopA1X>0</nStopA1X>
  1397. <nStopA2X>0</nStopA2X>
  1398. </AfterMake>
  1399. <SelectedForBatchBuild>0</SelectedForBatchBuild>
  1400. <SVCSIdString></SVCSIdString>
  1401. </TargetCommonOption>
  1402. <CommonProperty>
  1403. <UseCPPCompiler>0</UseCPPCompiler>
  1404. <RVCTCodeConst>0</RVCTCodeConst>
  1405. <RVCTZI>0</RVCTZI>
  1406. <RVCTOtherData>0</RVCTOtherData>
  1407. <ModuleSelection>0</ModuleSelection>
  1408. <IncludeInBuild>1</IncludeInBuild>
  1409. <AlwaysBuild>0</AlwaysBuild>
  1410. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  1411. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  1412. <PublicsOnly>0</PublicsOnly>
  1413. <StopOnExitCode>3</StopOnExitCode>
  1414. <CustomArgument></CustomArgument>
  1415. <IncludeLibraryModules></IncludeLibraryModules>
  1416. <ComprImg>1</ComprImg>
  1417. </CommonProperty>
  1418. <DllOption>
  1419. <SimDllName>SARMCM3.DLL</SimDllName>
  1420. <SimDllArguments> -REMAP -MPU</SimDllArguments>
  1421. <SimDlgDll>DCM.DLL</SimDlgDll>
  1422. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  1423. <TargetDllName>SARMCM3.DLL</TargetDllName>
  1424. <TargetDllArguments> -MPU</TargetDllArguments>
  1425. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  1426. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  1427. </DllOption>
  1428. <DebugOption>
  1429. <OPTHX>
  1430. <HexSelection>1</HexSelection>
  1431. <HexRangeLowAddress>0</HexRangeLowAddress>
  1432. <HexRangeHighAddress>0</HexRangeHighAddress>
  1433. <HexOffset>0</HexOffset>
  1434. <Oh166RecLen>16</Oh166RecLen>
  1435. </OPTHX>
  1436. </DebugOption>
  1437. <Utilities>
  1438. <Flash1>
  1439. <UseTargetDll>1</UseTargetDll>
  1440. <UseExternalTool>0</UseExternalTool>
  1441. <RunIndependent>0</RunIndependent>
  1442. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  1443. <Capability>1</Capability>
  1444. <DriverSelection>4096</DriverSelection>
  1445. </Flash1>
  1446. <bUseTDR>1</bUseTDR>
  1447. <Flash2>BIN\UL2CM3.DLL</Flash2>
  1448. <Flash3></Flash3>
  1449. <Flash4></Flash4>
  1450. <pFcarmOut></pFcarmOut>
  1451. <pFcarmGrp></pFcarmGrp>
  1452. <pFcArmRoot></pFcArmRoot>
  1453. <FcArmLst>0</FcArmLst>
  1454. </Utilities>
  1455. <TargetArmAds>
  1456. <ArmAdsMisc>
  1457. <GenerateListings>0</GenerateListings>
  1458. <asHll>1</asHll>
  1459. <asAsm>1</asAsm>
  1460. <asMacX>1</asMacX>
  1461. <asSyms>1</asSyms>
  1462. <asFals>1</asFals>
  1463. <asDbgD>1</asDbgD>
  1464. <asForm>1</asForm>
  1465. <ldLst>0</ldLst>
  1466. <ldmm>1</ldmm>
  1467. <ldXref>1</ldXref>
  1468. <BigEnd>0</BigEnd>
  1469. <AdsALst>1</AdsALst>
  1470. <AdsACrf>1</AdsACrf>
  1471. <AdsANop>0</AdsANop>
  1472. <AdsANot>0</AdsANot>
  1473. <AdsLLst>1</AdsLLst>
  1474. <AdsLmap>1</AdsLmap>
  1475. <AdsLcgr>1</AdsLcgr>
  1476. <AdsLsym>1</AdsLsym>
  1477. <AdsLszi>1</AdsLszi>
  1478. <AdsLtoi>1</AdsLtoi>
  1479. <AdsLsun>1</AdsLsun>
  1480. <AdsLven>1</AdsLven>
  1481. <AdsLsxf>1</AdsLsxf>
  1482. <RvctClst>0</RvctClst>
  1483. <GenPPlst>0</GenPPlst>
  1484. <AdsCpuType>"Cortex-M4"</AdsCpuType>
  1485. <RvctDeviceName></RvctDeviceName>
  1486. <mOS>0</mOS>
  1487. <uocRom>0</uocRom>
  1488. <uocRam>0</uocRam>
  1489. <hadIROM>1</hadIROM>
  1490. <hadIRAM>1</hadIRAM>
  1491. <hadXRAM>0</hadXRAM>
  1492. <uocXRam>0</uocXRam>
  1493. <RvdsVP>1</RvdsVP>
  1494. <RvdsMve>0</RvdsMve>
  1495. <RvdsCdeCp>0</RvdsCdeCp>
  1496. <hadIRAM2>0</hadIRAM2>
  1497. <hadIROM2>0</hadIROM2>
  1498. <StupSel>8</StupSel>
  1499. <useUlib>1</useUlib>
  1500. <EndSel>0</EndSel>
  1501. <uLtcg>0</uLtcg>
  1502. <nSecure>0</nSecure>
  1503. <RoSelD>3</RoSelD>
  1504. <RwSelD>3</RwSelD>
  1505. <CodeSel>0</CodeSel>
  1506. <OptFeed>0</OptFeed>
  1507. <NoZi1>0</NoZi1>
  1508. <NoZi2>0</NoZi2>
  1509. <NoZi3>0</NoZi3>
  1510. <NoZi4>0</NoZi4>
  1511. <NoZi5>0</NoZi5>
  1512. <Ro1Chk>0</Ro1Chk>
  1513. <Ro2Chk>0</Ro2Chk>
  1514. <Ro3Chk>0</Ro3Chk>
  1515. <Ir1Chk>1</Ir1Chk>
  1516. <Ir2Chk>0</Ir2Chk>
  1517. <Ra1Chk>0</Ra1Chk>
  1518. <Ra2Chk>0</Ra2Chk>
  1519. <Ra3Chk>0</Ra3Chk>
  1520. <Im1Chk>1</Im1Chk>
  1521. <Im2Chk>0</Im2Chk>
  1522. <OnChipMemories>
  1523. <Ocm1>
  1524. <Type>0</Type>
  1525. <StartAddress>0x0</StartAddress>
  1526. <Size>0x0</Size>
  1527. </Ocm1>
  1528. <Ocm2>
  1529. <Type>0</Type>
  1530. <StartAddress>0x0</StartAddress>
  1531. <Size>0x0</Size>
  1532. </Ocm2>
  1533. <Ocm3>
  1534. <Type>0</Type>
  1535. <StartAddress>0x0</StartAddress>
  1536. <Size>0x0</Size>
  1537. </Ocm3>
  1538. <Ocm4>
  1539. <Type>0</Type>
  1540. <StartAddress>0x0</StartAddress>
  1541. <Size>0x0</Size>
  1542. </Ocm4>
  1543. <Ocm5>
  1544. <Type>0</Type>
  1545. <StartAddress>0x0</StartAddress>
  1546. <Size>0x0</Size>
  1547. </Ocm5>
  1548. <Ocm6>
  1549. <Type>0</Type>
  1550. <StartAddress>0x0</StartAddress>
  1551. <Size>0x0</Size>
  1552. </Ocm6>
  1553. <IRAM>
  1554. <Type>0</Type>
  1555. <StartAddress>0x20000000</StartAddress>
  1556. <Size>0x8000</Size>
  1557. </IRAM>
  1558. <IROM>
  1559. <Type>1</Type>
  1560. <StartAddress>0x8000000</StartAddress>
  1561. <Size>0x40000</Size>
  1562. </IROM>
  1563. <XRAM>
  1564. <Type>0</Type>
  1565. <StartAddress>0x0</StartAddress>
  1566. <Size>0x0</Size>
  1567. </XRAM>
  1568. <OCR_RVCT1>
  1569. <Type>1</Type>
  1570. <StartAddress>0x0</StartAddress>
  1571. <Size>0x0</Size>
  1572. </OCR_RVCT1>
  1573. <OCR_RVCT2>
  1574. <Type>1</Type>
  1575. <StartAddress>0x0</StartAddress>
  1576. <Size>0x0</Size>
  1577. </OCR_RVCT2>
  1578. <OCR_RVCT3>
  1579. <Type>1</Type>
  1580. <StartAddress>0x0</StartAddress>
  1581. <Size>0x0</Size>
  1582. </OCR_RVCT3>
  1583. <OCR_RVCT4>
  1584. <Type>1</Type>
  1585. <StartAddress>0x800c800</StartAddress>
  1586. <Size>0x40000</Size>
  1587. </OCR_RVCT4>
  1588. <OCR_RVCT5>
  1589. <Type>1</Type>
  1590. <StartAddress>0x0</StartAddress>
  1591. <Size>0x0</Size>
  1592. </OCR_RVCT5>
  1593. <OCR_RVCT6>
  1594. <Type>0</Type>
  1595. <StartAddress>0x0</StartAddress>
  1596. <Size>0x0</Size>
  1597. </OCR_RVCT6>
  1598. <OCR_RVCT7>
  1599. <Type>0</Type>
  1600. <StartAddress>0x0</StartAddress>
  1601. <Size>0x0</Size>
  1602. </OCR_RVCT7>
  1603. <OCR_RVCT8>
  1604. <Type>0</Type>
  1605. <StartAddress>0x0</StartAddress>
  1606. <Size>0x0</Size>
  1607. </OCR_RVCT8>
  1608. <OCR_RVCT9>
  1609. <Type>0</Type>
  1610. <StartAddress>0x20000000</StartAddress>
  1611. <Size>0x8000</Size>
  1612. </OCR_RVCT9>
  1613. <OCR_RVCT10>
  1614. <Type>0</Type>
  1615. <StartAddress>0x0</StartAddress>
  1616. <Size>0x0</Size>
  1617. </OCR_RVCT10>
  1618. </OnChipMemories>
  1619. <RvctStartVector></RvctStartVector>
  1620. </ArmAdsMisc>
  1621. <Cads>
  1622. <interw>1</interw>
  1623. <Optim>1</Optim>
  1624. <oTime>0</oTime>
  1625. <SplitLS>0</SplitLS>
  1626. <OneElfS>1</OneElfS>
  1627. <Strict>0</Strict>
  1628. <EnumInt>0</EnumInt>
  1629. <PlainCh>0</PlainCh>
  1630. <Ropi>0</Ropi>
  1631. <Rwpi>0</Rwpi>
  1632. <wLevel>2</wLevel>
  1633. <uThumb>0</uThumb>
  1634. <uSurpInc>0</uSurpInc>
  1635. <uC99>1</uC99>
  1636. <uGnu>0</uGnu>
  1637. <useXO>0</useXO>
  1638. <v6Lang>1</v6Lang>
  1639. <v6LangP>1</v6LangP>
  1640. <vShortEn>1</vShortEn>
  1641. <vShortWch>1</vShortWch>
  1642. <v6Lto>0</v6Lto>
  1643. <v6WtE>0</v6WtE>
  1644. <v6Rtti>0</v6Rtti>
  1645. <VariousControls>
  1646. <MiscControls></MiscControls>
  1647. <Define>STM32F10X_HD,USE_STDPERIPH_DRIVER,BOOTLOADER_APP</Define>
  1648. <Undefine></Undefine>
  1649. <IncludePath>..\project;..\core;..\STM32F10x_FWLib\inc;..\peripheral;..\app;..\radio</IncludePath>
  1650. </VariousControls>
  1651. </Cads>
  1652. <Aads>
  1653. <interw>1</interw>
  1654. <Ropi>0</Ropi>
  1655. <Rwpi>0</Rwpi>
  1656. <thumb>0</thumb>
  1657. <SplitLS>0</SplitLS>
  1658. <SwStkChk>0</SwStkChk>
  1659. <NoWarn>0</NoWarn>
  1660. <uSurpInc>0</uSurpInc>
  1661. <useXO>0</useXO>
  1662. <ClangAsOpt>1</ClangAsOpt>
  1663. <VariousControls>
  1664. <MiscControls></MiscControls>
  1665. <Define></Define>
  1666. <Undefine></Undefine>
  1667. <IncludePath></IncludePath>
  1668. </VariousControls>
  1669. </Aads>
  1670. <LDads>
  1671. <umfTarg>1</umfTarg>
  1672. <Ropi>0</Ropi>
  1673. <Rwpi>0</Rwpi>
  1674. <noStLib>0</noStLib>
  1675. <RepFail>1</RepFail>
  1676. <useFile>0</useFile>
  1677. <TextAddressRange>0x08000000</TextAddressRange>
  1678. <DataAddressRange>0x20000000</DataAddressRange>
  1679. <pXoBase></pXoBase>
  1680. <ScatterFile>..\OBJ\Template.sct</ScatterFile>
  1681. <IncludeLibs></IncludeLibs>
  1682. <IncludeLibsPath></IncludeLibsPath>
  1683. <Misc></Misc>
  1684. <LinkerInputFile></LinkerInputFile>
  1685. <DisabledWarnings></DisabledWarnings>
  1686. </LDads>
  1687. </TargetArmAds>
  1688. </TargetOption>
  1689. <Groups>
  1690. <Group>
  1691. <GroupName>project</GroupName>
  1692. <Files>
  1693. <File>
  1694. <FileName>main.c</FileName>
  1695. <FileType>1</FileType>
  1696. <FilePath>..\project\main.c</FilePath>
  1697. </File>
  1698. <File>
  1699. <FileName>stm32f10x_it.c</FileName>
  1700. <FileType>1</FileType>
  1701. <FilePath>..\project\stm32f10x_it.c</FilePath>
  1702. </File>
  1703. <File>
  1704. <FileName>system_stm32f10x.c</FileName>
  1705. <FileType>1</FileType>
  1706. <FilePath>..\project\system_stm32f10x.c</FilePath>
  1707. </File>
  1708. </Files>
  1709. </Group>
  1710. <Group>
  1711. <GroupName>peripheral</GroupName>
  1712. <Files>
  1713. <File>
  1714. <FileName>myUart.c</FileName>
  1715. <FileType>1</FileType>
  1716. <FilePath>..\peripheral\myUart.c</FilePath>
  1717. </File>
  1718. <File>
  1719. <FileName>sys.c</FileName>
  1720. <FileType>1</FileType>
  1721. <FilePath>..\peripheral\sys.c</FilePath>
  1722. </File>
  1723. <File>
  1724. <FileName>myADC.c</FileName>
  1725. <FileType>1</FileType>
  1726. <FilePath>..\peripheral\myADC.c</FilePath>
  1727. </File>
  1728. <File>
  1729. <FileName>myInputCapture.c</FileName>
  1730. <FileType>1</FileType>
  1731. <FilePath>..\peripheral\myInputCapture.c</FilePath>
  1732. </File>
  1733. <File>
  1734. <FileName>myUart3.c</FileName>
  1735. <FileType>1</FileType>
  1736. <FilePath>..\peripheral\myUart3.c</FilePath>
  1737. </File>
  1738. </Files>
  1739. </Group>
  1740. <Group>
  1741. <GroupName>core</GroupName>
  1742. <Files>
  1743. <File>
  1744. <FileName>core_cm3.c</FileName>
  1745. <FileType>1</FileType>
  1746. <FilePath>..\CORE\core_cm3.c</FilePath>
  1747. </File>
  1748. <File>
  1749. <FileName>startup_stm32f10x_hd.s</FileName>
  1750. <FileType>2</FileType>
  1751. <FilePath>..\CORE\startup_stm32f10x_hd.s</FilePath>
  1752. </File>
  1753. </Files>
  1754. </Group>
  1755. <Group>
  1756. <GroupName>FWLIB</GroupName>
  1757. <Files>
  1758. <File>
  1759. <FileName>misc.c</FileName>
  1760. <FileType>1</FileType>
  1761. <FilePath>..\STM32F10x_FWLib\src\misc.c</FilePath>
  1762. </File>
  1763. <File>
  1764. <FileName>stm32f10x_adc.c</FileName>
  1765. <FileType>1</FileType>
  1766. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_adc.c</FilePath>
  1767. </File>
  1768. <File>
  1769. <FileName>stm32f10x_bkp.c</FileName>
  1770. <FileType>1</FileType>
  1771. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_bkp.c</FilePath>
  1772. </File>
  1773. <File>
  1774. <FileName>stm32f10x_can.c</FileName>
  1775. <FileType>1</FileType>
  1776. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_can.c</FilePath>
  1777. </File>
  1778. <File>
  1779. <FileName>stm32f10x_cec.c</FileName>
  1780. <FileType>1</FileType>
  1781. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_cec.c</FilePath>
  1782. </File>
  1783. <File>
  1784. <FileName>stm32f10x_crc.c</FileName>
  1785. <FileType>1</FileType>
  1786. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_crc.c</FilePath>
  1787. </File>
  1788. <File>
  1789. <FileName>stm32f10x_dac.c</FileName>
  1790. <FileType>1</FileType>
  1791. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dac.c</FilePath>
  1792. </File>
  1793. <File>
  1794. <FileName>stm32f10x_dbgmcu.c</FileName>
  1795. <FileType>1</FileType>
  1796. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dbgmcu.c</FilePath>
  1797. </File>
  1798. <File>
  1799. <FileName>stm32f10x_dma.c</FileName>
  1800. <FileType>1</FileType>
  1801. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_dma.c</FilePath>
  1802. </File>
  1803. <File>
  1804. <FileName>stm32f10x_exti.c</FileName>
  1805. <FileType>1</FileType>
  1806. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_exti.c</FilePath>
  1807. </File>
  1808. <File>
  1809. <FileName>stm32f10x_flash.c</FileName>
  1810. <FileType>1</FileType>
  1811. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_flash.c</FilePath>
  1812. </File>
  1813. <File>
  1814. <FileName>stm32f10x_fsmc.c</FileName>
  1815. <FileType>1</FileType>
  1816. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_fsmc.c</FilePath>
  1817. </File>
  1818. <File>
  1819. <FileName>stm32f10x_gpio.c</FileName>
  1820. <FileType>1</FileType>
  1821. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_gpio.c</FilePath>
  1822. </File>
  1823. <File>
  1824. <FileName>stm32f10x_i2c.c</FileName>
  1825. <FileType>1</FileType>
  1826. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_i2c.c</FilePath>
  1827. </File>
  1828. <File>
  1829. <FileName>stm32f10x_iwdg.c</FileName>
  1830. <FileType>1</FileType>
  1831. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_iwdg.c</FilePath>
  1832. </File>
  1833. <File>
  1834. <FileName>stm32f10x_pwr.c</FileName>
  1835. <FileType>1</FileType>
  1836. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_pwr.c</FilePath>
  1837. </File>
  1838. <File>
  1839. <FileName>stm32f10x_rcc.c</FileName>
  1840. <FileType>1</FileType>
  1841. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rcc.c</FilePath>
  1842. </File>
  1843. <File>
  1844. <FileName>stm32f10x_rtc.c</FileName>
  1845. <FileType>1</FileType>
  1846. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_rtc.c</FilePath>
  1847. </File>
  1848. <File>
  1849. <FileName>stm32f10x_sdio.c</FileName>
  1850. <FileType>1</FileType>
  1851. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_sdio.c</FilePath>
  1852. </File>
  1853. <File>
  1854. <FileName>stm32f10x_spi.c</FileName>
  1855. <FileType>1</FileType>
  1856. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_spi.c</FilePath>
  1857. </File>
  1858. <File>
  1859. <FileName>stm32f10x_tim.c</FileName>
  1860. <FileType>1</FileType>
  1861. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_tim.c</FilePath>
  1862. </File>
  1863. <File>
  1864. <FileName>stm32f10x_usart.c</FileName>
  1865. <FileType>1</FileType>
  1866. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_usart.c</FilePath>
  1867. </File>
  1868. <File>
  1869. <FileName>stm32f10x_wwdg.c</FileName>
  1870. <FileType>1</FileType>
  1871. <FilePath>..\STM32F10x_FWLib\src\stm32f10x_wwdg.c</FilePath>
  1872. </File>
  1873. </Files>
  1874. </Group>
  1875. <Group>
  1876. <GroupName>app</GroupName>
  1877. <Files>
  1878. <File>
  1879. <FileName>led.c</FileName>
  1880. <FileType>1</FileType>
  1881. <FilePath>..\APP\led.c</FilePath>
  1882. </File>
  1883. <File>
  1884. <FileName>key.c</FileName>
  1885. <FileType>1</FileType>
  1886. <FilePath>..\APP\key.c</FilePath>
  1887. </File>
  1888. <File>
  1889. <FileName>stmflash.c</FileName>
  1890. <FileType>1</FileType>
  1891. <FilePath>..\APP\stmflash.c</FilePath>
  1892. </File>
  1893. <File>
  1894. <FileName>ReadKey.c</FileName>
  1895. <FileType>1</FileType>
  1896. <FilePath>..\APP\ReadKey.c</FilePath>
  1897. </File>
  1898. <File>
  1899. <FileName>myLcd.c</FileName>
  1900. <FileType>1</FileType>
  1901. <FilePath>..\APP\myLcd.c</FilePath>
  1902. </File>
  1903. <File>
  1904. <FileName>myTim.c</FileName>
  1905. <FileType>1</FileType>
  1906. <FilePath>..\APP\myTim.c</FilePath>
  1907. </File>
  1908. <File>
  1909. <FileName>crc8.c</FileName>
  1910. <FileType>1</FileType>
  1911. <FilePath>..\app\crc8.c</FilePath>
  1912. </File>
  1913. <File>
  1914. <FileName>eventUnit.c</FileName>
  1915. <FileType>1</FileType>
  1916. <FilePath>..\app\eventUnit.c</FilePath>
  1917. </File>
  1918. <File>
  1919. <FileName>myDisplayUnit.c</FileName>
  1920. <FileType>1</FileType>
  1921. <FilePath>..\app\myDisplayUnit.c</FilePath>
  1922. </File>
  1923. <File>
  1924. <FileName>myFlashData.c</FileName>
  1925. <FileType>1</FileType>
  1926. <FilePath>..\app\myFlashData.c</FilePath>
  1927. </File>
  1928. </Files>
  1929. </Group>
  1930. <Group>
  1931. <GroupName>radio</GroupName>
  1932. <Files>
  1933. <File>
  1934. <FileName>myRadio.c</FileName>
  1935. <FileType>1</FileType>
  1936. <FilePath>..\radio\myRadio.c</FilePath>
  1937. </File>
  1938. <File>
  1939. <FileName>myRadio_gpio.c</FileName>
  1940. <FileType>1</FileType>
  1941. <FilePath>..\radio\myRadio_gpio.c</FilePath>
  1942. </File>
  1943. <File>
  1944. <FileName>myRadio_setting.c</FileName>
  1945. <FileType>1</FileType>
  1946. <FilePath>..\radio\myRadio_setting.c</FilePath>
  1947. </File>
  1948. <File>
  1949. <FileName>radio.c</FileName>
  1950. <FileType>1</FileType>
  1951. <FilePath>..\radio\radio.c</FilePath>
  1952. </File>
  1953. <File>
  1954. <FileName>radio_comm.c</FileName>
  1955. <FileType>1</FileType>
  1956. <FilePath>..\radio\radio_comm.c</FilePath>
  1957. </File>
  1958. <File>
  1959. <FileName>radio_hal.c</FileName>
  1960. <FileType>1</FileType>
  1961. <FilePath>..\radio\radio_hal.c</FilePath>
  1962. </File>
  1963. <File>
  1964. <FileName>si446x_api_lib.c</FileName>
  1965. <FileType>1</FileType>
  1966. <FilePath>..\radio\si446x_api_lib.c</FilePath>
  1967. </File>
  1968. </Files>
  1969. </Group>
  1970. </Groups>
  1971. </Target>
  1972. </Targets>
  1973. <RTE>
  1974. <apis/>
  1975. <components/>
  1976. <files/>
  1977. </RTE>
  1978. <LayerInfo>
  1979. <Layers>
  1980. <Layer>
  1981. <LayName>&lt;Project Info&gt;</LayName>
  1982. <LayDesc></LayDesc>
  1983. <LayUrl></LayUrl>
  1984. <LayKeys></LayKeys>
  1985. <LayCat></LayCat>
  1986. <LayLic></LayLic>
  1987. <LayTarg>0</LayTarg>
  1988. <LayPrjMark>1</LayPrjMark>
  1989. </Layer>
  1990. </Layers>
  1991. </LayerInfo>
  1992. </Project>