adapterBoardDriver.uvprojx 68 KB

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