RTX_Lib_CM.uvprojx 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819
  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>CM0_LE</TargetName>
  8. <ToolsetNumber>0x3</ToolsetNumber>
  9. <ToolsetName>ARM-GNU</ToolsetName>
  10. <TargetOption>
  11. <TargetCommonOption>
  12. <Device>ARMCM0</Device>
  13. <Vendor>ARM</Vendor>
  14. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  15. <PackURL>http://www.keil.com/pack/</PackURL>
  16. <Cpu>IROM(0x00000000,0x40000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M0") CLOCK(12000000) ESEL ELITTLE</Cpu>
  17. <FlashUtilSpec></FlashUtilSpec>
  18. <StartupFile></StartupFile>
  19. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL040000 -FP0($$Device:ARMCM0$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  20. <DeviceId>0</DeviceId>
  21. <RegisterFile>$$Device:ARMCM0$Device\ARM\ARMCM0\Include\ARMCM0.h</RegisterFile>
  22. <MemoryEnv></MemoryEnv>
  23. <Cmp></Cmp>
  24. <Asm></Asm>
  25. <Linker></Linker>
  26. <OHString></OHString>
  27. <InfinionOptionDll></InfinionOptionDll>
  28. <SLE66CMisc></SLE66CMisc>
  29. <SLE66AMisc></SLE66AMisc>
  30. <SLE66LinkerMisc></SLE66LinkerMisc>
  31. <SFDFile>$$Device:ARMCM0$Device\ARM\SVD\ARMCM0.svd</SFDFile>
  32. <bCustSvd>0</bCustSvd>
  33. <UseEnv>0</UseEnv>
  34. <BinPath></BinPath>
  35. <IncludePath></IncludePath>
  36. <LibPath></LibPath>
  37. <RegisterFilePath></RegisterFilePath>
  38. <DBRegisterFilePath></DBRegisterFilePath>
  39. <TargetStatus>
  40. <Error>0</Error>
  41. <ExitCodeStop>0</ExitCodeStop>
  42. <ButtonStop>0</ButtonStop>
  43. <NotGenerated>0</NotGenerated>
  44. <InvalidFlash>1</InvalidFlash>
  45. </TargetStatus>
  46. <OutputDirectory>.\CM0_LE\</OutputDirectory>
  47. <OutputName>RTX_CM0</OutputName>
  48. <CreateExecutable>0</CreateExecutable>
  49. <CreateLib>1</CreateLib>
  50. <CreateHexFile>0</CreateHexFile>
  51. <DebugInformation>1</DebugInformation>
  52. <BrowseInformation>0</BrowseInformation>
  53. <ListingPath>.\CM0_LE\</ListingPath>
  54. <HexFormatSelection>1</HexFormatSelection>
  55. <Merge32K>0</Merge32K>
  56. <CreateBatchFile>0</CreateBatchFile>
  57. <BeforeCompile>
  58. <RunUserProg1>0</RunUserProg1>
  59. <RunUserProg2>0</RunUserProg2>
  60. <UserProg1Name></UserProg1Name>
  61. <UserProg2Name></UserProg2Name>
  62. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  63. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  64. <nStopU1X>0</nStopU1X>
  65. <nStopU2X>0</nStopU2X>
  66. </BeforeCompile>
  67. <BeforeMake>
  68. <RunUserProg1>0</RunUserProg1>
  69. <RunUserProg2>0</RunUserProg2>
  70. <UserProg1Name></UserProg1Name>
  71. <UserProg2Name></UserProg2Name>
  72. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  73. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  74. <nStopB1X>0</nStopB1X>
  75. <nStopB2X>0</nStopB2X>
  76. </BeforeMake>
  77. <AfterMake>
  78. <RunUserProg1>1</RunUserProg1>
  79. <RunUserProg2>0</RunUserProg2>
  80. <UserProg1Name>cmd.exe /C copy CM0_LE\libRTX_CM0.a ..\..\LIB\GCC\</UserProg1Name>
  81. <UserProg2Name></UserProg2Name>
  82. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  83. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  84. <nStopA1X>0</nStopA1X>
  85. <nStopA2X>0</nStopA2X>
  86. </AfterMake>
  87. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  88. <SVCSIdString></SVCSIdString>
  89. </TargetCommonOption>
  90. <CommonProperty>
  91. <UseCPPCompiler>0</UseCPPCompiler>
  92. <RVCTCodeConst>0</RVCTCodeConst>
  93. <RVCTZI>0</RVCTZI>
  94. <RVCTOtherData>0</RVCTOtherData>
  95. <ModuleSelection>0</ModuleSelection>
  96. <IncludeInBuild>1</IncludeInBuild>
  97. <AlwaysBuild>0</AlwaysBuild>
  98. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  99. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  100. <PublicsOnly>0</PublicsOnly>
  101. <StopOnExitCode>3</StopOnExitCode>
  102. <CustomArgument></CustomArgument>
  103. <IncludeLibraryModules></IncludeLibraryModules>
  104. <ComprImg>1</ComprImg>
  105. </CommonProperty>
  106. <DllOption>
  107. <SimDllName>SARMCM3.DLL</SimDllName>
  108. <SimDllArguments> </SimDllArguments>
  109. <SimDlgDll>DARMCM1.DLL</SimDlgDll>
  110. <SimDlgDllArguments>-pCM0</SimDlgDllArguments>
  111. <TargetDllName>SARMCM3.DLL</TargetDllName>
  112. <TargetDllArguments> </TargetDllArguments>
  113. <TargetDlgDll>TARMCM1.DLL</TargetDlgDll>
  114. <TargetDlgDllArguments>-pCM0</TargetDlgDllArguments>
  115. </DllOption>
  116. <DebugOption>
  117. <OPTHX>
  118. <HexSelection>1</HexSelection>
  119. <HexRangeLowAddress>0</HexRangeLowAddress>
  120. <HexRangeHighAddress>0</HexRangeHighAddress>
  121. <HexOffset>0</HexOffset>
  122. <Oh166RecLen>16</Oh166RecLen>
  123. </OPTHX>
  124. </DebugOption>
  125. <Utilities>
  126. <Flash1>
  127. <UseTargetDll>1</UseTargetDll>
  128. <UseExternalTool>0</UseExternalTool>
  129. <RunIndependent>0</RunIndependent>
  130. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  131. <Capability>1</Capability>
  132. <DriverSelection>4096</DriverSelection>
  133. </Flash1>
  134. <bUseTDR>1</bUseTDR>
  135. <Flash2>BIN\UL2CM3.DLL</Flash2>
  136. <Flash3>"" ()</Flash3>
  137. <Flash4></Flash4>
  138. <pFcarmOut></pFcarmOut>
  139. <pFcarmGrp></pFcarmGrp>
  140. <pFcArmRoot></pFcArmRoot>
  141. <FcArmLst>0</FcArmLst>
  142. </Utilities>
  143. <TargetArm>
  144. <ArmMisc>
  145. <asLst>0</asLst>
  146. <asHll>1</asHll>
  147. <asAsm>1</asAsm>
  148. <asMacX>1</asMacX>
  149. <asSyms>1</asSyms>
  150. <asFals>1</asFals>
  151. <asDbgD>1</asDbgD>
  152. <asForm>1</asForm>
  153. <ldLst>0</ldLst>
  154. <ldmm>1</ldmm>
  155. <ldXref>1</ldXref>
  156. <BigEnd>0</BigEnd>
  157. <GCPUTYP>"Cortex-M0"</GCPUTYP>
  158. <mOS>0</mOS>
  159. <uocRom>0</uocRom>
  160. <uocRam>0</uocRam>
  161. <hadIROM>1</hadIROM>
  162. <hadIRAM>1</hadIRAM>
  163. <hadXRAM>0</hadXRAM>
  164. <uocXRam>0</uocXRam>
  165. <RvdsVP>0</RvdsVP>
  166. <hadIRAM2>0</hadIRAM2>
  167. <hadIROM2>0</hadIROM2>
  168. <OnChipMemories>
  169. <Ocm1>
  170. <Type>0</Type>
  171. <StartAddress>0x0</StartAddress>
  172. <Size>0x0</Size>
  173. </Ocm1>
  174. <Ocm2>
  175. <Type>0</Type>
  176. <StartAddress>0x0</StartAddress>
  177. <Size>0x0</Size>
  178. </Ocm2>
  179. <Ocm3>
  180. <Type>0</Type>
  181. <StartAddress>0x0</StartAddress>
  182. <Size>0x0</Size>
  183. </Ocm3>
  184. <Ocm4>
  185. <Type>0</Type>
  186. <StartAddress>0x0</StartAddress>
  187. <Size>0x0</Size>
  188. </Ocm4>
  189. <Ocm5>
  190. <Type>0</Type>
  191. <StartAddress>0x0</StartAddress>
  192. <Size>0x0</Size>
  193. </Ocm5>
  194. <Ocm6>
  195. <Type>0</Type>
  196. <StartAddress>0x0</StartAddress>
  197. <Size>0x0</Size>
  198. </Ocm6>
  199. <IRAM>
  200. <Type>0</Type>
  201. <StartAddress>0x20000000</StartAddress>
  202. <Size>0x20000</Size>
  203. </IRAM>
  204. <IROM>
  205. <Type>1</Type>
  206. <StartAddress>0x0</StartAddress>
  207. <Size>0x40000</Size>
  208. </IROM>
  209. <XRAM>
  210. <Type>0</Type>
  211. <StartAddress>0x0</StartAddress>
  212. <Size>0x0</Size>
  213. </XRAM>
  214. <IRAM2>
  215. <Type>0</Type>
  216. <StartAddress>0x0</StartAddress>
  217. <Size>0x0</Size>
  218. </IRAM2>
  219. <IROM2>
  220. <Type>0</Type>
  221. <StartAddress>0x0</StartAddress>
  222. <Size>0x0</Size>
  223. </IROM2>
  224. </OnChipMemories>
  225. </ArmMisc>
  226. <Carm>
  227. <arpcs>0</arpcs>
  228. <stkchk>0</stkchk>
  229. <reentr>0</reentr>
  230. <interw>0</interw>
  231. <bigend>0</bigend>
  232. <Strict>0</Strict>
  233. <Optim>5</Optim>
  234. <wLevel>2</wLevel>
  235. <uThumb>1</uThumb>
  236. <VariousControls>
  237. <MiscControls>-ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  238. <Define>__CORTEX_M0 __CMSIS_RTOS</Define>
  239. <Undefine></Undefine>
  240. <IncludePath></IncludePath>
  241. </VariousControls>
  242. </Carm>
  243. <Aarm>
  244. <bBE>0</bBE>
  245. <interw>0</interw>
  246. <VariousControls>
  247. <MiscControls></MiscControls>
  248. <Define>__CORTEX_M0 __CMSIS_RTOS</Define>
  249. <Undefine></Undefine>
  250. <IncludePath></IncludePath>
  251. </VariousControls>
  252. </Aarm>
  253. <LDarm>
  254. <umfTarg>1</umfTarg>
  255. <enaGarb>1</enaGarb>
  256. <noStart>1</noStart>
  257. <noStLib>0</noStLib>
  258. <uMathLib>0</uMathLib>
  259. <TextAddressRange></TextAddressRange>
  260. <DataAddressRange></DataAddressRange>
  261. <BSSAddressRange></BSSAddressRange>
  262. <IncludeLibs></IncludeLibs>
  263. <IncludeDir></IncludeDir>
  264. <Misc></Misc>
  265. <ScatterFile></ScatterFile>
  266. </LDarm>
  267. </TargetArm>
  268. </TargetOption>
  269. <Groups>
  270. <Group>
  271. <GroupName>Kernel</GroupName>
  272. <Files>
  273. <File>
  274. <FileName>rt_CMSIS.c</FileName>
  275. <FileType>1</FileType>
  276. <FilePath>../rt_CMSIS.c</FilePath>
  277. <FileOption>
  278. <CommonProperty>
  279. <UseCPPCompiler>2</UseCPPCompiler>
  280. <RVCTCodeConst>0</RVCTCodeConst>
  281. <RVCTZI>0</RVCTZI>
  282. <RVCTOtherData>0</RVCTOtherData>
  283. <ModuleSelection>0</ModuleSelection>
  284. <IncludeInBuild>2</IncludeInBuild>
  285. <AlwaysBuild>2</AlwaysBuild>
  286. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  287. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  288. <PublicsOnly>2</PublicsOnly>
  289. <StopOnExitCode>11</StopOnExitCode>
  290. <CustomArgument></CustomArgument>
  291. <IncludeLibraryModules></IncludeLibraryModules>
  292. <ComprImg>1</ComprImg>
  293. </CommonProperty>
  294. <FileArm>
  295. <Carm>
  296. <arpcs>2</arpcs>
  297. <stkchk>2</stkchk>
  298. <reentr>2</reentr>
  299. <interw>2</interw>
  300. <bigend>2</bigend>
  301. <Strict>0</Strict>
  302. <Optim>0</Optim>
  303. <wLevel>0</wLevel>
  304. <uThumb>2</uThumb>
  305. <VariousControls>
  306. <MiscControls></MiscControls>
  307. <Define></Define>
  308. <Undefine></Undefine>
  309. <IncludePath>..\..\INC</IncludePath>
  310. </VariousControls>
  311. </Carm>
  312. </FileArm>
  313. </FileOption>
  314. </File>
  315. <File>
  316. <FileName>rt_Task.c</FileName>
  317. <FileType>1</FileType>
  318. <FilePath>../rt_Task.c</FilePath>
  319. </File>
  320. <File>
  321. <FileName>rt_System.c</FileName>
  322. <FileType>1</FileType>
  323. <FilePath>../rt_System.c</FilePath>
  324. </File>
  325. <File>
  326. <FileName>rt_Event.c</FileName>
  327. <FileType>1</FileType>
  328. <FilePath>../rt_Event.c</FilePath>
  329. </File>
  330. <File>
  331. <FileName>rt_List.c</FileName>
  332. <FileType>1</FileType>
  333. <FilePath>../rt_List.c</FilePath>
  334. </File>
  335. <File>
  336. <FileName>rt_Mailbox.c</FileName>
  337. <FileType>1</FileType>
  338. <FilePath>../rt_Mailbox.c</FilePath>
  339. </File>
  340. <File>
  341. <FileName>rt_Semaphore.c</FileName>
  342. <FileType>1</FileType>
  343. <FilePath>../rt_Semaphore.c</FilePath>
  344. </File>
  345. <File>
  346. <FileName>rt_Time.c</FileName>
  347. <FileType>1</FileType>
  348. <FilePath>../rt_Time.c</FilePath>
  349. </File>
  350. <File>
  351. <FileName>rt_Timer.c</FileName>
  352. <FileType>1</FileType>
  353. <FilePath>../rt_Timer.c</FilePath>
  354. </File>
  355. <File>
  356. <FileName>rt_Mutex.c</FileName>
  357. <FileType>1</FileType>
  358. <FilePath>../rt_Mutex.c</FilePath>
  359. </File>
  360. <File>
  361. <FileName>rt_Robin.c</FileName>
  362. <FileType>1</FileType>
  363. <FilePath>../rt_Robin.c</FilePath>
  364. </File>
  365. <File>
  366. <FileName>rt_MemBox.c</FileName>
  367. <FileType>1</FileType>
  368. <FilePath>../rt_MemBox.c</FilePath>
  369. </File>
  370. <File>
  371. <FileName>rt_Memory.c</FileName>
  372. <FileType>1</FileType>
  373. <FilePath>../rt_Memory.c</FilePath>
  374. </File>
  375. </Files>
  376. </Group>
  377. <Group>
  378. <GroupName>HAL</GroupName>
  379. <Files>
  380. <File>
  381. <FileName>SVC_Table.S</FileName>
  382. <FileType>2</FileType>
  383. <FilePath>.\SVC_Table.S</FilePath>
  384. </File>
  385. <File>
  386. <FileName>HAL_CM.c</FileName>
  387. <FileType>1</FileType>
  388. <FilePath>../HAL_CM.c</FilePath>
  389. </File>
  390. <File>
  391. <FileName>HAL_CM0.S</FileName>
  392. <FileType>2</FileType>
  393. <FilePath>.\HAL_CM0.S</FilePath>
  394. </File>
  395. <File>
  396. <FileName>HAL_CM3.S</FileName>
  397. <FileType>2</FileType>
  398. <FilePath>.\HAL_CM3.S</FilePath>
  399. <FileOption>
  400. <CommonProperty>
  401. <UseCPPCompiler>2</UseCPPCompiler>
  402. <RVCTCodeConst>0</RVCTCodeConst>
  403. <RVCTZI>0</RVCTZI>
  404. <RVCTOtherData>0</RVCTOtherData>
  405. <ModuleSelection>0</ModuleSelection>
  406. <IncludeInBuild>0</IncludeInBuild>
  407. <AlwaysBuild>2</AlwaysBuild>
  408. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  409. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  410. <PublicsOnly>2</PublicsOnly>
  411. <StopOnExitCode>11</StopOnExitCode>
  412. <CustomArgument></CustomArgument>
  413. <IncludeLibraryModules></IncludeLibraryModules>
  414. <ComprImg>1</ComprImg>
  415. </CommonProperty>
  416. <FileArm>
  417. <Aarm>
  418. <bBE>2</bBE>
  419. <interw>2</interw>
  420. <VariousControls>
  421. <MiscControls></MiscControls>
  422. <Define></Define>
  423. <Undefine></Undefine>
  424. <IncludePath></IncludePath>
  425. </VariousControls>
  426. </Aarm>
  427. </FileArm>
  428. </FileOption>
  429. </File>
  430. <File>
  431. <FileName>HAL_CM4.S</FileName>
  432. <FileType>2</FileType>
  433. <FilePath>.\HAL_CM4.S</FilePath>
  434. <FileOption>
  435. <CommonProperty>
  436. <UseCPPCompiler>2</UseCPPCompiler>
  437. <RVCTCodeConst>0</RVCTCodeConst>
  438. <RVCTZI>0</RVCTZI>
  439. <RVCTOtherData>0</RVCTOtherData>
  440. <ModuleSelection>0</ModuleSelection>
  441. <IncludeInBuild>0</IncludeInBuild>
  442. <AlwaysBuild>2</AlwaysBuild>
  443. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  444. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  445. <PublicsOnly>2</PublicsOnly>
  446. <StopOnExitCode>11</StopOnExitCode>
  447. <CustomArgument></CustomArgument>
  448. <IncludeLibraryModules></IncludeLibraryModules>
  449. <ComprImg>1</ComprImg>
  450. </CommonProperty>
  451. <FileArm>
  452. <Aarm>
  453. <bBE>2</bBE>
  454. <interw>2</interw>
  455. <VariousControls>
  456. <MiscControls></MiscControls>
  457. <Define></Define>
  458. <Undefine></Undefine>
  459. <IncludePath></IncludePath>
  460. </VariousControls>
  461. </Aarm>
  462. </FileArm>
  463. </FileOption>
  464. </File>
  465. </Files>
  466. </Group>
  467. <Group>
  468. <GroupName>::CMSIS</GroupName>
  469. </Group>
  470. </Groups>
  471. </Target>
  472. <Target>
  473. <TargetName>CM0_BE</TargetName>
  474. <ToolsetNumber>0x3</ToolsetNumber>
  475. <ToolsetName>ARM-GNU</ToolsetName>
  476. <TargetOption>
  477. <TargetCommonOption>
  478. <Device>ARMCM0</Device>
  479. <Vendor>ARM</Vendor>
  480. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  481. <PackURL>http://www.keil.com/pack/</PackURL>
  482. <Cpu>IROM(0x00000000,0x40000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M0") CLOCK(12000000) ESEL ELITTLE</Cpu>
  483. <FlashUtilSpec></FlashUtilSpec>
  484. <StartupFile></StartupFile>
  485. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL040000 -FP0($$Device:ARMCM0$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  486. <DeviceId>0</DeviceId>
  487. <RegisterFile>$$Device:ARMCM0$Device\ARM\ARMCM0\Include\ARMCM0.h</RegisterFile>
  488. <MemoryEnv></MemoryEnv>
  489. <Cmp></Cmp>
  490. <Asm></Asm>
  491. <Linker></Linker>
  492. <OHString></OHString>
  493. <InfinionOptionDll></InfinionOptionDll>
  494. <SLE66CMisc></SLE66CMisc>
  495. <SLE66AMisc></SLE66AMisc>
  496. <SLE66LinkerMisc></SLE66LinkerMisc>
  497. <SFDFile>$$Device:ARMCM0$Device\ARM\SVD\ARMCM0.svd</SFDFile>
  498. <bCustSvd>0</bCustSvd>
  499. <UseEnv>0</UseEnv>
  500. <BinPath></BinPath>
  501. <IncludePath></IncludePath>
  502. <LibPath></LibPath>
  503. <RegisterFilePath></RegisterFilePath>
  504. <DBRegisterFilePath></DBRegisterFilePath>
  505. <TargetStatus>
  506. <Error>0</Error>
  507. <ExitCodeStop>0</ExitCodeStop>
  508. <ButtonStop>0</ButtonStop>
  509. <NotGenerated>0</NotGenerated>
  510. <InvalidFlash>1</InvalidFlash>
  511. </TargetStatus>
  512. <OutputDirectory>.\CM0_BE\</OutputDirectory>
  513. <OutputName>RTX_CM0_B</OutputName>
  514. <CreateExecutable>0</CreateExecutable>
  515. <CreateLib>1</CreateLib>
  516. <CreateHexFile>0</CreateHexFile>
  517. <DebugInformation>1</DebugInformation>
  518. <BrowseInformation>0</BrowseInformation>
  519. <ListingPath>.\CM0_BE\</ListingPath>
  520. <HexFormatSelection>1</HexFormatSelection>
  521. <Merge32K>0</Merge32K>
  522. <CreateBatchFile>0</CreateBatchFile>
  523. <BeforeCompile>
  524. <RunUserProg1>0</RunUserProg1>
  525. <RunUserProg2>0</RunUserProg2>
  526. <UserProg1Name></UserProg1Name>
  527. <UserProg2Name></UserProg2Name>
  528. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  529. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  530. <nStopU1X>0</nStopU1X>
  531. <nStopU2X>0</nStopU2X>
  532. </BeforeCompile>
  533. <BeforeMake>
  534. <RunUserProg1>0</RunUserProg1>
  535. <RunUserProg2>0</RunUserProg2>
  536. <UserProg1Name></UserProg1Name>
  537. <UserProg2Name></UserProg2Name>
  538. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  539. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  540. <nStopB1X>0</nStopB1X>
  541. <nStopB2X>0</nStopB2X>
  542. </BeforeMake>
  543. <AfterMake>
  544. <RunUserProg1>1</RunUserProg1>
  545. <RunUserProg2>0</RunUserProg2>
  546. <UserProg1Name>cmd.exe /C copy CM0_BE\libRTX_CM0_B.a ..\..\LIB\GCC\</UserProg1Name>
  547. <UserProg2Name></UserProg2Name>
  548. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  549. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  550. <nStopA1X>0</nStopA1X>
  551. <nStopA2X>0</nStopA2X>
  552. </AfterMake>
  553. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  554. <SVCSIdString></SVCSIdString>
  555. </TargetCommonOption>
  556. <CommonProperty>
  557. <UseCPPCompiler>0</UseCPPCompiler>
  558. <RVCTCodeConst>0</RVCTCodeConst>
  559. <RVCTZI>0</RVCTZI>
  560. <RVCTOtherData>0</RVCTOtherData>
  561. <ModuleSelection>0</ModuleSelection>
  562. <IncludeInBuild>1</IncludeInBuild>
  563. <AlwaysBuild>0</AlwaysBuild>
  564. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  565. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  566. <PublicsOnly>0</PublicsOnly>
  567. <StopOnExitCode>3</StopOnExitCode>
  568. <CustomArgument></CustomArgument>
  569. <IncludeLibraryModules></IncludeLibraryModules>
  570. <ComprImg>1</ComprImg>
  571. </CommonProperty>
  572. <DllOption>
  573. <SimDllName>SARMCM3.DLL</SimDllName>
  574. <SimDllArguments> </SimDllArguments>
  575. <SimDlgDll>DARMCM1.DLL</SimDlgDll>
  576. <SimDlgDllArguments>-pCM0</SimDlgDllArguments>
  577. <TargetDllName>SARMCM3.DLL</TargetDllName>
  578. <TargetDllArguments> </TargetDllArguments>
  579. <TargetDlgDll>TARMCM1.DLL</TargetDlgDll>
  580. <TargetDlgDllArguments>-pCM0</TargetDlgDllArguments>
  581. </DllOption>
  582. <DebugOption>
  583. <OPTHX>
  584. <HexSelection>1</HexSelection>
  585. <HexRangeLowAddress>0</HexRangeLowAddress>
  586. <HexRangeHighAddress>0</HexRangeHighAddress>
  587. <HexOffset>0</HexOffset>
  588. <Oh166RecLen>16</Oh166RecLen>
  589. </OPTHX>
  590. </DebugOption>
  591. <Utilities>
  592. <Flash1>
  593. <UseTargetDll>1</UseTargetDll>
  594. <UseExternalTool>0</UseExternalTool>
  595. <RunIndependent>0</RunIndependent>
  596. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  597. <Capability>0</Capability>
  598. <DriverSelection>-1</DriverSelection>
  599. </Flash1>
  600. <bUseTDR>1</bUseTDR>
  601. <Flash2>BIN\UL2CM3.DLL</Flash2>
  602. <Flash3></Flash3>
  603. <Flash4></Flash4>
  604. <pFcarmOut></pFcarmOut>
  605. <pFcarmGrp></pFcarmGrp>
  606. <pFcArmRoot></pFcArmRoot>
  607. <FcArmLst>0</FcArmLst>
  608. </Utilities>
  609. <TargetArm>
  610. <ArmMisc>
  611. <asLst>0</asLst>
  612. <asHll>1</asHll>
  613. <asAsm>1</asAsm>
  614. <asMacX>1</asMacX>
  615. <asSyms>1</asSyms>
  616. <asFals>1</asFals>
  617. <asDbgD>1</asDbgD>
  618. <asForm>1</asForm>
  619. <ldLst>0</ldLst>
  620. <ldmm>1</ldmm>
  621. <ldXref>1</ldXref>
  622. <BigEnd>1</BigEnd>
  623. <GCPUTYP>"Cortex-M0"</GCPUTYP>
  624. <mOS>0</mOS>
  625. <uocRom>0</uocRom>
  626. <uocRam>0</uocRam>
  627. <hadIROM>1</hadIROM>
  628. <hadIRAM>1</hadIRAM>
  629. <hadXRAM>0</hadXRAM>
  630. <uocXRam>0</uocXRam>
  631. <RvdsVP>0</RvdsVP>
  632. <hadIRAM2>0</hadIRAM2>
  633. <hadIROM2>0</hadIROM2>
  634. <OnChipMemories>
  635. <Ocm1>
  636. <Type>0</Type>
  637. <StartAddress>0x0</StartAddress>
  638. <Size>0x0</Size>
  639. </Ocm1>
  640. <Ocm2>
  641. <Type>0</Type>
  642. <StartAddress>0x0</StartAddress>
  643. <Size>0x0</Size>
  644. </Ocm2>
  645. <Ocm3>
  646. <Type>0</Type>
  647. <StartAddress>0x0</StartAddress>
  648. <Size>0x0</Size>
  649. </Ocm3>
  650. <Ocm4>
  651. <Type>0</Type>
  652. <StartAddress>0x0</StartAddress>
  653. <Size>0x0</Size>
  654. </Ocm4>
  655. <Ocm5>
  656. <Type>0</Type>
  657. <StartAddress>0x0</StartAddress>
  658. <Size>0x0</Size>
  659. </Ocm5>
  660. <Ocm6>
  661. <Type>0</Type>
  662. <StartAddress>0x0</StartAddress>
  663. <Size>0x0</Size>
  664. </Ocm6>
  665. <IRAM>
  666. <Type>0</Type>
  667. <StartAddress>0x20000000</StartAddress>
  668. <Size>0x20000</Size>
  669. </IRAM>
  670. <IROM>
  671. <Type>1</Type>
  672. <StartAddress>0x0</StartAddress>
  673. <Size>0x40000</Size>
  674. </IROM>
  675. <XRAM>
  676. <Type>0</Type>
  677. <StartAddress>0x0</StartAddress>
  678. <Size>0x0</Size>
  679. </XRAM>
  680. <IRAM2>
  681. <Type>0</Type>
  682. <StartAddress>0x0</StartAddress>
  683. <Size>0x0</Size>
  684. </IRAM2>
  685. <IROM2>
  686. <Type>0</Type>
  687. <StartAddress>0x0</StartAddress>
  688. <Size>0x0</Size>
  689. </IROM2>
  690. </OnChipMemories>
  691. </ArmMisc>
  692. <Carm>
  693. <arpcs>0</arpcs>
  694. <stkchk>0</stkchk>
  695. <reentr>0</reentr>
  696. <interw>0</interw>
  697. <bigend>0</bigend>
  698. <Strict>0</Strict>
  699. <Optim>5</Optim>
  700. <wLevel>2</wLevel>
  701. <uThumb>1</uThumb>
  702. <VariousControls>
  703. <MiscControls>-ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  704. <Define>__CORTEX_M0 __CMSIS_RTOS</Define>
  705. <Undefine></Undefine>
  706. <IncludePath></IncludePath>
  707. </VariousControls>
  708. </Carm>
  709. <Aarm>
  710. <bBE>0</bBE>
  711. <interw>0</interw>
  712. <VariousControls>
  713. <MiscControls></MiscControls>
  714. <Define>__CORTEX_M0 __CMSIS_RTOS</Define>
  715. <Undefine></Undefine>
  716. <IncludePath></IncludePath>
  717. </VariousControls>
  718. </Aarm>
  719. <LDarm>
  720. <umfTarg>1</umfTarg>
  721. <enaGarb>1</enaGarb>
  722. <noStart>1</noStart>
  723. <noStLib>0</noStLib>
  724. <uMathLib>0</uMathLib>
  725. <TextAddressRange></TextAddressRange>
  726. <DataAddressRange></DataAddressRange>
  727. <BSSAddressRange></BSSAddressRange>
  728. <IncludeLibs></IncludeLibs>
  729. <IncludeDir></IncludeDir>
  730. <Misc></Misc>
  731. <ScatterFile></ScatterFile>
  732. </LDarm>
  733. </TargetArm>
  734. </TargetOption>
  735. <Groups>
  736. <Group>
  737. <GroupName>Kernel</GroupName>
  738. <Files>
  739. <File>
  740. <FileName>rt_CMSIS.c</FileName>
  741. <FileType>1</FileType>
  742. <FilePath>../rt_CMSIS.c</FilePath>
  743. <FileOption>
  744. <CommonProperty>
  745. <UseCPPCompiler>2</UseCPPCompiler>
  746. <RVCTCodeConst>0</RVCTCodeConst>
  747. <RVCTZI>0</RVCTZI>
  748. <RVCTOtherData>0</RVCTOtherData>
  749. <ModuleSelection>0</ModuleSelection>
  750. <IncludeInBuild>2</IncludeInBuild>
  751. <AlwaysBuild>2</AlwaysBuild>
  752. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  753. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  754. <PublicsOnly>2</PublicsOnly>
  755. <StopOnExitCode>11</StopOnExitCode>
  756. <CustomArgument></CustomArgument>
  757. <IncludeLibraryModules></IncludeLibraryModules>
  758. <ComprImg>1</ComprImg>
  759. </CommonProperty>
  760. <FileArm>
  761. <Carm>
  762. <arpcs>2</arpcs>
  763. <stkchk>2</stkchk>
  764. <reentr>2</reentr>
  765. <interw>2</interw>
  766. <bigend>2</bigend>
  767. <Strict>0</Strict>
  768. <Optim>0</Optim>
  769. <wLevel>0</wLevel>
  770. <uThumb>2</uThumb>
  771. <VariousControls>
  772. <MiscControls></MiscControls>
  773. <Define></Define>
  774. <Undefine></Undefine>
  775. <IncludePath>..\..\INC</IncludePath>
  776. </VariousControls>
  777. </Carm>
  778. </FileArm>
  779. </FileOption>
  780. </File>
  781. <File>
  782. <FileName>rt_Task.c</FileName>
  783. <FileType>1</FileType>
  784. <FilePath>../rt_Task.c</FilePath>
  785. </File>
  786. <File>
  787. <FileName>rt_System.c</FileName>
  788. <FileType>1</FileType>
  789. <FilePath>../rt_System.c</FilePath>
  790. </File>
  791. <File>
  792. <FileName>rt_Event.c</FileName>
  793. <FileType>1</FileType>
  794. <FilePath>../rt_Event.c</FilePath>
  795. </File>
  796. <File>
  797. <FileName>rt_List.c</FileName>
  798. <FileType>1</FileType>
  799. <FilePath>../rt_List.c</FilePath>
  800. </File>
  801. <File>
  802. <FileName>rt_Mailbox.c</FileName>
  803. <FileType>1</FileType>
  804. <FilePath>../rt_Mailbox.c</FilePath>
  805. </File>
  806. <File>
  807. <FileName>rt_Semaphore.c</FileName>
  808. <FileType>1</FileType>
  809. <FilePath>../rt_Semaphore.c</FilePath>
  810. </File>
  811. <File>
  812. <FileName>rt_Time.c</FileName>
  813. <FileType>1</FileType>
  814. <FilePath>../rt_Time.c</FilePath>
  815. </File>
  816. <File>
  817. <FileName>rt_Timer.c</FileName>
  818. <FileType>1</FileType>
  819. <FilePath>../rt_Timer.c</FilePath>
  820. </File>
  821. <File>
  822. <FileName>rt_Mutex.c</FileName>
  823. <FileType>1</FileType>
  824. <FilePath>../rt_Mutex.c</FilePath>
  825. </File>
  826. <File>
  827. <FileName>rt_Robin.c</FileName>
  828. <FileType>1</FileType>
  829. <FilePath>../rt_Robin.c</FilePath>
  830. </File>
  831. <File>
  832. <FileName>rt_MemBox.c</FileName>
  833. <FileType>1</FileType>
  834. <FilePath>../rt_MemBox.c</FilePath>
  835. </File>
  836. <File>
  837. <FileName>rt_Memory.c</FileName>
  838. <FileType>1</FileType>
  839. <FilePath>../rt_Memory.c</FilePath>
  840. </File>
  841. </Files>
  842. </Group>
  843. <Group>
  844. <GroupName>HAL</GroupName>
  845. <Files>
  846. <File>
  847. <FileName>SVC_Table.S</FileName>
  848. <FileType>2</FileType>
  849. <FilePath>.\SVC_Table.S</FilePath>
  850. </File>
  851. <File>
  852. <FileName>HAL_CM.c</FileName>
  853. <FileType>1</FileType>
  854. <FilePath>../HAL_CM.c</FilePath>
  855. </File>
  856. <File>
  857. <FileName>HAL_CM0.S</FileName>
  858. <FileType>2</FileType>
  859. <FilePath>.\HAL_CM0.S</FilePath>
  860. </File>
  861. <File>
  862. <FileName>HAL_CM3.S</FileName>
  863. <FileType>2</FileType>
  864. <FilePath>.\HAL_CM3.S</FilePath>
  865. <FileOption>
  866. <CommonProperty>
  867. <UseCPPCompiler>2</UseCPPCompiler>
  868. <RVCTCodeConst>0</RVCTCodeConst>
  869. <RVCTZI>0</RVCTZI>
  870. <RVCTOtherData>0</RVCTOtherData>
  871. <ModuleSelection>0</ModuleSelection>
  872. <IncludeInBuild>0</IncludeInBuild>
  873. <AlwaysBuild>2</AlwaysBuild>
  874. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  875. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  876. <PublicsOnly>2</PublicsOnly>
  877. <StopOnExitCode>11</StopOnExitCode>
  878. <CustomArgument></CustomArgument>
  879. <IncludeLibraryModules></IncludeLibraryModules>
  880. <ComprImg>1</ComprImg>
  881. </CommonProperty>
  882. <FileArm>
  883. <Aarm>
  884. <bBE>2</bBE>
  885. <interw>2</interw>
  886. <VariousControls>
  887. <MiscControls></MiscControls>
  888. <Define></Define>
  889. <Undefine></Undefine>
  890. <IncludePath></IncludePath>
  891. </VariousControls>
  892. </Aarm>
  893. </FileArm>
  894. </FileOption>
  895. </File>
  896. <File>
  897. <FileName>HAL_CM4.S</FileName>
  898. <FileType>2</FileType>
  899. <FilePath>.\HAL_CM4.S</FilePath>
  900. <FileOption>
  901. <CommonProperty>
  902. <UseCPPCompiler>2</UseCPPCompiler>
  903. <RVCTCodeConst>0</RVCTCodeConst>
  904. <RVCTZI>0</RVCTZI>
  905. <RVCTOtherData>0</RVCTOtherData>
  906. <ModuleSelection>0</ModuleSelection>
  907. <IncludeInBuild>0</IncludeInBuild>
  908. <AlwaysBuild>2</AlwaysBuild>
  909. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  910. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  911. <PublicsOnly>2</PublicsOnly>
  912. <StopOnExitCode>11</StopOnExitCode>
  913. <CustomArgument></CustomArgument>
  914. <IncludeLibraryModules></IncludeLibraryModules>
  915. <ComprImg>1</ComprImg>
  916. </CommonProperty>
  917. <FileArm>
  918. <Aarm>
  919. <bBE>2</bBE>
  920. <interw>2</interw>
  921. <VariousControls>
  922. <MiscControls></MiscControls>
  923. <Define></Define>
  924. <Undefine></Undefine>
  925. <IncludePath></IncludePath>
  926. </VariousControls>
  927. </Aarm>
  928. </FileArm>
  929. </FileOption>
  930. </File>
  931. </Files>
  932. </Group>
  933. <Group>
  934. <GroupName>::CMSIS</GroupName>
  935. </Group>
  936. </Groups>
  937. </Target>
  938. <Target>
  939. <TargetName>CM3_LE</TargetName>
  940. <ToolsetNumber>0x3</ToolsetNumber>
  941. <ToolsetName>ARM-GNU</ToolsetName>
  942. <TargetOption>
  943. <TargetCommonOption>
  944. <Device>ARMCM3</Device>
  945. <Vendor>ARM</Vendor>
  946. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  947. <PackURL>http://www.keil.com/pack/</PackURL>
  948. <Cpu>IROM(0x00000000,0x40000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M3") CLOCK(12000000) ESEL ELITTLE</Cpu>
  949. <FlashUtilSpec></FlashUtilSpec>
  950. <StartupFile></StartupFile>
  951. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL040000 -FP0($$Device:ARMCM3$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  952. <DeviceId>0</DeviceId>
  953. <RegisterFile>$$Device:ARMCM3$Device\ARM\ARMCM3\Include\ARMCM3.h</RegisterFile>
  954. <MemoryEnv></MemoryEnv>
  955. <Cmp></Cmp>
  956. <Asm></Asm>
  957. <Linker></Linker>
  958. <OHString></OHString>
  959. <InfinionOptionDll></InfinionOptionDll>
  960. <SLE66CMisc></SLE66CMisc>
  961. <SLE66AMisc></SLE66AMisc>
  962. <SLE66LinkerMisc></SLE66LinkerMisc>
  963. <SFDFile>$$Device:ARMCM3$Device\ARM\SVD\ARMCM3.svd</SFDFile>
  964. <bCustSvd>0</bCustSvd>
  965. <UseEnv>0</UseEnv>
  966. <BinPath></BinPath>
  967. <IncludePath></IncludePath>
  968. <LibPath></LibPath>
  969. <RegisterFilePath></RegisterFilePath>
  970. <DBRegisterFilePath></DBRegisterFilePath>
  971. <TargetStatus>
  972. <Error>0</Error>
  973. <ExitCodeStop>0</ExitCodeStop>
  974. <ButtonStop>0</ButtonStop>
  975. <NotGenerated>0</NotGenerated>
  976. <InvalidFlash>1</InvalidFlash>
  977. </TargetStatus>
  978. <OutputDirectory>.\CM3_LE\</OutputDirectory>
  979. <OutputName>RTX_CM3</OutputName>
  980. <CreateExecutable>0</CreateExecutable>
  981. <CreateLib>1</CreateLib>
  982. <CreateHexFile>0</CreateHexFile>
  983. <DebugInformation>1</DebugInformation>
  984. <BrowseInformation>0</BrowseInformation>
  985. <ListingPath>.\CM3_LE\</ListingPath>
  986. <HexFormatSelection>1</HexFormatSelection>
  987. <Merge32K>0</Merge32K>
  988. <CreateBatchFile>0</CreateBatchFile>
  989. <BeforeCompile>
  990. <RunUserProg1>0</RunUserProg1>
  991. <RunUserProg2>0</RunUserProg2>
  992. <UserProg1Name></UserProg1Name>
  993. <UserProg2Name></UserProg2Name>
  994. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  995. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  996. <nStopU1X>0</nStopU1X>
  997. <nStopU2X>0</nStopU2X>
  998. </BeforeCompile>
  999. <BeforeMake>
  1000. <RunUserProg1>0</RunUserProg1>
  1001. <RunUserProg2>0</RunUserProg2>
  1002. <UserProg1Name></UserProg1Name>
  1003. <UserProg2Name></UserProg2Name>
  1004. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1005. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1006. <nStopB1X>0</nStopB1X>
  1007. <nStopB2X>0</nStopB2X>
  1008. </BeforeMake>
  1009. <AfterMake>
  1010. <RunUserProg1>1</RunUserProg1>
  1011. <RunUserProg2>0</RunUserProg2>
  1012. <UserProg1Name>cmd.exe /C copy CM3_LE\libRTX_CM3.a ..\..\LIB\GCC\</UserProg1Name>
  1013. <UserProg2Name></UserProg2Name>
  1014. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1015. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1016. <nStopA1X>0</nStopA1X>
  1017. <nStopA2X>0</nStopA2X>
  1018. </AfterMake>
  1019. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  1020. <SVCSIdString></SVCSIdString>
  1021. </TargetCommonOption>
  1022. <CommonProperty>
  1023. <UseCPPCompiler>0</UseCPPCompiler>
  1024. <RVCTCodeConst>0</RVCTCodeConst>
  1025. <RVCTZI>0</RVCTZI>
  1026. <RVCTOtherData>0</RVCTOtherData>
  1027. <ModuleSelection>0</ModuleSelection>
  1028. <IncludeInBuild>1</IncludeInBuild>
  1029. <AlwaysBuild>0</AlwaysBuild>
  1030. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  1031. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  1032. <PublicsOnly>0</PublicsOnly>
  1033. <StopOnExitCode>3</StopOnExitCode>
  1034. <CustomArgument></CustomArgument>
  1035. <IncludeLibraryModules></IncludeLibraryModules>
  1036. <ComprImg>1</ComprImg>
  1037. </CommonProperty>
  1038. <DllOption>
  1039. <SimDllName>SARMCM3.DLL</SimDllName>
  1040. <SimDllArguments> -MPU</SimDllArguments>
  1041. <SimDlgDll>DCM.DLL</SimDlgDll>
  1042. <SimDlgDllArguments>-pCM3</SimDlgDllArguments>
  1043. <TargetDllName>SARMCM3.DLL</TargetDllName>
  1044. <TargetDllArguments> -MPU</TargetDllArguments>
  1045. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  1046. <TargetDlgDllArguments>-pCM3</TargetDlgDllArguments>
  1047. </DllOption>
  1048. <DebugOption>
  1049. <OPTHX>
  1050. <HexSelection>1</HexSelection>
  1051. <HexRangeLowAddress>0</HexRangeLowAddress>
  1052. <HexRangeHighAddress>0</HexRangeHighAddress>
  1053. <HexOffset>0</HexOffset>
  1054. <Oh166RecLen>16</Oh166RecLen>
  1055. </OPTHX>
  1056. </DebugOption>
  1057. <Utilities>
  1058. <Flash1>
  1059. <UseTargetDll>1</UseTargetDll>
  1060. <UseExternalTool>0</UseExternalTool>
  1061. <RunIndependent>0</RunIndependent>
  1062. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  1063. <Capability>0</Capability>
  1064. <DriverSelection>-1</DriverSelection>
  1065. </Flash1>
  1066. <bUseTDR>1</bUseTDR>
  1067. <Flash2>BIN\UL2CM3.DLL</Flash2>
  1068. <Flash3></Flash3>
  1069. <Flash4></Flash4>
  1070. <pFcarmOut></pFcarmOut>
  1071. <pFcarmGrp></pFcarmGrp>
  1072. <pFcArmRoot></pFcArmRoot>
  1073. <FcArmLst>0</FcArmLst>
  1074. </Utilities>
  1075. <TargetArm>
  1076. <ArmMisc>
  1077. <asLst>0</asLst>
  1078. <asHll>1</asHll>
  1079. <asAsm>1</asAsm>
  1080. <asMacX>1</asMacX>
  1081. <asSyms>1</asSyms>
  1082. <asFals>1</asFals>
  1083. <asDbgD>1</asDbgD>
  1084. <asForm>1</asForm>
  1085. <ldLst>0</ldLst>
  1086. <ldmm>1</ldmm>
  1087. <ldXref>1</ldXref>
  1088. <BigEnd>0</BigEnd>
  1089. <GCPUTYP>"Cortex-M3"</GCPUTYP>
  1090. <mOS>0</mOS>
  1091. <uocRom>0</uocRom>
  1092. <uocRam>0</uocRam>
  1093. <hadIROM>1</hadIROM>
  1094. <hadIRAM>1</hadIRAM>
  1095. <hadXRAM>0</hadXRAM>
  1096. <uocXRam>0</uocXRam>
  1097. <RvdsVP>0</RvdsVP>
  1098. <hadIRAM2>0</hadIRAM2>
  1099. <hadIROM2>0</hadIROM2>
  1100. <OnChipMemories>
  1101. <Ocm1>
  1102. <Type>0</Type>
  1103. <StartAddress>0x0</StartAddress>
  1104. <Size>0x0</Size>
  1105. </Ocm1>
  1106. <Ocm2>
  1107. <Type>0</Type>
  1108. <StartAddress>0x0</StartAddress>
  1109. <Size>0x0</Size>
  1110. </Ocm2>
  1111. <Ocm3>
  1112. <Type>0</Type>
  1113. <StartAddress>0x0</StartAddress>
  1114. <Size>0x0</Size>
  1115. </Ocm3>
  1116. <Ocm4>
  1117. <Type>0</Type>
  1118. <StartAddress>0x0</StartAddress>
  1119. <Size>0x0</Size>
  1120. </Ocm4>
  1121. <Ocm5>
  1122. <Type>0</Type>
  1123. <StartAddress>0x0</StartAddress>
  1124. <Size>0x0</Size>
  1125. </Ocm5>
  1126. <Ocm6>
  1127. <Type>0</Type>
  1128. <StartAddress>0x0</StartAddress>
  1129. <Size>0x0</Size>
  1130. </Ocm6>
  1131. <IRAM>
  1132. <Type>0</Type>
  1133. <StartAddress>0x20000000</StartAddress>
  1134. <Size>0x20000</Size>
  1135. </IRAM>
  1136. <IROM>
  1137. <Type>1</Type>
  1138. <StartAddress>0x0</StartAddress>
  1139. <Size>0x40000</Size>
  1140. </IROM>
  1141. <XRAM>
  1142. <Type>0</Type>
  1143. <StartAddress>0x0</StartAddress>
  1144. <Size>0x0</Size>
  1145. </XRAM>
  1146. <IRAM2>
  1147. <Type>0</Type>
  1148. <StartAddress>0x0</StartAddress>
  1149. <Size>0x0</Size>
  1150. </IRAM2>
  1151. <IROM2>
  1152. <Type>0</Type>
  1153. <StartAddress>0x0</StartAddress>
  1154. <Size>0x0</Size>
  1155. </IROM2>
  1156. </OnChipMemories>
  1157. </ArmMisc>
  1158. <Carm>
  1159. <arpcs>0</arpcs>
  1160. <stkchk>0</stkchk>
  1161. <reentr>0</reentr>
  1162. <interw>0</interw>
  1163. <bigend>0</bigend>
  1164. <Strict>0</Strict>
  1165. <Optim>5</Optim>
  1166. <wLevel>2</wLevel>
  1167. <uThumb>1</uThumb>
  1168. <VariousControls>
  1169. <MiscControls>-ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  1170. <Define>__CORTEX_M3 __CMSIS_RTOS DBG_MSG</Define>
  1171. <Undefine></Undefine>
  1172. <IncludePath></IncludePath>
  1173. </VariousControls>
  1174. </Carm>
  1175. <Aarm>
  1176. <bBE>0</bBE>
  1177. <interw>0</interw>
  1178. <VariousControls>
  1179. <MiscControls></MiscControls>
  1180. <Define>__CORTEX_M3 __CMSIS_RTOS</Define>
  1181. <Undefine></Undefine>
  1182. <IncludePath></IncludePath>
  1183. </VariousControls>
  1184. </Aarm>
  1185. <LDarm>
  1186. <umfTarg>1</umfTarg>
  1187. <enaGarb>1</enaGarb>
  1188. <noStart>1</noStart>
  1189. <noStLib>0</noStLib>
  1190. <uMathLib>0</uMathLib>
  1191. <TextAddressRange></TextAddressRange>
  1192. <DataAddressRange></DataAddressRange>
  1193. <BSSAddressRange></BSSAddressRange>
  1194. <IncludeLibs></IncludeLibs>
  1195. <IncludeDir></IncludeDir>
  1196. <Misc></Misc>
  1197. <ScatterFile></ScatterFile>
  1198. </LDarm>
  1199. </TargetArm>
  1200. </TargetOption>
  1201. <Groups>
  1202. <Group>
  1203. <GroupName>Kernel</GroupName>
  1204. <Files>
  1205. <File>
  1206. <FileName>rt_CMSIS.c</FileName>
  1207. <FileType>1</FileType>
  1208. <FilePath>../rt_CMSIS.c</FilePath>
  1209. <FileOption>
  1210. <CommonProperty>
  1211. <UseCPPCompiler>2</UseCPPCompiler>
  1212. <RVCTCodeConst>0</RVCTCodeConst>
  1213. <RVCTZI>0</RVCTZI>
  1214. <RVCTOtherData>0</RVCTOtherData>
  1215. <ModuleSelection>0</ModuleSelection>
  1216. <IncludeInBuild>2</IncludeInBuild>
  1217. <AlwaysBuild>2</AlwaysBuild>
  1218. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  1219. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  1220. <PublicsOnly>2</PublicsOnly>
  1221. <StopOnExitCode>11</StopOnExitCode>
  1222. <CustomArgument></CustomArgument>
  1223. <IncludeLibraryModules></IncludeLibraryModules>
  1224. <ComprImg>1</ComprImg>
  1225. </CommonProperty>
  1226. <FileArm>
  1227. <Carm>
  1228. <arpcs>2</arpcs>
  1229. <stkchk>2</stkchk>
  1230. <reentr>2</reentr>
  1231. <interw>2</interw>
  1232. <bigend>2</bigend>
  1233. <Strict>0</Strict>
  1234. <Optim>0</Optim>
  1235. <wLevel>0</wLevel>
  1236. <uThumb>2</uThumb>
  1237. <VariousControls>
  1238. <MiscControls></MiscControls>
  1239. <Define></Define>
  1240. <Undefine></Undefine>
  1241. <IncludePath>..\..\INC</IncludePath>
  1242. </VariousControls>
  1243. </Carm>
  1244. </FileArm>
  1245. </FileOption>
  1246. </File>
  1247. <File>
  1248. <FileName>rt_Task.c</FileName>
  1249. <FileType>1</FileType>
  1250. <FilePath>../rt_Task.c</FilePath>
  1251. </File>
  1252. <File>
  1253. <FileName>rt_System.c</FileName>
  1254. <FileType>1</FileType>
  1255. <FilePath>../rt_System.c</FilePath>
  1256. </File>
  1257. <File>
  1258. <FileName>rt_Event.c</FileName>
  1259. <FileType>1</FileType>
  1260. <FilePath>../rt_Event.c</FilePath>
  1261. </File>
  1262. <File>
  1263. <FileName>rt_List.c</FileName>
  1264. <FileType>1</FileType>
  1265. <FilePath>../rt_List.c</FilePath>
  1266. </File>
  1267. <File>
  1268. <FileName>rt_Mailbox.c</FileName>
  1269. <FileType>1</FileType>
  1270. <FilePath>../rt_Mailbox.c</FilePath>
  1271. </File>
  1272. <File>
  1273. <FileName>rt_Semaphore.c</FileName>
  1274. <FileType>1</FileType>
  1275. <FilePath>../rt_Semaphore.c</FilePath>
  1276. </File>
  1277. <File>
  1278. <FileName>rt_Time.c</FileName>
  1279. <FileType>1</FileType>
  1280. <FilePath>../rt_Time.c</FilePath>
  1281. </File>
  1282. <File>
  1283. <FileName>rt_Timer.c</FileName>
  1284. <FileType>1</FileType>
  1285. <FilePath>../rt_Timer.c</FilePath>
  1286. </File>
  1287. <File>
  1288. <FileName>rt_Mutex.c</FileName>
  1289. <FileType>1</FileType>
  1290. <FilePath>../rt_Mutex.c</FilePath>
  1291. </File>
  1292. <File>
  1293. <FileName>rt_Robin.c</FileName>
  1294. <FileType>1</FileType>
  1295. <FilePath>../rt_Robin.c</FilePath>
  1296. </File>
  1297. <File>
  1298. <FileName>rt_MemBox.c</FileName>
  1299. <FileType>1</FileType>
  1300. <FilePath>../rt_MemBox.c</FilePath>
  1301. </File>
  1302. <File>
  1303. <FileName>rt_Memory.c</FileName>
  1304. <FileType>1</FileType>
  1305. <FilePath>../rt_Memory.c</FilePath>
  1306. </File>
  1307. </Files>
  1308. </Group>
  1309. <Group>
  1310. <GroupName>HAL</GroupName>
  1311. <Files>
  1312. <File>
  1313. <FileName>SVC_Table.S</FileName>
  1314. <FileType>2</FileType>
  1315. <FilePath>.\SVC_Table.S</FilePath>
  1316. </File>
  1317. <File>
  1318. <FileName>HAL_CM.c</FileName>
  1319. <FileType>1</FileType>
  1320. <FilePath>../HAL_CM.c</FilePath>
  1321. </File>
  1322. <File>
  1323. <FileName>HAL_CM0.S</FileName>
  1324. <FileType>2</FileType>
  1325. <FilePath>.\HAL_CM0.S</FilePath>
  1326. <FileOption>
  1327. <CommonProperty>
  1328. <UseCPPCompiler>2</UseCPPCompiler>
  1329. <RVCTCodeConst>0</RVCTCodeConst>
  1330. <RVCTZI>0</RVCTZI>
  1331. <RVCTOtherData>0</RVCTOtherData>
  1332. <ModuleSelection>0</ModuleSelection>
  1333. <IncludeInBuild>0</IncludeInBuild>
  1334. <AlwaysBuild>2</AlwaysBuild>
  1335. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  1336. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  1337. <PublicsOnly>2</PublicsOnly>
  1338. <StopOnExitCode>11</StopOnExitCode>
  1339. <CustomArgument></CustomArgument>
  1340. <IncludeLibraryModules></IncludeLibraryModules>
  1341. <ComprImg>1</ComprImg>
  1342. </CommonProperty>
  1343. <FileArm>
  1344. <Aarm>
  1345. <bBE>2</bBE>
  1346. <interw>2</interw>
  1347. <VariousControls>
  1348. <MiscControls></MiscControls>
  1349. <Define></Define>
  1350. <Undefine></Undefine>
  1351. <IncludePath></IncludePath>
  1352. </VariousControls>
  1353. </Aarm>
  1354. </FileArm>
  1355. </FileOption>
  1356. </File>
  1357. <File>
  1358. <FileName>HAL_CM3.S</FileName>
  1359. <FileType>2</FileType>
  1360. <FilePath>.\HAL_CM3.S</FilePath>
  1361. </File>
  1362. <File>
  1363. <FileName>HAL_CM4.S</FileName>
  1364. <FileType>2</FileType>
  1365. <FilePath>.\HAL_CM4.S</FilePath>
  1366. <FileOption>
  1367. <CommonProperty>
  1368. <UseCPPCompiler>2</UseCPPCompiler>
  1369. <RVCTCodeConst>0</RVCTCodeConst>
  1370. <RVCTZI>0</RVCTZI>
  1371. <RVCTOtherData>0</RVCTOtherData>
  1372. <ModuleSelection>0</ModuleSelection>
  1373. <IncludeInBuild>0</IncludeInBuild>
  1374. <AlwaysBuild>2</AlwaysBuild>
  1375. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  1376. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  1377. <PublicsOnly>2</PublicsOnly>
  1378. <StopOnExitCode>11</StopOnExitCode>
  1379. <CustomArgument></CustomArgument>
  1380. <IncludeLibraryModules></IncludeLibraryModules>
  1381. <ComprImg>1</ComprImg>
  1382. </CommonProperty>
  1383. <FileArm>
  1384. <Aarm>
  1385. <bBE>2</bBE>
  1386. <interw>2</interw>
  1387. <VariousControls>
  1388. <MiscControls></MiscControls>
  1389. <Define></Define>
  1390. <Undefine></Undefine>
  1391. <IncludePath></IncludePath>
  1392. </VariousControls>
  1393. </Aarm>
  1394. </FileArm>
  1395. </FileOption>
  1396. </File>
  1397. </Files>
  1398. </Group>
  1399. <Group>
  1400. <GroupName>::CMSIS</GroupName>
  1401. </Group>
  1402. </Groups>
  1403. </Target>
  1404. <Target>
  1405. <TargetName>CM3_BE</TargetName>
  1406. <ToolsetNumber>0x3</ToolsetNumber>
  1407. <ToolsetName>ARM-GNU</ToolsetName>
  1408. <TargetOption>
  1409. <TargetCommonOption>
  1410. <Device>ARMCM3</Device>
  1411. <Vendor>ARM</Vendor>
  1412. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  1413. <PackURL>http://www.keil.com/pack/</PackURL>
  1414. <Cpu>IROM(0x00000000,0x40000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M3") CLOCK(12000000) ESEL ELITTLE</Cpu>
  1415. <FlashUtilSpec></FlashUtilSpec>
  1416. <StartupFile></StartupFile>
  1417. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL040000 -FP0($$Device:ARMCM3$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  1418. <DeviceId>0</DeviceId>
  1419. <RegisterFile>$$Device:ARMCM3$Device\ARM\ARMCM3\Include\ARMCM3.h</RegisterFile>
  1420. <MemoryEnv></MemoryEnv>
  1421. <Cmp></Cmp>
  1422. <Asm></Asm>
  1423. <Linker></Linker>
  1424. <OHString></OHString>
  1425. <InfinionOptionDll></InfinionOptionDll>
  1426. <SLE66CMisc></SLE66CMisc>
  1427. <SLE66AMisc></SLE66AMisc>
  1428. <SLE66LinkerMisc></SLE66LinkerMisc>
  1429. <SFDFile>$$Device:ARMCM3$Device\ARM\SVD\ARMCM3.svd</SFDFile>
  1430. <bCustSvd>0</bCustSvd>
  1431. <UseEnv>0</UseEnv>
  1432. <BinPath></BinPath>
  1433. <IncludePath></IncludePath>
  1434. <LibPath></LibPath>
  1435. <RegisterFilePath></RegisterFilePath>
  1436. <DBRegisterFilePath></DBRegisterFilePath>
  1437. <TargetStatus>
  1438. <Error>0</Error>
  1439. <ExitCodeStop>0</ExitCodeStop>
  1440. <ButtonStop>0</ButtonStop>
  1441. <NotGenerated>0</NotGenerated>
  1442. <InvalidFlash>1</InvalidFlash>
  1443. </TargetStatus>
  1444. <OutputDirectory>.\CM3_BE\</OutputDirectory>
  1445. <OutputName>RTX_CM3_B</OutputName>
  1446. <CreateExecutable>0</CreateExecutable>
  1447. <CreateLib>1</CreateLib>
  1448. <CreateHexFile>0</CreateHexFile>
  1449. <DebugInformation>1</DebugInformation>
  1450. <BrowseInformation>0</BrowseInformation>
  1451. <ListingPath>.\CM3_BE\</ListingPath>
  1452. <HexFormatSelection>1</HexFormatSelection>
  1453. <Merge32K>0</Merge32K>
  1454. <CreateBatchFile>0</CreateBatchFile>
  1455. <BeforeCompile>
  1456. <RunUserProg1>0</RunUserProg1>
  1457. <RunUserProg2>0</RunUserProg2>
  1458. <UserProg1Name></UserProg1Name>
  1459. <UserProg2Name></UserProg2Name>
  1460. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1461. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1462. <nStopU1X>0</nStopU1X>
  1463. <nStopU2X>0</nStopU2X>
  1464. </BeforeCompile>
  1465. <BeforeMake>
  1466. <RunUserProg1>0</RunUserProg1>
  1467. <RunUserProg2>0</RunUserProg2>
  1468. <UserProg1Name></UserProg1Name>
  1469. <UserProg2Name></UserProg2Name>
  1470. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1471. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1472. <nStopB1X>0</nStopB1X>
  1473. <nStopB2X>0</nStopB2X>
  1474. </BeforeMake>
  1475. <AfterMake>
  1476. <RunUserProg1>1</RunUserProg1>
  1477. <RunUserProg2>0</RunUserProg2>
  1478. <UserProg1Name>cmd.exe /C copy CM3_BE\libRTX_CM3_B.a ..\..\LIB\GCC\</UserProg1Name>
  1479. <UserProg2Name></UserProg2Name>
  1480. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1481. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1482. <nStopA1X>0</nStopA1X>
  1483. <nStopA2X>0</nStopA2X>
  1484. </AfterMake>
  1485. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  1486. <SVCSIdString></SVCSIdString>
  1487. </TargetCommonOption>
  1488. <CommonProperty>
  1489. <UseCPPCompiler>0</UseCPPCompiler>
  1490. <RVCTCodeConst>0</RVCTCodeConst>
  1491. <RVCTZI>0</RVCTZI>
  1492. <RVCTOtherData>0</RVCTOtherData>
  1493. <ModuleSelection>0</ModuleSelection>
  1494. <IncludeInBuild>1</IncludeInBuild>
  1495. <AlwaysBuild>0</AlwaysBuild>
  1496. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  1497. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  1498. <PublicsOnly>0</PublicsOnly>
  1499. <StopOnExitCode>3</StopOnExitCode>
  1500. <CustomArgument></CustomArgument>
  1501. <IncludeLibraryModules></IncludeLibraryModules>
  1502. <ComprImg>1</ComprImg>
  1503. </CommonProperty>
  1504. <DllOption>
  1505. <SimDllName>SARMCM3.DLL</SimDllName>
  1506. <SimDllArguments> -MPU</SimDllArguments>
  1507. <SimDlgDll>DCM.DLL</SimDlgDll>
  1508. <SimDlgDllArguments>-pCM3</SimDlgDllArguments>
  1509. <TargetDllName>SARMCM3.DLL</TargetDllName>
  1510. <TargetDllArguments> -MPU</TargetDllArguments>
  1511. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  1512. <TargetDlgDllArguments>-pCM3</TargetDlgDllArguments>
  1513. </DllOption>
  1514. <DebugOption>
  1515. <OPTHX>
  1516. <HexSelection>1</HexSelection>
  1517. <HexRangeLowAddress>0</HexRangeLowAddress>
  1518. <HexRangeHighAddress>0</HexRangeHighAddress>
  1519. <HexOffset>0</HexOffset>
  1520. <Oh166RecLen>16</Oh166RecLen>
  1521. </OPTHX>
  1522. </DebugOption>
  1523. <Utilities>
  1524. <Flash1>
  1525. <UseTargetDll>1</UseTargetDll>
  1526. <UseExternalTool>0</UseExternalTool>
  1527. <RunIndependent>0</RunIndependent>
  1528. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  1529. <Capability>0</Capability>
  1530. <DriverSelection>-1</DriverSelection>
  1531. </Flash1>
  1532. <bUseTDR>1</bUseTDR>
  1533. <Flash2>BIN\UL2CM3.DLL</Flash2>
  1534. <Flash3></Flash3>
  1535. <Flash4></Flash4>
  1536. <pFcarmOut></pFcarmOut>
  1537. <pFcarmGrp></pFcarmGrp>
  1538. <pFcArmRoot></pFcArmRoot>
  1539. <FcArmLst>0</FcArmLst>
  1540. </Utilities>
  1541. <TargetArm>
  1542. <ArmMisc>
  1543. <asLst>0</asLst>
  1544. <asHll>1</asHll>
  1545. <asAsm>1</asAsm>
  1546. <asMacX>1</asMacX>
  1547. <asSyms>1</asSyms>
  1548. <asFals>1</asFals>
  1549. <asDbgD>1</asDbgD>
  1550. <asForm>1</asForm>
  1551. <ldLst>0</ldLst>
  1552. <ldmm>1</ldmm>
  1553. <ldXref>1</ldXref>
  1554. <BigEnd>1</BigEnd>
  1555. <GCPUTYP>"Cortex-M3"</GCPUTYP>
  1556. <mOS>0</mOS>
  1557. <uocRom>0</uocRom>
  1558. <uocRam>0</uocRam>
  1559. <hadIROM>1</hadIROM>
  1560. <hadIRAM>1</hadIRAM>
  1561. <hadXRAM>0</hadXRAM>
  1562. <uocXRam>0</uocXRam>
  1563. <RvdsVP>0</RvdsVP>
  1564. <hadIRAM2>0</hadIRAM2>
  1565. <hadIROM2>0</hadIROM2>
  1566. <OnChipMemories>
  1567. <Ocm1>
  1568. <Type>0</Type>
  1569. <StartAddress>0x0</StartAddress>
  1570. <Size>0x0</Size>
  1571. </Ocm1>
  1572. <Ocm2>
  1573. <Type>0</Type>
  1574. <StartAddress>0x0</StartAddress>
  1575. <Size>0x0</Size>
  1576. </Ocm2>
  1577. <Ocm3>
  1578. <Type>0</Type>
  1579. <StartAddress>0x0</StartAddress>
  1580. <Size>0x0</Size>
  1581. </Ocm3>
  1582. <Ocm4>
  1583. <Type>0</Type>
  1584. <StartAddress>0x0</StartAddress>
  1585. <Size>0x0</Size>
  1586. </Ocm4>
  1587. <Ocm5>
  1588. <Type>0</Type>
  1589. <StartAddress>0x0</StartAddress>
  1590. <Size>0x0</Size>
  1591. </Ocm5>
  1592. <Ocm6>
  1593. <Type>0</Type>
  1594. <StartAddress>0x0</StartAddress>
  1595. <Size>0x0</Size>
  1596. </Ocm6>
  1597. <IRAM>
  1598. <Type>0</Type>
  1599. <StartAddress>0x20000000</StartAddress>
  1600. <Size>0x20000</Size>
  1601. </IRAM>
  1602. <IROM>
  1603. <Type>1</Type>
  1604. <StartAddress>0x0</StartAddress>
  1605. <Size>0x40000</Size>
  1606. </IROM>
  1607. <XRAM>
  1608. <Type>0</Type>
  1609. <StartAddress>0x0</StartAddress>
  1610. <Size>0x0</Size>
  1611. </XRAM>
  1612. <IRAM2>
  1613. <Type>0</Type>
  1614. <StartAddress>0x0</StartAddress>
  1615. <Size>0x0</Size>
  1616. </IRAM2>
  1617. <IROM2>
  1618. <Type>0</Type>
  1619. <StartAddress>0x0</StartAddress>
  1620. <Size>0x0</Size>
  1621. </IROM2>
  1622. </OnChipMemories>
  1623. </ArmMisc>
  1624. <Carm>
  1625. <arpcs>0</arpcs>
  1626. <stkchk>0</stkchk>
  1627. <reentr>0</reentr>
  1628. <interw>0</interw>
  1629. <bigend>0</bigend>
  1630. <Strict>0</Strict>
  1631. <Optim>5</Optim>
  1632. <wLevel>2</wLevel>
  1633. <uThumb>1</uThumb>
  1634. <VariousControls>
  1635. <MiscControls>-ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  1636. <Define>__CORTEX_M3 __CMSIS_RTOS DBG_MSG</Define>
  1637. <Undefine></Undefine>
  1638. <IncludePath></IncludePath>
  1639. </VariousControls>
  1640. </Carm>
  1641. <Aarm>
  1642. <bBE>0</bBE>
  1643. <interw>0</interw>
  1644. <VariousControls>
  1645. <MiscControls></MiscControls>
  1646. <Define>__CORTEX_M3 __CMSIS_RTOS</Define>
  1647. <Undefine></Undefine>
  1648. <IncludePath></IncludePath>
  1649. </VariousControls>
  1650. </Aarm>
  1651. <LDarm>
  1652. <umfTarg>1</umfTarg>
  1653. <enaGarb>1</enaGarb>
  1654. <noStart>1</noStart>
  1655. <noStLib>0</noStLib>
  1656. <uMathLib>0</uMathLib>
  1657. <TextAddressRange></TextAddressRange>
  1658. <DataAddressRange></DataAddressRange>
  1659. <BSSAddressRange></BSSAddressRange>
  1660. <IncludeLibs></IncludeLibs>
  1661. <IncludeDir></IncludeDir>
  1662. <Misc></Misc>
  1663. <ScatterFile></ScatterFile>
  1664. </LDarm>
  1665. </TargetArm>
  1666. </TargetOption>
  1667. <Groups>
  1668. <Group>
  1669. <GroupName>Kernel</GroupName>
  1670. <Files>
  1671. <File>
  1672. <FileName>rt_CMSIS.c</FileName>
  1673. <FileType>1</FileType>
  1674. <FilePath>../rt_CMSIS.c</FilePath>
  1675. <FileOption>
  1676. <CommonProperty>
  1677. <UseCPPCompiler>2</UseCPPCompiler>
  1678. <RVCTCodeConst>0</RVCTCodeConst>
  1679. <RVCTZI>0</RVCTZI>
  1680. <RVCTOtherData>0</RVCTOtherData>
  1681. <ModuleSelection>0</ModuleSelection>
  1682. <IncludeInBuild>2</IncludeInBuild>
  1683. <AlwaysBuild>2</AlwaysBuild>
  1684. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  1685. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  1686. <PublicsOnly>2</PublicsOnly>
  1687. <StopOnExitCode>11</StopOnExitCode>
  1688. <CustomArgument></CustomArgument>
  1689. <IncludeLibraryModules></IncludeLibraryModules>
  1690. <ComprImg>1</ComprImg>
  1691. </CommonProperty>
  1692. <FileArm>
  1693. <Carm>
  1694. <arpcs>2</arpcs>
  1695. <stkchk>2</stkchk>
  1696. <reentr>2</reentr>
  1697. <interw>2</interw>
  1698. <bigend>2</bigend>
  1699. <Strict>0</Strict>
  1700. <Optim>0</Optim>
  1701. <wLevel>0</wLevel>
  1702. <uThumb>2</uThumb>
  1703. <VariousControls>
  1704. <MiscControls></MiscControls>
  1705. <Define></Define>
  1706. <Undefine></Undefine>
  1707. <IncludePath>..\..\INC</IncludePath>
  1708. </VariousControls>
  1709. </Carm>
  1710. </FileArm>
  1711. </FileOption>
  1712. </File>
  1713. <File>
  1714. <FileName>rt_Task.c</FileName>
  1715. <FileType>1</FileType>
  1716. <FilePath>../rt_Task.c</FilePath>
  1717. </File>
  1718. <File>
  1719. <FileName>rt_System.c</FileName>
  1720. <FileType>1</FileType>
  1721. <FilePath>../rt_System.c</FilePath>
  1722. </File>
  1723. <File>
  1724. <FileName>rt_Event.c</FileName>
  1725. <FileType>1</FileType>
  1726. <FilePath>../rt_Event.c</FilePath>
  1727. </File>
  1728. <File>
  1729. <FileName>rt_List.c</FileName>
  1730. <FileType>1</FileType>
  1731. <FilePath>../rt_List.c</FilePath>
  1732. </File>
  1733. <File>
  1734. <FileName>rt_Mailbox.c</FileName>
  1735. <FileType>1</FileType>
  1736. <FilePath>../rt_Mailbox.c</FilePath>
  1737. </File>
  1738. <File>
  1739. <FileName>rt_Semaphore.c</FileName>
  1740. <FileType>1</FileType>
  1741. <FilePath>../rt_Semaphore.c</FilePath>
  1742. </File>
  1743. <File>
  1744. <FileName>rt_Time.c</FileName>
  1745. <FileType>1</FileType>
  1746. <FilePath>../rt_Time.c</FilePath>
  1747. </File>
  1748. <File>
  1749. <FileName>rt_Timer.c</FileName>
  1750. <FileType>1</FileType>
  1751. <FilePath>../rt_Timer.c</FilePath>
  1752. </File>
  1753. <File>
  1754. <FileName>rt_Mutex.c</FileName>
  1755. <FileType>1</FileType>
  1756. <FilePath>../rt_Mutex.c</FilePath>
  1757. </File>
  1758. <File>
  1759. <FileName>rt_Robin.c</FileName>
  1760. <FileType>1</FileType>
  1761. <FilePath>../rt_Robin.c</FilePath>
  1762. </File>
  1763. <File>
  1764. <FileName>rt_MemBox.c</FileName>
  1765. <FileType>1</FileType>
  1766. <FilePath>../rt_MemBox.c</FilePath>
  1767. </File>
  1768. <File>
  1769. <FileName>rt_Memory.c</FileName>
  1770. <FileType>1</FileType>
  1771. <FilePath>../rt_Memory.c</FilePath>
  1772. </File>
  1773. </Files>
  1774. </Group>
  1775. <Group>
  1776. <GroupName>HAL</GroupName>
  1777. <Files>
  1778. <File>
  1779. <FileName>SVC_Table.S</FileName>
  1780. <FileType>2</FileType>
  1781. <FilePath>.\SVC_Table.S</FilePath>
  1782. </File>
  1783. <File>
  1784. <FileName>HAL_CM.c</FileName>
  1785. <FileType>1</FileType>
  1786. <FilePath>../HAL_CM.c</FilePath>
  1787. </File>
  1788. <File>
  1789. <FileName>HAL_CM0.S</FileName>
  1790. <FileType>2</FileType>
  1791. <FilePath>.\HAL_CM0.S</FilePath>
  1792. <FileOption>
  1793. <CommonProperty>
  1794. <UseCPPCompiler>2</UseCPPCompiler>
  1795. <RVCTCodeConst>0</RVCTCodeConst>
  1796. <RVCTZI>0</RVCTZI>
  1797. <RVCTOtherData>0</RVCTOtherData>
  1798. <ModuleSelection>0</ModuleSelection>
  1799. <IncludeInBuild>0</IncludeInBuild>
  1800. <AlwaysBuild>2</AlwaysBuild>
  1801. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  1802. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  1803. <PublicsOnly>2</PublicsOnly>
  1804. <StopOnExitCode>11</StopOnExitCode>
  1805. <CustomArgument></CustomArgument>
  1806. <IncludeLibraryModules></IncludeLibraryModules>
  1807. <ComprImg>1</ComprImg>
  1808. </CommonProperty>
  1809. <FileArm>
  1810. <Aarm>
  1811. <bBE>2</bBE>
  1812. <interw>2</interw>
  1813. <VariousControls>
  1814. <MiscControls></MiscControls>
  1815. <Define></Define>
  1816. <Undefine></Undefine>
  1817. <IncludePath></IncludePath>
  1818. </VariousControls>
  1819. </Aarm>
  1820. </FileArm>
  1821. </FileOption>
  1822. </File>
  1823. <File>
  1824. <FileName>HAL_CM3.S</FileName>
  1825. <FileType>2</FileType>
  1826. <FilePath>.\HAL_CM3.S</FilePath>
  1827. </File>
  1828. <File>
  1829. <FileName>HAL_CM4.S</FileName>
  1830. <FileType>2</FileType>
  1831. <FilePath>.\HAL_CM4.S</FilePath>
  1832. <FileOption>
  1833. <CommonProperty>
  1834. <UseCPPCompiler>2</UseCPPCompiler>
  1835. <RVCTCodeConst>0</RVCTCodeConst>
  1836. <RVCTZI>0</RVCTZI>
  1837. <RVCTOtherData>0</RVCTOtherData>
  1838. <ModuleSelection>0</ModuleSelection>
  1839. <IncludeInBuild>0</IncludeInBuild>
  1840. <AlwaysBuild>2</AlwaysBuild>
  1841. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  1842. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  1843. <PublicsOnly>2</PublicsOnly>
  1844. <StopOnExitCode>11</StopOnExitCode>
  1845. <CustomArgument></CustomArgument>
  1846. <IncludeLibraryModules></IncludeLibraryModules>
  1847. <ComprImg>1</ComprImg>
  1848. </CommonProperty>
  1849. <FileArm>
  1850. <Aarm>
  1851. <bBE>2</bBE>
  1852. <interw>2</interw>
  1853. <VariousControls>
  1854. <MiscControls></MiscControls>
  1855. <Define></Define>
  1856. <Undefine></Undefine>
  1857. <IncludePath></IncludePath>
  1858. </VariousControls>
  1859. </Aarm>
  1860. </FileArm>
  1861. </FileOption>
  1862. </File>
  1863. </Files>
  1864. </Group>
  1865. <Group>
  1866. <GroupName>::CMSIS</GroupName>
  1867. </Group>
  1868. </Groups>
  1869. </Target>
  1870. <Target>
  1871. <TargetName>CM3_LE_IFX</TargetName>
  1872. <ToolsetNumber>0x3</ToolsetNumber>
  1873. <ToolsetName>ARM-GNU</ToolsetName>
  1874. <TargetOption>
  1875. <TargetCommonOption>
  1876. <Device>ARMCM3</Device>
  1877. <Vendor>ARM</Vendor>
  1878. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  1879. <PackURL>http://www.keil.com/pack/</PackURL>
  1880. <Cpu>IROM(0x00000000,0x40000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M3") CLOCK(12000000) ESEL ELITTLE</Cpu>
  1881. <FlashUtilSpec></FlashUtilSpec>
  1882. <StartupFile></StartupFile>
  1883. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL040000 -FP0($$Device:ARMCM3$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  1884. <DeviceId>0</DeviceId>
  1885. <RegisterFile>$$Device:ARMCM3$Device\ARM\ARMCM3\Include\ARMCM3.h</RegisterFile>
  1886. <MemoryEnv></MemoryEnv>
  1887. <Cmp></Cmp>
  1888. <Asm></Asm>
  1889. <Linker></Linker>
  1890. <OHString></OHString>
  1891. <InfinionOptionDll></InfinionOptionDll>
  1892. <SLE66CMisc></SLE66CMisc>
  1893. <SLE66AMisc></SLE66AMisc>
  1894. <SLE66LinkerMisc></SLE66LinkerMisc>
  1895. <SFDFile>$$Device:ARMCM3$Device\ARM\SVD\ARMCM3.svd</SFDFile>
  1896. <bCustSvd>0</bCustSvd>
  1897. <UseEnv>0</UseEnv>
  1898. <BinPath></BinPath>
  1899. <IncludePath></IncludePath>
  1900. <LibPath></LibPath>
  1901. <RegisterFilePath></RegisterFilePath>
  1902. <DBRegisterFilePath></DBRegisterFilePath>
  1903. <TargetStatus>
  1904. <Error>0</Error>
  1905. <ExitCodeStop>0</ExitCodeStop>
  1906. <ButtonStop>0</ButtonStop>
  1907. <NotGenerated>0</NotGenerated>
  1908. <InvalidFlash>1</InvalidFlash>
  1909. </TargetStatus>
  1910. <OutputDirectory>.\CM3_LE_IFX\</OutputDirectory>
  1911. <OutputName>RTX_CM3_IFX</OutputName>
  1912. <CreateExecutable>0</CreateExecutable>
  1913. <CreateLib>1</CreateLib>
  1914. <CreateHexFile>0</CreateHexFile>
  1915. <DebugInformation>1</DebugInformation>
  1916. <BrowseInformation>0</BrowseInformation>
  1917. <ListingPath>.\CM3_LE_IFX\</ListingPath>
  1918. <HexFormatSelection>1</HexFormatSelection>
  1919. <Merge32K>0</Merge32K>
  1920. <CreateBatchFile>0</CreateBatchFile>
  1921. <BeforeCompile>
  1922. <RunUserProg1>0</RunUserProg1>
  1923. <RunUserProg2>0</RunUserProg2>
  1924. <UserProg1Name></UserProg1Name>
  1925. <UserProg2Name></UserProg2Name>
  1926. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1927. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1928. <nStopU1X>0</nStopU1X>
  1929. <nStopU2X>0</nStopU2X>
  1930. </BeforeCompile>
  1931. <BeforeMake>
  1932. <RunUserProg1>0</RunUserProg1>
  1933. <RunUserProg2>0</RunUserProg2>
  1934. <UserProg1Name></UserProg1Name>
  1935. <UserProg2Name></UserProg2Name>
  1936. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1937. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1938. <nStopB1X>0</nStopB1X>
  1939. <nStopB2X>0</nStopB2X>
  1940. </BeforeMake>
  1941. <AfterMake>
  1942. <RunUserProg1>1</RunUserProg1>
  1943. <RunUserProg2>0</RunUserProg2>
  1944. <UserProg1Name>cmd.exe /C copy CM3_LE_IFX\libRTX_CM3_IFX.a ..\..\LIB\GCC\</UserProg1Name>
  1945. <UserProg2Name></UserProg2Name>
  1946. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  1947. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  1948. <nStopA1X>0</nStopA1X>
  1949. <nStopA2X>0</nStopA2X>
  1950. </AfterMake>
  1951. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  1952. <SVCSIdString></SVCSIdString>
  1953. </TargetCommonOption>
  1954. <CommonProperty>
  1955. <UseCPPCompiler>0</UseCPPCompiler>
  1956. <RVCTCodeConst>0</RVCTCodeConst>
  1957. <RVCTZI>0</RVCTZI>
  1958. <RVCTOtherData>0</RVCTOtherData>
  1959. <ModuleSelection>0</ModuleSelection>
  1960. <IncludeInBuild>1</IncludeInBuild>
  1961. <AlwaysBuild>0</AlwaysBuild>
  1962. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  1963. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  1964. <PublicsOnly>0</PublicsOnly>
  1965. <StopOnExitCode>3</StopOnExitCode>
  1966. <CustomArgument></CustomArgument>
  1967. <IncludeLibraryModules></IncludeLibraryModules>
  1968. <ComprImg>1</ComprImg>
  1969. </CommonProperty>
  1970. <DllOption>
  1971. <SimDllName>SARMCM3.DLL</SimDllName>
  1972. <SimDllArguments> -MPU</SimDllArguments>
  1973. <SimDlgDll>DCM.DLL</SimDlgDll>
  1974. <SimDlgDllArguments>-pCM3</SimDlgDllArguments>
  1975. <TargetDllName>SARMCM3.DLL</TargetDllName>
  1976. <TargetDllArguments> -MPU</TargetDllArguments>
  1977. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  1978. <TargetDlgDllArguments>-pCM3</TargetDlgDllArguments>
  1979. </DllOption>
  1980. <DebugOption>
  1981. <OPTHX>
  1982. <HexSelection>1</HexSelection>
  1983. <HexRangeLowAddress>0</HexRangeLowAddress>
  1984. <HexRangeHighAddress>0</HexRangeHighAddress>
  1985. <HexOffset>0</HexOffset>
  1986. <Oh166RecLen>16</Oh166RecLen>
  1987. </OPTHX>
  1988. </DebugOption>
  1989. <Utilities>
  1990. <Flash1>
  1991. <UseTargetDll>1</UseTargetDll>
  1992. <UseExternalTool>0</UseExternalTool>
  1993. <RunIndependent>0</RunIndependent>
  1994. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  1995. <Capability>0</Capability>
  1996. <DriverSelection>-1</DriverSelection>
  1997. </Flash1>
  1998. <bUseTDR>1</bUseTDR>
  1999. <Flash2>BIN\UL2CM3.DLL</Flash2>
  2000. <Flash3></Flash3>
  2001. <Flash4></Flash4>
  2002. <pFcarmOut></pFcarmOut>
  2003. <pFcarmGrp></pFcarmGrp>
  2004. <pFcArmRoot></pFcArmRoot>
  2005. <FcArmLst>0</FcArmLst>
  2006. </Utilities>
  2007. <TargetArm>
  2008. <ArmMisc>
  2009. <asLst>0</asLst>
  2010. <asHll>1</asHll>
  2011. <asAsm>1</asAsm>
  2012. <asMacX>1</asMacX>
  2013. <asSyms>1</asSyms>
  2014. <asFals>1</asFals>
  2015. <asDbgD>1</asDbgD>
  2016. <asForm>1</asForm>
  2017. <ldLst>0</ldLst>
  2018. <ldmm>1</ldmm>
  2019. <ldXref>1</ldXref>
  2020. <BigEnd>0</BigEnd>
  2021. <GCPUTYP>"Cortex-M3"</GCPUTYP>
  2022. <mOS>0</mOS>
  2023. <uocRom>0</uocRom>
  2024. <uocRam>0</uocRam>
  2025. <hadIROM>1</hadIROM>
  2026. <hadIRAM>1</hadIRAM>
  2027. <hadXRAM>0</hadXRAM>
  2028. <uocXRam>0</uocXRam>
  2029. <RvdsVP>0</RvdsVP>
  2030. <hadIRAM2>0</hadIRAM2>
  2031. <hadIROM2>0</hadIROM2>
  2032. <OnChipMemories>
  2033. <Ocm1>
  2034. <Type>0</Type>
  2035. <StartAddress>0x0</StartAddress>
  2036. <Size>0x0</Size>
  2037. </Ocm1>
  2038. <Ocm2>
  2039. <Type>0</Type>
  2040. <StartAddress>0x0</StartAddress>
  2041. <Size>0x0</Size>
  2042. </Ocm2>
  2043. <Ocm3>
  2044. <Type>0</Type>
  2045. <StartAddress>0x0</StartAddress>
  2046. <Size>0x0</Size>
  2047. </Ocm3>
  2048. <Ocm4>
  2049. <Type>0</Type>
  2050. <StartAddress>0x0</StartAddress>
  2051. <Size>0x0</Size>
  2052. </Ocm4>
  2053. <Ocm5>
  2054. <Type>0</Type>
  2055. <StartAddress>0x0</StartAddress>
  2056. <Size>0x0</Size>
  2057. </Ocm5>
  2058. <Ocm6>
  2059. <Type>0</Type>
  2060. <StartAddress>0x0</StartAddress>
  2061. <Size>0x0</Size>
  2062. </Ocm6>
  2063. <IRAM>
  2064. <Type>0</Type>
  2065. <StartAddress>0x20000000</StartAddress>
  2066. <Size>0x20000</Size>
  2067. </IRAM>
  2068. <IROM>
  2069. <Type>1</Type>
  2070. <StartAddress>0x0</StartAddress>
  2071. <Size>0x40000</Size>
  2072. </IROM>
  2073. <XRAM>
  2074. <Type>0</Type>
  2075. <StartAddress>0x0</StartAddress>
  2076. <Size>0x0</Size>
  2077. </XRAM>
  2078. <IRAM2>
  2079. <Type>0</Type>
  2080. <StartAddress>0x0</StartAddress>
  2081. <Size>0x0</Size>
  2082. </IRAM2>
  2083. <IROM2>
  2084. <Type>0</Type>
  2085. <StartAddress>0x0</StartAddress>
  2086. <Size>0x0</Size>
  2087. </IROM2>
  2088. </OnChipMemories>
  2089. </ArmMisc>
  2090. <Carm>
  2091. <arpcs>0</arpcs>
  2092. <stkchk>0</stkchk>
  2093. <reentr>0</reentr>
  2094. <interw>0</interw>
  2095. <bigend>0</bigend>
  2096. <Strict>0</Strict>
  2097. <Optim>5</Optim>
  2098. <wLevel>2</wLevel>
  2099. <uThumb>1</uThumb>
  2100. <VariousControls>
  2101. <MiscControls>-ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  2102. <Define>__CORTEX_M3 __CMSIS_RTOS DBG_MSG</Define>
  2103. <Undefine></Undefine>
  2104. <IncludePath></IncludePath>
  2105. </VariousControls>
  2106. </Carm>
  2107. <Aarm>
  2108. <bBE>0</bBE>
  2109. <interw>0</interw>
  2110. <VariousControls>
  2111. <MiscControls></MiscControls>
  2112. <Define>__CORTEX_M3 __CMSIS_RTOS</Define>
  2113. <Undefine></Undefine>
  2114. <IncludePath></IncludePath>
  2115. </VariousControls>
  2116. </Aarm>
  2117. <LDarm>
  2118. <umfTarg>1</umfTarg>
  2119. <enaGarb>1</enaGarb>
  2120. <noStart>1</noStart>
  2121. <noStLib>0</noStLib>
  2122. <uMathLib>0</uMathLib>
  2123. <TextAddressRange></TextAddressRange>
  2124. <DataAddressRange></DataAddressRange>
  2125. <BSSAddressRange></BSSAddressRange>
  2126. <IncludeLibs></IncludeLibs>
  2127. <IncludeDir></IncludeDir>
  2128. <Misc></Misc>
  2129. <ScatterFile></ScatterFile>
  2130. </LDarm>
  2131. </TargetArm>
  2132. </TargetOption>
  2133. <Groups>
  2134. <Group>
  2135. <GroupName>Kernel</GroupName>
  2136. <Files>
  2137. <File>
  2138. <FileName>rt_CMSIS.c</FileName>
  2139. <FileType>1</FileType>
  2140. <FilePath>../rt_CMSIS.c</FilePath>
  2141. <FileOption>
  2142. <CommonProperty>
  2143. <UseCPPCompiler>2</UseCPPCompiler>
  2144. <RVCTCodeConst>0</RVCTCodeConst>
  2145. <RVCTZI>0</RVCTZI>
  2146. <RVCTOtherData>0</RVCTOtherData>
  2147. <ModuleSelection>0</ModuleSelection>
  2148. <IncludeInBuild>2</IncludeInBuild>
  2149. <AlwaysBuild>2</AlwaysBuild>
  2150. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2151. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2152. <PublicsOnly>2</PublicsOnly>
  2153. <StopOnExitCode>11</StopOnExitCode>
  2154. <CustomArgument></CustomArgument>
  2155. <IncludeLibraryModules></IncludeLibraryModules>
  2156. <ComprImg>1</ComprImg>
  2157. </CommonProperty>
  2158. <FileArm>
  2159. <Carm>
  2160. <arpcs>2</arpcs>
  2161. <stkchk>2</stkchk>
  2162. <reentr>2</reentr>
  2163. <interw>2</interw>
  2164. <bigend>2</bigend>
  2165. <Strict>0</Strict>
  2166. <Optim>0</Optim>
  2167. <wLevel>0</wLevel>
  2168. <uThumb>2</uThumb>
  2169. <VariousControls>
  2170. <MiscControls></MiscControls>
  2171. <Define></Define>
  2172. <Undefine></Undefine>
  2173. <IncludePath>..\..\INC</IncludePath>
  2174. </VariousControls>
  2175. </Carm>
  2176. </FileArm>
  2177. </FileOption>
  2178. </File>
  2179. <File>
  2180. <FileName>rt_Task.c</FileName>
  2181. <FileType>1</FileType>
  2182. <FilePath>../rt_Task.c</FilePath>
  2183. </File>
  2184. <File>
  2185. <FileName>rt_System.c</FileName>
  2186. <FileType>1</FileType>
  2187. <FilePath>../rt_System.c</FilePath>
  2188. </File>
  2189. <File>
  2190. <FileName>rt_Event.c</FileName>
  2191. <FileType>1</FileType>
  2192. <FilePath>../rt_Event.c</FilePath>
  2193. </File>
  2194. <File>
  2195. <FileName>rt_List.c</FileName>
  2196. <FileType>1</FileType>
  2197. <FilePath>../rt_List.c</FilePath>
  2198. </File>
  2199. <File>
  2200. <FileName>rt_Mailbox.c</FileName>
  2201. <FileType>1</FileType>
  2202. <FilePath>../rt_Mailbox.c</FilePath>
  2203. </File>
  2204. <File>
  2205. <FileName>rt_Semaphore.c</FileName>
  2206. <FileType>1</FileType>
  2207. <FilePath>../rt_Semaphore.c</FilePath>
  2208. </File>
  2209. <File>
  2210. <FileName>rt_Time.c</FileName>
  2211. <FileType>1</FileType>
  2212. <FilePath>../rt_Time.c</FilePath>
  2213. </File>
  2214. <File>
  2215. <FileName>rt_Timer.c</FileName>
  2216. <FileType>1</FileType>
  2217. <FilePath>../rt_Timer.c</FilePath>
  2218. </File>
  2219. <File>
  2220. <FileName>rt_Mutex.c</FileName>
  2221. <FileType>1</FileType>
  2222. <FilePath>../rt_Mutex.c</FilePath>
  2223. </File>
  2224. <File>
  2225. <FileName>rt_Robin.c</FileName>
  2226. <FileType>1</FileType>
  2227. <FilePath>../rt_Robin.c</FilePath>
  2228. </File>
  2229. <File>
  2230. <FileName>rt_MemBox.c</FileName>
  2231. <FileType>1</FileType>
  2232. <FilePath>../rt_MemBox.c</FilePath>
  2233. </File>
  2234. <File>
  2235. <FileName>rt_Memory.c</FileName>
  2236. <FileType>1</FileType>
  2237. <FilePath>../rt_Memory.c</FilePath>
  2238. </File>
  2239. </Files>
  2240. </Group>
  2241. <Group>
  2242. <GroupName>HAL</GroupName>
  2243. <Files>
  2244. <File>
  2245. <FileName>SVC_Table.S</FileName>
  2246. <FileType>2</FileType>
  2247. <FilePath>.\SVC_Table.S</FilePath>
  2248. </File>
  2249. <File>
  2250. <FileName>HAL_CM.c</FileName>
  2251. <FileType>1</FileType>
  2252. <FilePath>../HAL_CM.c</FilePath>
  2253. </File>
  2254. <File>
  2255. <FileName>HAL_CM0.S</FileName>
  2256. <FileType>2</FileType>
  2257. <FilePath>.\HAL_CM0.S</FilePath>
  2258. <FileOption>
  2259. <CommonProperty>
  2260. <UseCPPCompiler>2</UseCPPCompiler>
  2261. <RVCTCodeConst>0</RVCTCodeConst>
  2262. <RVCTZI>0</RVCTZI>
  2263. <RVCTOtherData>0</RVCTOtherData>
  2264. <ModuleSelection>0</ModuleSelection>
  2265. <IncludeInBuild>0</IncludeInBuild>
  2266. <AlwaysBuild>2</AlwaysBuild>
  2267. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2268. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2269. <PublicsOnly>2</PublicsOnly>
  2270. <StopOnExitCode>11</StopOnExitCode>
  2271. <CustomArgument></CustomArgument>
  2272. <IncludeLibraryModules></IncludeLibraryModules>
  2273. <ComprImg>1</ComprImg>
  2274. </CommonProperty>
  2275. <FileArm>
  2276. <Aarm>
  2277. <bBE>2</bBE>
  2278. <interw>2</interw>
  2279. <VariousControls>
  2280. <MiscControls></MiscControls>
  2281. <Define></Define>
  2282. <Undefine></Undefine>
  2283. <IncludePath></IncludePath>
  2284. </VariousControls>
  2285. </Aarm>
  2286. </FileArm>
  2287. </FileOption>
  2288. </File>
  2289. <File>
  2290. <FileName>HAL_CM3.S</FileName>
  2291. <FileType>2</FileType>
  2292. <FilePath>.\HAL_CM3.S</FilePath>
  2293. <FileOption>
  2294. <CommonProperty>
  2295. <UseCPPCompiler>2</UseCPPCompiler>
  2296. <RVCTCodeConst>0</RVCTCodeConst>
  2297. <RVCTZI>0</RVCTZI>
  2298. <RVCTOtherData>0</RVCTOtherData>
  2299. <ModuleSelection>0</ModuleSelection>
  2300. <IncludeInBuild>2</IncludeInBuild>
  2301. <AlwaysBuild>2</AlwaysBuild>
  2302. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2303. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2304. <PublicsOnly>2</PublicsOnly>
  2305. <StopOnExitCode>11</StopOnExitCode>
  2306. <CustomArgument></CustomArgument>
  2307. <IncludeLibraryModules></IncludeLibraryModules>
  2308. <ComprImg>1</ComprImg>
  2309. </CommonProperty>
  2310. <FileArm>
  2311. <Aarm>
  2312. <bBE>2</bBE>
  2313. <interw>2</interw>
  2314. <VariousControls>
  2315. <MiscControls></MiscControls>
  2316. <Define>IFX_XMC4XXX</Define>
  2317. <Undefine></Undefine>
  2318. <IncludePath></IncludePath>
  2319. </VariousControls>
  2320. </Aarm>
  2321. </FileArm>
  2322. </FileOption>
  2323. </File>
  2324. <File>
  2325. <FileName>HAL_CM4.S</FileName>
  2326. <FileType>2</FileType>
  2327. <FilePath>.\HAL_CM4.S</FilePath>
  2328. <FileOption>
  2329. <CommonProperty>
  2330. <UseCPPCompiler>2</UseCPPCompiler>
  2331. <RVCTCodeConst>0</RVCTCodeConst>
  2332. <RVCTZI>0</RVCTZI>
  2333. <RVCTOtherData>0</RVCTOtherData>
  2334. <ModuleSelection>0</ModuleSelection>
  2335. <IncludeInBuild>0</IncludeInBuild>
  2336. <AlwaysBuild>2</AlwaysBuild>
  2337. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2338. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2339. <PublicsOnly>2</PublicsOnly>
  2340. <StopOnExitCode>11</StopOnExitCode>
  2341. <CustomArgument></CustomArgument>
  2342. <IncludeLibraryModules></IncludeLibraryModules>
  2343. <ComprImg>1</ComprImg>
  2344. </CommonProperty>
  2345. <FileArm>
  2346. <Aarm>
  2347. <bBE>2</bBE>
  2348. <interw>2</interw>
  2349. <VariousControls>
  2350. <MiscControls></MiscControls>
  2351. <Define></Define>
  2352. <Undefine></Undefine>
  2353. <IncludePath></IncludePath>
  2354. </VariousControls>
  2355. </Aarm>
  2356. </FileArm>
  2357. </FileOption>
  2358. </File>
  2359. </Files>
  2360. </Group>
  2361. <Group>
  2362. <GroupName>::CMSIS</GroupName>
  2363. </Group>
  2364. </Groups>
  2365. </Target>
  2366. <Target>
  2367. <TargetName>CM4F_LE</TargetName>
  2368. <ToolsetNumber>0x3</ToolsetNumber>
  2369. <ToolsetName>ARM-GNU</ToolsetName>
  2370. <TargetOption>
  2371. <TargetCommonOption>
  2372. <Device>ARMCM4_FP</Device>
  2373. <Vendor>ARM</Vendor>
  2374. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  2375. <PackURL>http://www.keil.com/pack/</PackURL>
  2376. <Cpu>IROM(0x00000000,0x80000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ESEL ELITTLE</Cpu>
  2377. <FlashUtilSpec></FlashUtilSpec>
  2378. <StartupFile></StartupFile>
  2379. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL080000 -FP0($$Device:ARMCM4_FP$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  2380. <DeviceId>0</DeviceId>
  2381. <RegisterFile>$$Device:ARMCM4_FP$Device\ARM\ARMCM4\Include\ARMCM4_FP.h</RegisterFile>
  2382. <MemoryEnv></MemoryEnv>
  2383. <Cmp></Cmp>
  2384. <Asm></Asm>
  2385. <Linker></Linker>
  2386. <OHString></OHString>
  2387. <InfinionOptionDll></InfinionOptionDll>
  2388. <SLE66CMisc></SLE66CMisc>
  2389. <SLE66AMisc></SLE66AMisc>
  2390. <SLE66LinkerMisc></SLE66LinkerMisc>
  2391. <SFDFile>$$Device:ARMCM4_FP$Device\ARM\SVD\ARMCM4.svd</SFDFile>
  2392. <bCustSvd>0</bCustSvd>
  2393. <UseEnv>0</UseEnv>
  2394. <BinPath></BinPath>
  2395. <IncludePath></IncludePath>
  2396. <LibPath></LibPath>
  2397. <RegisterFilePath></RegisterFilePath>
  2398. <DBRegisterFilePath></DBRegisterFilePath>
  2399. <TargetStatus>
  2400. <Error>0</Error>
  2401. <ExitCodeStop>0</ExitCodeStop>
  2402. <ButtonStop>0</ButtonStop>
  2403. <NotGenerated>0</NotGenerated>
  2404. <InvalidFlash>1</InvalidFlash>
  2405. </TargetStatus>
  2406. <OutputDirectory>.\CM4F_LE\</OutputDirectory>
  2407. <OutputName>RTX_CM4</OutputName>
  2408. <CreateExecutable>0</CreateExecutable>
  2409. <CreateLib>1</CreateLib>
  2410. <CreateHexFile>0</CreateHexFile>
  2411. <DebugInformation>1</DebugInformation>
  2412. <BrowseInformation>0</BrowseInformation>
  2413. <ListingPath>.\CM4F_LE\</ListingPath>
  2414. <HexFormatSelection>1</HexFormatSelection>
  2415. <Merge32K>0</Merge32K>
  2416. <CreateBatchFile>0</CreateBatchFile>
  2417. <BeforeCompile>
  2418. <RunUserProg1>0</RunUserProg1>
  2419. <RunUserProg2>0</RunUserProg2>
  2420. <UserProg1Name></UserProg1Name>
  2421. <UserProg2Name></UserProg2Name>
  2422. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2423. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2424. <nStopU1X>0</nStopU1X>
  2425. <nStopU2X>0</nStopU2X>
  2426. </BeforeCompile>
  2427. <BeforeMake>
  2428. <RunUserProg1>0</RunUserProg1>
  2429. <RunUserProg2>0</RunUserProg2>
  2430. <UserProg1Name></UserProg1Name>
  2431. <UserProg2Name></UserProg2Name>
  2432. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2433. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2434. <nStopB1X>0</nStopB1X>
  2435. <nStopB2X>0</nStopB2X>
  2436. </BeforeMake>
  2437. <AfterMake>
  2438. <RunUserProg1>1</RunUserProg1>
  2439. <RunUserProg2>0</RunUserProg2>
  2440. <UserProg1Name>cmd.exe /C copy CM4F_LE\libRTX_CM4.a ..\..\LIB\GCC\</UserProg1Name>
  2441. <UserProg2Name></UserProg2Name>
  2442. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2443. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2444. <nStopA1X>0</nStopA1X>
  2445. <nStopA2X>0</nStopA2X>
  2446. </AfterMake>
  2447. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  2448. <SVCSIdString></SVCSIdString>
  2449. </TargetCommonOption>
  2450. <CommonProperty>
  2451. <UseCPPCompiler>0</UseCPPCompiler>
  2452. <RVCTCodeConst>0</RVCTCodeConst>
  2453. <RVCTZI>0</RVCTZI>
  2454. <RVCTOtherData>0</RVCTOtherData>
  2455. <ModuleSelection>0</ModuleSelection>
  2456. <IncludeInBuild>1</IncludeInBuild>
  2457. <AlwaysBuild>0</AlwaysBuild>
  2458. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  2459. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  2460. <PublicsOnly>0</PublicsOnly>
  2461. <StopOnExitCode>3</StopOnExitCode>
  2462. <CustomArgument></CustomArgument>
  2463. <IncludeLibraryModules></IncludeLibraryModules>
  2464. <ComprImg>1</ComprImg>
  2465. </CommonProperty>
  2466. <DllOption>
  2467. <SimDllName>SARMCM3.DLL</SimDllName>
  2468. <SimDllArguments> -MPU</SimDllArguments>
  2469. <SimDlgDll>DCM.DLL</SimDlgDll>
  2470. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  2471. <TargetDllName>SARMCM3.DLL</TargetDllName>
  2472. <TargetDllArguments> -MPU</TargetDllArguments>
  2473. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  2474. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  2475. </DllOption>
  2476. <DebugOption>
  2477. <OPTHX>
  2478. <HexSelection>1</HexSelection>
  2479. <HexRangeLowAddress>0</HexRangeLowAddress>
  2480. <HexRangeHighAddress>0</HexRangeHighAddress>
  2481. <HexOffset>0</HexOffset>
  2482. <Oh166RecLen>16</Oh166RecLen>
  2483. </OPTHX>
  2484. </DebugOption>
  2485. <Utilities>
  2486. <Flash1>
  2487. <UseTargetDll>1</UseTargetDll>
  2488. <UseExternalTool>0</UseExternalTool>
  2489. <RunIndependent>0</RunIndependent>
  2490. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  2491. <Capability>0</Capability>
  2492. <DriverSelection>-1</DriverSelection>
  2493. </Flash1>
  2494. <bUseTDR>1</bUseTDR>
  2495. <Flash2>BIN\UL2CM3.DLL</Flash2>
  2496. <Flash3></Flash3>
  2497. <Flash4></Flash4>
  2498. <pFcarmOut></pFcarmOut>
  2499. <pFcarmGrp></pFcarmGrp>
  2500. <pFcArmRoot></pFcArmRoot>
  2501. <FcArmLst>0</FcArmLst>
  2502. </Utilities>
  2503. <TargetArm>
  2504. <ArmMisc>
  2505. <asLst>0</asLst>
  2506. <asHll>1</asHll>
  2507. <asAsm>1</asAsm>
  2508. <asMacX>1</asMacX>
  2509. <asSyms>1</asSyms>
  2510. <asFals>1</asFals>
  2511. <asDbgD>1</asDbgD>
  2512. <asForm>1</asForm>
  2513. <ldLst>0</ldLst>
  2514. <ldmm>1</ldmm>
  2515. <ldXref>1</ldXref>
  2516. <BigEnd>0</BigEnd>
  2517. <GCPUTYP>"Cortex-M4"</GCPUTYP>
  2518. <mOS>0</mOS>
  2519. <uocRom>0</uocRom>
  2520. <uocRam>0</uocRam>
  2521. <hadIROM>1</hadIROM>
  2522. <hadIRAM>1</hadIRAM>
  2523. <hadXRAM>0</hadXRAM>
  2524. <uocXRam>0</uocXRam>
  2525. <RvdsVP>2</RvdsVP>
  2526. <hadIRAM2>0</hadIRAM2>
  2527. <hadIROM2>0</hadIROM2>
  2528. <OnChipMemories>
  2529. <Ocm1>
  2530. <Type>0</Type>
  2531. <StartAddress>0x0</StartAddress>
  2532. <Size>0x0</Size>
  2533. </Ocm1>
  2534. <Ocm2>
  2535. <Type>0</Type>
  2536. <StartAddress>0x0</StartAddress>
  2537. <Size>0x0</Size>
  2538. </Ocm2>
  2539. <Ocm3>
  2540. <Type>0</Type>
  2541. <StartAddress>0x0</StartAddress>
  2542. <Size>0x0</Size>
  2543. </Ocm3>
  2544. <Ocm4>
  2545. <Type>0</Type>
  2546. <StartAddress>0x0</StartAddress>
  2547. <Size>0x0</Size>
  2548. </Ocm4>
  2549. <Ocm5>
  2550. <Type>0</Type>
  2551. <StartAddress>0x0</StartAddress>
  2552. <Size>0x0</Size>
  2553. </Ocm5>
  2554. <Ocm6>
  2555. <Type>0</Type>
  2556. <StartAddress>0x0</StartAddress>
  2557. <Size>0x0</Size>
  2558. </Ocm6>
  2559. <IRAM>
  2560. <Type>0</Type>
  2561. <StartAddress>0x20000000</StartAddress>
  2562. <Size>0x20000</Size>
  2563. </IRAM>
  2564. <IROM>
  2565. <Type>1</Type>
  2566. <StartAddress>0x0</StartAddress>
  2567. <Size>0x80000</Size>
  2568. </IROM>
  2569. <XRAM>
  2570. <Type>0</Type>
  2571. <StartAddress>0x0</StartAddress>
  2572. <Size>0x0</Size>
  2573. </XRAM>
  2574. <IRAM2>
  2575. <Type>0</Type>
  2576. <StartAddress>0x0</StartAddress>
  2577. <Size>0x0</Size>
  2578. </IRAM2>
  2579. <IROM2>
  2580. <Type>0</Type>
  2581. <StartAddress>0x0</StartAddress>
  2582. <Size>0x0</Size>
  2583. </IROM2>
  2584. </OnChipMemories>
  2585. </ArmMisc>
  2586. <Carm>
  2587. <arpcs>0</arpcs>
  2588. <stkchk>0</stkchk>
  2589. <reentr>0</reentr>
  2590. <interw>0</interw>
  2591. <bigend>0</bigend>
  2592. <Strict>0</Strict>
  2593. <Optim>5</Optim>
  2594. <wLevel>2</wLevel>
  2595. <uThumb>1</uThumb>
  2596. <VariousControls>
  2597. <MiscControls>-mfpu=fpv4-sp-d16 -mfloat-abi=hard -ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  2598. <Define>__CORTEX_M4F __FPU_PRESENT=1 __CMSIS_RTOS DBG_MSG</Define>
  2599. <Undefine></Undefine>
  2600. <IncludePath></IncludePath>
  2601. </VariousControls>
  2602. </Carm>
  2603. <Aarm>
  2604. <bBE>0</bBE>
  2605. <interw>0</interw>
  2606. <VariousControls>
  2607. <MiscControls>-mfpu=fpv4-sp-d16 -mfloat-abi=hard</MiscControls>
  2608. <Define>__CORTEX_M4F __CMSIS_RTOS</Define>
  2609. <Undefine></Undefine>
  2610. <IncludePath></IncludePath>
  2611. </VariousControls>
  2612. </Aarm>
  2613. <LDarm>
  2614. <umfTarg>1</umfTarg>
  2615. <enaGarb>1</enaGarb>
  2616. <noStart>1</noStart>
  2617. <noStLib>0</noStLib>
  2618. <uMathLib>0</uMathLib>
  2619. <TextAddressRange></TextAddressRange>
  2620. <DataAddressRange></DataAddressRange>
  2621. <BSSAddressRange></BSSAddressRange>
  2622. <IncludeLibs></IncludeLibs>
  2623. <IncludeDir></IncludeDir>
  2624. <Misc>-mfpu=fpv4-sp-d16 -mfloat-abi=hard</Misc>
  2625. <ScatterFile></ScatterFile>
  2626. </LDarm>
  2627. </TargetArm>
  2628. </TargetOption>
  2629. <Groups>
  2630. <Group>
  2631. <GroupName>Kernel</GroupName>
  2632. <Files>
  2633. <File>
  2634. <FileName>rt_CMSIS.c</FileName>
  2635. <FileType>1</FileType>
  2636. <FilePath>../rt_CMSIS.c</FilePath>
  2637. <FileOption>
  2638. <CommonProperty>
  2639. <UseCPPCompiler>2</UseCPPCompiler>
  2640. <RVCTCodeConst>0</RVCTCodeConst>
  2641. <RVCTZI>0</RVCTZI>
  2642. <RVCTOtherData>0</RVCTOtherData>
  2643. <ModuleSelection>0</ModuleSelection>
  2644. <IncludeInBuild>2</IncludeInBuild>
  2645. <AlwaysBuild>2</AlwaysBuild>
  2646. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2647. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2648. <PublicsOnly>2</PublicsOnly>
  2649. <StopOnExitCode>11</StopOnExitCode>
  2650. <CustomArgument></CustomArgument>
  2651. <IncludeLibraryModules></IncludeLibraryModules>
  2652. <ComprImg>1</ComprImg>
  2653. </CommonProperty>
  2654. <FileArm>
  2655. <Carm>
  2656. <arpcs>2</arpcs>
  2657. <stkchk>2</stkchk>
  2658. <reentr>2</reentr>
  2659. <interw>2</interw>
  2660. <bigend>2</bigend>
  2661. <Strict>0</Strict>
  2662. <Optim>0</Optim>
  2663. <wLevel>0</wLevel>
  2664. <uThumb>2</uThumb>
  2665. <VariousControls>
  2666. <MiscControls></MiscControls>
  2667. <Define></Define>
  2668. <Undefine></Undefine>
  2669. <IncludePath>..\..\INC</IncludePath>
  2670. </VariousControls>
  2671. </Carm>
  2672. </FileArm>
  2673. </FileOption>
  2674. </File>
  2675. <File>
  2676. <FileName>rt_Task.c</FileName>
  2677. <FileType>1</FileType>
  2678. <FilePath>../rt_Task.c</FilePath>
  2679. </File>
  2680. <File>
  2681. <FileName>rt_System.c</FileName>
  2682. <FileType>1</FileType>
  2683. <FilePath>../rt_System.c</FilePath>
  2684. </File>
  2685. <File>
  2686. <FileName>rt_Event.c</FileName>
  2687. <FileType>1</FileType>
  2688. <FilePath>../rt_Event.c</FilePath>
  2689. </File>
  2690. <File>
  2691. <FileName>rt_List.c</FileName>
  2692. <FileType>1</FileType>
  2693. <FilePath>../rt_List.c</FilePath>
  2694. </File>
  2695. <File>
  2696. <FileName>rt_Mailbox.c</FileName>
  2697. <FileType>1</FileType>
  2698. <FilePath>../rt_Mailbox.c</FilePath>
  2699. </File>
  2700. <File>
  2701. <FileName>rt_Semaphore.c</FileName>
  2702. <FileType>1</FileType>
  2703. <FilePath>../rt_Semaphore.c</FilePath>
  2704. </File>
  2705. <File>
  2706. <FileName>rt_Time.c</FileName>
  2707. <FileType>1</FileType>
  2708. <FilePath>../rt_Time.c</FilePath>
  2709. </File>
  2710. <File>
  2711. <FileName>rt_Timer.c</FileName>
  2712. <FileType>1</FileType>
  2713. <FilePath>../rt_Timer.c</FilePath>
  2714. </File>
  2715. <File>
  2716. <FileName>rt_Mutex.c</FileName>
  2717. <FileType>1</FileType>
  2718. <FilePath>../rt_Mutex.c</FilePath>
  2719. </File>
  2720. <File>
  2721. <FileName>rt_Robin.c</FileName>
  2722. <FileType>1</FileType>
  2723. <FilePath>../rt_Robin.c</FilePath>
  2724. </File>
  2725. <File>
  2726. <FileName>rt_MemBox.c</FileName>
  2727. <FileType>1</FileType>
  2728. <FilePath>../rt_MemBox.c</FilePath>
  2729. </File>
  2730. <File>
  2731. <FileName>rt_Memory.c</FileName>
  2732. <FileType>1</FileType>
  2733. <FilePath>../rt_Memory.c</FilePath>
  2734. </File>
  2735. </Files>
  2736. </Group>
  2737. <Group>
  2738. <GroupName>HAL</GroupName>
  2739. <Files>
  2740. <File>
  2741. <FileName>SVC_Table.S</FileName>
  2742. <FileType>2</FileType>
  2743. <FilePath>.\SVC_Table.S</FilePath>
  2744. </File>
  2745. <File>
  2746. <FileName>HAL_CM.c</FileName>
  2747. <FileType>1</FileType>
  2748. <FilePath>../HAL_CM.c</FilePath>
  2749. </File>
  2750. <File>
  2751. <FileName>HAL_CM0.S</FileName>
  2752. <FileType>2</FileType>
  2753. <FilePath>.\HAL_CM0.S</FilePath>
  2754. <FileOption>
  2755. <CommonProperty>
  2756. <UseCPPCompiler>2</UseCPPCompiler>
  2757. <RVCTCodeConst>0</RVCTCodeConst>
  2758. <RVCTZI>0</RVCTZI>
  2759. <RVCTOtherData>0</RVCTOtherData>
  2760. <ModuleSelection>0</ModuleSelection>
  2761. <IncludeInBuild>0</IncludeInBuild>
  2762. <AlwaysBuild>2</AlwaysBuild>
  2763. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2764. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2765. <PublicsOnly>2</PublicsOnly>
  2766. <StopOnExitCode>11</StopOnExitCode>
  2767. <CustomArgument></CustomArgument>
  2768. <IncludeLibraryModules></IncludeLibraryModules>
  2769. <ComprImg>1</ComprImg>
  2770. </CommonProperty>
  2771. <FileArm>
  2772. <Aarm>
  2773. <bBE>2</bBE>
  2774. <interw>2</interw>
  2775. <VariousControls>
  2776. <MiscControls></MiscControls>
  2777. <Define></Define>
  2778. <Undefine></Undefine>
  2779. <IncludePath></IncludePath>
  2780. </VariousControls>
  2781. </Aarm>
  2782. </FileArm>
  2783. </FileOption>
  2784. </File>
  2785. <File>
  2786. <FileName>HAL_CM3.S</FileName>
  2787. <FileType>2</FileType>
  2788. <FilePath>.\HAL_CM3.S</FilePath>
  2789. <FileOption>
  2790. <CommonProperty>
  2791. <UseCPPCompiler>2</UseCPPCompiler>
  2792. <RVCTCodeConst>0</RVCTCodeConst>
  2793. <RVCTZI>0</RVCTZI>
  2794. <RVCTOtherData>0</RVCTOtherData>
  2795. <ModuleSelection>0</ModuleSelection>
  2796. <IncludeInBuild>0</IncludeInBuild>
  2797. <AlwaysBuild>2</AlwaysBuild>
  2798. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  2799. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  2800. <PublicsOnly>2</PublicsOnly>
  2801. <StopOnExitCode>11</StopOnExitCode>
  2802. <CustomArgument></CustomArgument>
  2803. <IncludeLibraryModules></IncludeLibraryModules>
  2804. <ComprImg>1</ComprImg>
  2805. </CommonProperty>
  2806. <FileArm>
  2807. <Aarm>
  2808. <bBE>2</bBE>
  2809. <interw>2</interw>
  2810. <VariousControls>
  2811. <MiscControls></MiscControls>
  2812. <Define></Define>
  2813. <Undefine></Undefine>
  2814. <IncludePath></IncludePath>
  2815. </VariousControls>
  2816. </Aarm>
  2817. </FileArm>
  2818. </FileOption>
  2819. </File>
  2820. <File>
  2821. <FileName>HAL_CM4.S</FileName>
  2822. <FileType>2</FileType>
  2823. <FilePath>.\HAL_CM4.S</FilePath>
  2824. </File>
  2825. </Files>
  2826. </Group>
  2827. <Group>
  2828. <GroupName>::CMSIS</GroupName>
  2829. </Group>
  2830. </Groups>
  2831. </Target>
  2832. <Target>
  2833. <TargetName>CM4F_BE</TargetName>
  2834. <ToolsetNumber>0x3</ToolsetNumber>
  2835. <ToolsetName>ARM-GNU</ToolsetName>
  2836. <TargetOption>
  2837. <TargetCommonOption>
  2838. <Device>ARMCM4_FP</Device>
  2839. <Vendor>ARM</Vendor>
  2840. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  2841. <PackURL>http://www.keil.com/pack/</PackURL>
  2842. <Cpu>IROM(0x00000000,0x80000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ESEL ELITTLE</Cpu>
  2843. <FlashUtilSpec></FlashUtilSpec>
  2844. <StartupFile></StartupFile>
  2845. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL080000 -FP0($$Device:ARMCM4_FP$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  2846. <DeviceId>0</DeviceId>
  2847. <RegisterFile>$$Device:ARMCM4_FP$Device\ARM\ARMCM4\Include\ARMCM4_FP.h</RegisterFile>
  2848. <MemoryEnv></MemoryEnv>
  2849. <Cmp></Cmp>
  2850. <Asm></Asm>
  2851. <Linker></Linker>
  2852. <OHString></OHString>
  2853. <InfinionOptionDll></InfinionOptionDll>
  2854. <SLE66CMisc></SLE66CMisc>
  2855. <SLE66AMisc></SLE66AMisc>
  2856. <SLE66LinkerMisc></SLE66LinkerMisc>
  2857. <SFDFile>$$Device:ARMCM4_FP$Device\ARM\SVD\ARMCM4.svd</SFDFile>
  2858. <bCustSvd>0</bCustSvd>
  2859. <UseEnv>0</UseEnv>
  2860. <BinPath></BinPath>
  2861. <IncludePath></IncludePath>
  2862. <LibPath></LibPath>
  2863. <RegisterFilePath></RegisterFilePath>
  2864. <DBRegisterFilePath></DBRegisterFilePath>
  2865. <TargetStatus>
  2866. <Error>0</Error>
  2867. <ExitCodeStop>0</ExitCodeStop>
  2868. <ButtonStop>0</ButtonStop>
  2869. <NotGenerated>0</NotGenerated>
  2870. <InvalidFlash>1</InvalidFlash>
  2871. </TargetStatus>
  2872. <OutputDirectory>.\CM4F_BE\</OutputDirectory>
  2873. <OutputName>RTX_CM4_B</OutputName>
  2874. <CreateExecutable>0</CreateExecutable>
  2875. <CreateLib>1</CreateLib>
  2876. <CreateHexFile>0</CreateHexFile>
  2877. <DebugInformation>1</DebugInformation>
  2878. <BrowseInformation>0</BrowseInformation>
  2879. <ListingPath>.\CM4F_BE\</ListingPath>
  2880. <HexFormatSelection>1</HexFormatSelection>
  2881. <Merge32K>0</Merge32K>
  2882. <CreateBatchFile>0</CreateBatchFile>
  2883. <BeforeCompile>
  2884. <RunUserProg1>0</RunUserProg1>
  2885. <RunUserProg2>0</RunUserProg2>
  2886. <UserProg1Name></UserProg1Name>
  2887. <UserProg2Name></UserProg2Name>
  2888. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2889. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2890. <nStopU1X>0</nStopU1X>
  2891. <nStopU2X>0</nStopU2X>
  2892. </BeforeCompile>
  2893. <BeforeMake>
  2894. <RunUserProg1>0</RunUserProg1>
  2895. <RunUserProg2>0</RunUserProg2>
  2896. <UserProg1Name></UserProg1Name>
  2897. <UserProg2Name></UserProg2Name>
  2898. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2899. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2900. <nStopB1X>0</nStopB1X>
  2901. <nStopB2X>0</nStopB2X>
  2902. </BeforeMake>
  2903. <AfterMake>
  2904. <RunUserProg1>1</RunUserProg1>
  2905. <RunUserProg2>0</RunUserProg2>
  2906. <UserProg1Name>cmd.exe /C copy CM4F_BE\libRTX_CM4_B.a ..\..\LIB\GCC\</UserProg1Name>
  2907. <UserProg2Name></UserProg2Name>
  2908. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  2909. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  2910. <nStopA1X>0</nStopA1X>
  2911. <nStopA2X>0</nStopA2X>
  2912. </AfterMake>
  2913. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  2914. <SVCSIdString></SVCSIdString>
  2915. </TargetCommonOption>
  2916. <CommonProperty>
  2917. <UseCPPCompiler>0</UseCPPCompiler>
  2918. <RVCTCodeConst>0</RVCTCodeConst>
  2919. <RVCTZI>0</RVCTZI>
  2920. <RVCTOtherData>0</RVCTOtherData>
  2921. <ModuleSelection>0</ModuleSelection>
  2922. <IncludeInBuild>1</IncludeInBuild>
  2923. <AlwaysBuild>0</AlwaysBuild>
  2924. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  2925. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  2926. <PublicsOnly>0</PublicsOnly>
  2927. <StopOnExitCode>3</StopOnExitCode>
  2928. <CustomArgument></CustomArgument>
  2929. <IncludeLibraryModules></IncludeLibraryModules>
  2930. <ComprImg>1</ComprImg>
  2931. </CommonProperty>
  2932. <DllOption>
  2933. <SimDllName>SARMCM3.DLL</SimDllName>
  2934. <SimDllArguments> -MPU</SimDllArguments>
  2935. <SimDlgDll>DCM.DLL</SimDlgDll>
  2936. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  2937. <TargetDllName>SARMCM3.DLL</TargetDllName>
  2938. <TargetDllArguments> -MPU</TargetDllArguments>
  2939. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  2940. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  2941. </DllOption>
  2942. <DebugOption>
  2943. <OPTHX>
  2944. <HexSelection>1</HexSelection>
  2945. <HexRangeLowAddress>0</HexRangeLowAddress>
  2946. <HexRangeHighAddress>0</HexRangeHighAddress>
  2947. <HexOffset>0</HexOffset>
  2948. <Oh166RecLen>16</Oh166RecLen>
  2949. </OPTHX>
  2950. </DebugOption>
  2951. <Utilities>
  2952. <Flash1>
  2953. <UseTargetDll>1</UseTargetDll>
  2954. <UseExternalTool>0</UseExternalTool>
  2955. <RunIndependent>0</RunIndependent>
  2956. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  2957. <Capability>0</Capability>
  2958. <DriverSelection>-1</DriverSelection>
  2959. </Flash1>
  2960. <bUseTDR>1</bUseTDR>
  2961. <Flash2>BIN\UL2CM3.DLL</Flash2>
  2962. <Flash3></Flash3>
  2963. <Flash4></Flash4>
  2964. <pFcarmOut></pFcarmOut>
  2965. <pFcarmGrp></pFcarmGrp>
  2966. <pFcArmRoot></pFcArmRoot>
  2967. <FcArmLst>0</FcArmLst>
  2968. </Utilities>
  2969. <TargetArm>
  2970. <ArmMisc>
  2971. <asLst>0</asLst>
  2972. <asHll>1</asHll>
  2973. <asAsm>1</asAsm>
  2974. <asMacX>1</asMacX>
  2975. <asSyms>1</asSyms>
  2976. <asFals>1</asFals>
  2977. <asDbgD>1</asDbgD>
  2978. <asForm>1</asForm>
  2979. <ldLst>0</ldLst>
  2980. <ldmm>1</ldmm>
  2981. <ldXref>1</ldXref>
  2982. <BigEnd>1</BigEnd>
  2983. <GCPUTYP>"Cortex-M4"</GCPUTYP>
  2984. <mOS>0</mOS>
  2985. <uocRom>0</uocRom>
  2986. <uocRam>0</uocRam>
  2987. <hadIROM>1</hadIROM>
  2988. <hadIRAM>1</hadIRAM>
  2989. <hadXRAM>0</hadXRAM>
  2990. <uocXRam>0</uocXRam>
  2991. <RvdsVP>2</RvdsVP>
  2992. <hadIRAM2>0</hadIRAM2>
  2993. <hadIROM2>0</hadIROM2>
  2994. <OnChipMemories>
  2995. <Ocm1>
  2996. <Type>0</Type>
  2997. <StartAddress>0x0</StartAddress>
  2998. <Size>0x0</Size>
  2999. </Ocm1>
  3000. <Ocm2>
  3001. <Type>0</Type>
  3002. <StartAddress>0x0</StartAddress>
  3003. <Size>0x0</Size>
  3004. </Ocm2>
  3005. <Ocm3>
  3006. <Type>0</Type>
  3007. <StartAddress>0x0</StartAddress>
  3008. <Size>0x0</Size>
  3009. </Ocm3>
  3010. <Ocm4>
  3011. <Type>0</Type>
  3012. <StartAddress>0x0</StartAddress>
  3013. <Size>0x0</Size>
  3014. </Ocm4>
  3015. <Ocm5>
  3016. <Type>0</Type>
  3017. <StartAddress>0x0</StartAddress>
  3018. <Size>0x0</Size>
  3019. </Ocm5>
  3020. <Ocm6>
  3021. <Type>0</Type>
  3022. <StartAddress>0x0</StartAddress>
  3023. <Size>0x0</Size>
  3024. </Ocm6>
  3025. <IRAM>
  3026. <Type>0</Type>
  3027. <StartAddress>0x20000000</StartAddress>
  3028. <Size>0x20000</Size>
  3029. </IRAM>
  3030. <IROM>
  3031. <Type>1</Type>
  3032. <StartAddress>0x0</StartAddress>
  3033. <Size>0x80000</Size>
  3034. </IROM>
  3035. <XRAM>
  3036. <Type>0</Type>
  3037. <StartAddress>0x0</StartAddress>
  3038. <Size>0x0</Size>
  3039. </XRAM>
  3040. <IRAM2>
  3041. <Type>0</Type>
  3042. <StartAddress>0x0</StartAddress>
  3043. <Size>0x0</Size>
  3044. </IRAM2>
  3045. <IROM2>
  3046. <Type>0</Type>
  3047. <StartAddress>0x0</StartAddress>
  3048. <Size>0x0</Size>
  3049. </IROM2>
  3050. </OnChipMemories>
  3051. </ArmMisc>
  3052. <Carm>
  3053. <arpcs>0</arpcs>
  3054. <stkchk>0</stkchk>
  3055. <reentr>0</reentr>
  3056. <interw>0</interw>
  3057. <bigend>0</bigend>
  3058. <Strict>0</Strict>
  3059. <Optim>5</Optim>
  3060. <wLevel>2</wLevel>
  3061. <uThumb>1</uThumb>
  3062. <VariousControls>
  3063. <MiscControls>-mfpu=fpv4-sp-d16 -mfloat-abi=hard -ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  3064. <Define>__CORTEX_M4F __FPU_PRESENT=1 __CMSIS_RTOS DBG_MSG</Define>
  3065. <Undefine></Undefine>
  3066. <IncludePath></IncludePath>
  3067. </VariousControls>
  3068. </Carm>
  3069. <Aarm>
  3070. <bBE>0</bBE>
  3071. <interw>0</interw>
  3072. <VariousControls>
  3073. <MiscControls>-mfpu=fpv4-sp-d16 -mfloat-abi=hard</MiscControls>
  3074. <Define>__CORTEX_M4F __CMSIS_RTOS</Define>
  3075. <Undefine></Undefine>
  3076. <IncludePath></IncludePath>
  3077. </VariousControls>
  3078. </Aarm>
  3079. <LDarm>
  3080. <umfTarg>1</umfTarg>
  3081. <enaGarb>1</enaGarb>
  3082. <noStart>1</noStart>
  3083. <noStLib>0</noStLib>
  3084. <uMathLib>0</uMathLib>
  3085. <TextAddressRange></TextAddressRange>
  3086. <DataAddressRange></DataAddressRange>
  3087. <BSSAddressRange></BSSAddressRange>
  3088. <IncludeLibs></IncludeLibs>
  3089. <IncludeDir></IncludeDir>
  3090. <Misc>-mfpu=fpv4-sp-d16 -mfloat-abi=hard</Misc>
  3091. <ScatterFile></ScatterFile>
  3092. </LDarm>
  3093. </TargetArm>
  3094. </TargetOption>
  3095. <Groups>
  3096. <Group>
  3097. <GroupName>Kernel</GroupName>
  3098. <Files>
  3099. <File>
  3100. <FileName>rt_CMSIS.c</FileName>
  3101. <FileType>1</FileType>
  3102. <FilePath>../rt_CMSIS.c</FilePath>
  3103. <FileOption>
  3104. <CommonProperty>
  3105. <UseCPPCompiler>2</UseCPPCompiler>
  3106. <RVCTCodeConst>0</RVCTCodeConst>
  3107. <RVCTZI>0</RVCTZI>
  3108. <RVCTOtherData>0</RVCTOtherData>
  3109. <ModuleSelection>0</ModuleSelection>
  3110. <IncludeInBuild>2</IncludeInBuild>
  3111. <AlwaysBuild>2</AlwaysBuild>
  3112. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3113. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3114. <PublicsOnly>2</PublicsOnly>
  3115. <StopOnExitCode>11</StopOnExitCode>
  3116. <CustomArgument></CustomArgument>
  3117. <IncludeLibraryModules></IncludeLibraryModules>
  3118. <ComprImg>1</ComprImg>
  3119. </CommonProperty>
  3120. <FileArm>
  3121. <Carm>
  3122. <arpcs>2</arpcs>
  3123. <stkchk>2</stkchk>
  3124. <reentr>2</reentr>
  3125. <interw>2</interw>
  3126. <bigend>2</bigend>
  3127. <Strict>0</Strict>
  3128. <Optim>0</Optim>
  3129. <wLevel>0</wLevel>
  3130. <uThumb>2</uThumb>
  3131. <VariousControls>
  3132. <MiscControls></MiscControls>
  3133. <Define></Define>
  3134. <Undefine></Undefine>
  3135. <IncludePath>..\..\INC</IncludePath>
  3136. </VariousControls>
  3137. </Carm>
  3138. </FileArm>
  3139. </FileOption>
  3140. </File>
  3141. <File>
  3142. <FileName>rt_Task.c</FileName>
  3143. <FileType>1</FileType>
  3144. <FilePath>../rt_Task.c</FilePath>
  3145. </File>
  3146. <File>
  3147. <FileName>rt_System.c</FileName>
  3148. <FileType>1</FileType>
  3149. <FilePath>../rt_System.c</FilePath>
  3150. </File>
  3151. <File>
  3152. <FileName>rt_Event.c</FileName>
  3153. <FileType>1</FileType>
  3154. <FilePath>../rt_Event.c</FilePath>
  3155. </File>
  3156. <File>
  3157. <FileName>rt_List.c</FileName>
  3158. <FileType>1</FileType>
  3159. <FilePath>../rt_List.c</FilePath>
  3160. </File>
  3161. <File>
  3162. <FileName>rt_Mailbox.c</FileName>
  3163. <FileType>1</FileType>
  3164. <FilePath>../rt_Mailbox.c</FilePath>
  3165. </File>
  3166. <File>
  3167. <FileName>rt_Semaphore.c</FileName>
  3168. <FileType>1</FileType>
  3169. <FilePath>../rt_Semaphore.c</FilePath>
  3170. </File>
  3171. <File>
  3172. <FileName>rt_Time.c</FileName>
  3173. <FileType>1</FileType>
  3174. <FilePath>../rt_Time.c</FilePath>
  3175. </File>
  3176. <File>
  3177. <FileName>rt_Timer.c</FileName>
  3178. <FileType>1</FileType>
  3179. <FilePath>../rt_Timer.c</FilePath>
  3180. </File>
  3181. <File>
  3182. <FileName>rt_Mutex.c</FileName>
  3183. <FileType>1</FileType>
  3184. <FilePath>../rt_Mutex.c</FilePath>
  3185. </File>
  3186. <File>
  3187. <FileName>rt_Robin.c</FileName>
  3188. <FileType>1</FileType>
  3189. <FilePath>../rt_Robin.c</FilePath>
  3190. </File>
  3191. <File>
  3192. <FileName>rt_MemBox.c</FileName>
  3193. <FileType>1</FileType>
  3194. <FilePath>../rt_MemBox.c</FilePath>
  3195. </File>
  3196. <File>
  3197. <FileName>rt_Memory.c</FileName>
  3198. <FileType>1</FileType>
  3199. <FilePath>../rt_Memory.c</FilePath>
  3200. </File>
  3201. </Files>
  3202. </Group>
  3203. <Group>
  3204. <GroupName>HAL</GroupName>
  3205. <Files>
  3206. <File>
  3207. <FileName>SVC_Table.S</FileName>
  3208. <FileType>2</FileType>
  3209. <FilePath>.\SVC_Table.S</FilePath>
  3210. </File>
  3211. <File>
  3212. <FileName>HAL_CM.c</FileName>
  3213. <FileType>1</FileType>
  3214. <FilePath>../HAL_CM.c</FilePath>
  3215. </File>
  3216. <File>
  3217. <FileName>HAL_CM0.S</FileName>
  3218. <FileType>2</FileType>
  3219. <FilePath>.\HAL_CM0.S</FilePath>
  3220. <FileOption>
  3221. <CommonProperty>
  3222. <UseCPPCompiler>2</UseCPPCompiler>
  3223. <RVCTCodeConst>0</RVCTCodeConst>
  3224. <RVCTZI>0</RVCTZI>
  3225. <RVCTOtherData>0</RVCTOtherData>
  3226. <ModuleSelection>0</ModuleSelection>
  3227. <IncludeInBuild>0</IncludeInBuild>
  3228. <AlwaysBuild>2</AlwaysBuild>
  3229. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3230. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3231. <PublicsOnly>2</PublicsOnly>
  3232. <StopOnExitCode>11</StopOnExitCode>
  3233. <CustomArgument></CustomArgument>
  3234. <IncludeLibraryModules></IncludeLibraryModules>
  3235. <ComprImg>1</ComprImg>
  3236. </CommonProperty>
  3237. <FileArm>
  3238. <Aarm>
  3239. <bBE>2</bBE>
  3240. <interw>2</interw>
  3241. <VariousControls>
  3242. <MiscControls></MiscControls>
  3243. <Define></Define>
  3244. <Undefine></Undefine>
  3245. <IncludePath></IncludePath>
  3246. </VariousControls>
  3247. </Aarm>
  3248. </FileArm>
  3249. </FileOption>
  3250. </File>
  3251. <File>
  3252. <FileName>HAL_CM3.S</FileName>
  3253. <FileType>2</FileType>
  3254. <FilePath>.\HAL_CM3.S</FilePath>
  3255. <FileOption>
  3256. <CommonProperty>
  3257. <UseCPPCompiler>2</UseCPPCompiler>
  3258. <RVCTCodeConst>0</RVCTCodeConst>
  3259. <RVCTZI>0</RVCTZI>
  3260. <RVCTOtherData>0</RVCTOtherData>
  3261. <ModuleSelection>0</ModuleSelection>
  3262. <IncludeInBuild>0</IncludeInBuild>
  3263. <AlwaysBuild>2</AlwaysBuild>
  3264. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3265. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3266. <PublicsOnly>2</PublicsOnly>
  3267. <StopOnExitCode>11</StopOnExitCode>
  3268. <CustomArgument></CustomArgument>
  3269. <IncludeLibraryModules></IncludeLibraryModules>
  3270. <ComprImg>1</ComprImg>
  3271. </CommonProperty>
  3272. <FileArm>
  3273. <Aarm>
  3274. <bBE>2</bBE>
  3275. <interw>2</interw>
  3276. <VariousControls>
  3277. <MiscControls></MiscControls>
  3278. <Define></Define>
  3279. <Undefine></Undefine>
  3280. <IncludePath></IncludePath>
  3281. </VariousControls>
  3282. </Aarm>
  3283. </FileArm>
  3284. </FileOption>
  3285. </File>
  3286. <File>
  3287. <FileName>HAL_CM4.S</FileName>
  3288. <FileType>2</FileType>
  3289. <FilePath>.\HAL_CM4.S</FilePath>
  3290. </File>
  3291. </Files>
  3292. </Group>
  3293. <Group>
  3294. <GroupName>::CMSIS</GroupName>
  3295. </Group>
  3296. </Groups>
  3297. </Target>
  3298. <Target>
  3299. <TargetName>CM4F_LE_IFX</TargetName>
  3300. <ToolsetNumber>0x3</ToolsetNumber>
  3301. <ToolsetName>ARM-GNU</ToolsetName>
  3302. <TargetOption>
  3303. <TargetCommonOption>
  3304. <Device>ARMCM4_FP</Device>
  3305. <Vendor>ARM</Vendor>
  3306. <PackID>ARM.CMSIS.5.0.0-Beta13</PackID>
  3307. <PackURL>http://www.keil.com/pack/</PackURL>
  3308. <Cpu>IROM(0x00000000,0x80000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ESEL ELITTLE</Cpu>
  3309. <FlashUtilSpec></FlashUtilSpec>
  3310. <StartupFile></StartupFile>
  3311. <FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0NEW_DEVICE -FS00 -FL080000 -FP0($$Device:ARMCM4_FP$Device\ARM\Flash\NEW_DEVICE.FLM))</FlashDriverDll>
  3312. <DeviceId>0</DeviceId>
  3313. <RegisterFile>$$Device:ARMCM4_FP$Device\ARM\ARMCM4\Include\ARMCM4_FP.h</RegisterFile>
  3314. <MemoryEnv></MemoryEnv>
  3315. <Cmp></Cmp>
  3316. <Asm></Asm>
  3317. <Linker></Linker>
  3318. <OHString></OHString>
  3319. <InfinionOptionDll></InfinionOptionDll>
  3320. <SLE66CMisc></SLE66CMisc>
  3321. <SLE66AMisc></SLE66AMisc>
  3322. <SLE66LinkerMisc></SLE66LinkerMisc>
  3323. <SFDFile>$$Device:ARMCM4_FP$Device\ARM\SVD\ARMCM4.svd</SFDFile>
  3324. <bCustSvd>0</bCustSvd>
  3325. <UseEnv>0</UseEnv>
  3326. <BinPath></BinPath>
  3327. <IncludePath></IncludePath>
  3328. <LibPath></LibPath>
  3329. <RegisterFilePath></RegisterFilePath>
  3330. <DBRegisterFilePath></DBRegisterFilePath>
  3331. <TargetStatus>
  3332. <Error>0</Error>
  3333. <ExitCodeStop>0</ExitCodeStop>
  3334. <ButtonStop>0</ButtonStop>
  3335. <NotGenerated>0</NotGenerated>
  3336. <InvalidFlash>1</InvalidFlash>
  3337. </TargetStatus>
  3338. <OutputDirectory>.\CM4F_LE_IFX\</OutputDirectory>
  3339. <OutputName>RTX_CM4_IFX</OutputName>
  3340. <CreateExecutable>0</CreateExecutable>
  3341. <CreateLib>1</CreateLib>
  3342. <CreateHexFile>0</CreateHexFile>
  3343. <DebugInformation>1</DebugInformation>
  3344. <BrowseInformation>0</BrowseInformation>
  3345. <ListingPath>.\CM4F_LE_IFX\</ListingPath>
  3346. <HexFormatSelection>1</HexFormatSelection>
  3347. <Merge32K>0</Merge32K>
  3348. <CreateBatchFile>0</CreateBatchFile>
  3349. <BeforeCompile>
  3350. <RunUserProg1>0</RunUserProg1>
  3351. <RunUserProg2>0</RunUserProg2>
  3352. <UserProg1Name></UserProg1Name>
  3353. <UserProg2Name></UserProg2Name>
  3354. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  3355. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  3356. <nStopU1X>0</nStopU1X>
  3357. <nStopU2X>0</nStopU2X>
  3358. </BeforeCompile>
  3359. <BeforeMake>
  3360. <RunUserProg1>0</RunUserProg1>
  3361. <RunUserProg2>0</RunUserProg2>
  3362. <UserProg1Name></UserProg1Name>
  3363. <UserProg2Name></UserProg2Name>
  3364. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  3365. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  3366. <nStopB1X>0</nStopB1X>
  3367. <nStopB2X>0</nStopB2X>
  3368. </BeforeMake>
  3369. <AfterMake>
  3370. <RunUserProg1>1</RunUserProg1>
  3371. <RunUserProg2>0</RunUserProg2>
  3372. <UserProg1Name>cmd.exe /C copy CM4F_LE_IFX\libRTX_CM4_IFX.a ..\..\LIB\GCC\</UserProg1Name>
  3373. <UserProg2Name></UserProg2Name>
  3374. <UserProg1Dos16Mode>0</UserProg1Dos16Mode>
  3375. <UserProg2Dos16Mode>0</UserProg2Dos16Mode>
  3376. <nStopA1X>0</nStopA1X>
  3377. <nStopA2X>0</nStopA2X>
  3378. </AfterMake>
  3379. <SelectedForBatchBuild>1</SelectedForBatchBuild>
  3380. <SVCSIdString></SVCSIdString>
  3381. </TargetCommonOption>
  3382. <CommonProperty>
  3383. <UseCPPCompiler>0</UseCPPCompiler>
  3384. <RVCTCodeConst>0</RVCTCodeConst>
  3385. <RVCTZI>0</RVCTZI>
  3386. <RVCTOtherData>0</RVCTOtherData>
  3387. <ModuleSelection>0</ModuleSelection>
  3388. <IncludeInBuild>1</IncludeInBuild>
  3389. <AlwaysBuild>0</AlwaysBuild>
  3390. <GenerateAssemblyFile>0</GenerateAssemblyFile>
  3391. <AssembleAssemblyFile>0</AssembleAssemblyFile>
  3392. <PublicsOnly>0</PublicsOnly>
  3393. <StopOnExitCode>3</StopOnExitCode>
  3394. <CustomArgument></CustomArgument>
  3395. <IncludeLibraryModules></IncludeLibraryModules>
  3396. <ComprImg>1</ComprImg>
  3397. </CommonProperty>
  3398. <DllOption>
  3399. <SimDllName>SARMCM3.DLL</SimDllName>
  3400. <SimDllArguments> -MPU</SimDllArguments>
  3401. <SimDlgDll>DCM.DLL</SimDlgDll>
  3402. <SimDlgDllArguments>-pCM4</SimDlgDllArguments>
  3403. <TargetDllName>SARMCM3.DLL</TargetDllName>
  3404. <TargetDllArguments> -MPU</TargetDllArguments>
  3405. <TargetDlgDll>TCM.DLL</TargetDlgDll>
  3406. <TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
  3407. </DllOption>
  3408. <DebugOption>
  3409. <OPTHX>
  3410. <HexSelection>1</HexSelection>
  3411. <HexRangeLowAddress>0</HexRangeLowAddress>
  3412. <HexRangeHighAddress>0</HexRangeHighAddress>
  3413. <HexOffset>0</HexOffset>
  3414. <Oh166RecLen>16</Oh166RecLen>
  3415. </OPTHX>
  3416. </DebugOption>
  3417. <Utilities>
  3418. <Flash1>
  3419. <UseTargetDll>1</UseTargetDll>
  3420. <UseExternalTool>0</UseExternalTool>
  3421. <RunIndependent>0</RunIndependent>
  3422. <UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
  3423. <Capability>0</Capability>
  3424. <DriverSelection>-1</DriverSelection>
  3425. </Flash1>
  3426. <bUseTDR>1</bUseTDR>
  3427. <Flash2>BIN\UL2CM3.DLL</Flash2>
  3428. <Flash3></Flash3>
  3429. <Flash4></Flash4>
  3430. <pFcarmOut></pFcarmOut>
  3431. <pFcarmGrp></pFcarmGrp>
  3432. <pFcArmRoot></pFcArmRoot>
  3433. <FcArmLst>0</FcArmLst>
  3434. </Utilities>
  3435. <TargetArm>
  3436. <ArmMisc>
  3437. <asLst>0</asLst>
  3438. <asHll>1</asHll>
  3439. <asAsm>1</asAsm>
  3440. <asMacX>1</asMacX>
  3441. <asSyms>1</asSyms>
  3442. <asFals>1</asFals>
  3443. <asDbgD>1</asDbgD>
  3444. <asForm>1</asForm>
  3445. <ldLst>0</ldLst>
  3446. <ldmm>1</ldmm>
  3447. <ldXref>1</ldXref>
  3448. <BigEnd>0</BigEnd>
  3449. <GCPUTYP>"Cortex-M4"</GCPUTYP>
  3450. <mOS>0</mOS>
  3451. <uocRom>0</uocRom>
  3452. <uocRam>0</uocRam>
  3453. <hadIROM>1</hadIROM>
  3454. <hadIRAM>1</hadIRAM>
  3455. <hadXRAM>0</hadXRAM>
  3456. <uocXRam>0</uocXRam>
  3457. <RvdsVP>2</RvdsVP>
  3458. <hadIRAM2>0</hadIRAM2>
  3459. <hadIROM2>0</hadIROM2>
  3460. <OnChipMemories>
  3461. <Ocm1>
  3462. <Type>0</Type>
  3463. <StartAddress>0x0</StartAddress>
  3464. <Size>0x0</Size>
  3465. </Ocm1>
  3466. <Ocm2>
  3467. <Type>0</Type>
  3468. <StartAddress>0x0</StartAddress>
  3469. <Size>0x0</Size>
  3470. </Ocm2>
  3471. <Ocm3>
  3472. <Type>0</Type>
  3473. <StartAddress>0x0</StartAddress>
  3474. <Size>0x0</Size>
  3475. </Ocm3>
  3476. <Ocm4>
  3477. <Type>0</Type>
  3478. <StartAddress>0x0</StartAddress>
  3479. <Size>0x0</Size>
  3480. </Ocm4>
  3481. <Ocm5>
  3482. <Type>0</Type>
  3483. <StartAddress>0x0</StartAddress>
  3484. <Size>0x0</Size>
  3485. </Ocm5>
  3486. <Ocm6>
  3487. <Type>0</Type>
  3488. <StartAddress>0x0</StartAddress>
  3489. <Size>0x0</Size>
  3490. </Ocm6>
  3491. <IRAM>
  3492. <Type>0</Type>
  3493. <StartAddress>0x20000000</StartAddress>
  3494. <Size>0x20000</Size>
  3495. </IRAM>
  3496. <IROM>
  3497. <Type>1</Type>
  3498. <StartAddress>0x0</StartAddress>
  3499. <Size>0x80000</Size>
  3500. </IROM>
  3501. <XRAM>
  3502. <Type>0</Type>
  3503. <StartAddress>0x0</StartAddress>
  3504. <Size>0x0</Size>
  3505. </XRAM>
  3506. <IRAM2>
  3507. <Type>0</Type>
  3508. <StartAddress>0x0</StartAddress>
  3509. <Size>0x0</Size>
  3510. </IRAM2>
  3511. <IROM2>
  3512. <Type>0</Type>
  3513. <StartAddress>0x0</StartAddress>
  3514. <Size>0x0</Size>
  3515. </IROM2>
  3516. </OnChipMemories>
  3517. </ArmMisc>
  3518. <Carm>
  3519. <arpcs>0</arpcs>
  3520. <stkchk>0</stkchk>
  3521. <reentr>0</reentr>
  3522. <interw>0</interw>
  3523. <bigend>0</bigend>
  3524. <Strict>0</Strict>
  3525. <Optim>5</Optim>
  3526. <wLevel>2</wLevel>
  3527. <uThumb>1</uThumb>
  3528. <VariousControls>
  3529. <MiscControls>-mfpu=fpv4-sp-d16 -mfloat-abi=hard -ffunction-sections -Wno-maybe-uninitialized</MiscControls>
  3530. <Define>__CORTEX_M4F __FPU_PRESENT=1 __CMSIS_RTOS DBG_MSG</Define>
  3531. <Undefine></Undefine>
  3532. <IncludePath></IncludePath>
  3533. </VariousControls>
  3534. </Carm>
  3535. <Aarm>
  3536. <bBE>0</bBE>
  3537. <interw>0</interw>
  3538. <VariousControls>
  3539. <MiscControls>-mfpu=fpv4-sp-d16 -mfloat-abi=hard</MiscControls>
  3540. <Define>__CORTEX_M4F __CMSIS_RTOS</Define>
  3541. <Undefine></Undefine>
  3542. <IncludePath></IncludePath>
  3543. </VariousControls>
  3544. </Aarm>
  3545. <LDarm>
  3546. <umfTarg>1</umfTarg>
  3547. <enaGarb>1</enaGarb>
  3548. <noStart>1</noStart>
  3549. <noStLib>0</noStLib>
  3550. <uMathLib>0</uMathLib>
  3551. <TextAddressRange></TextAddressRange>
  3552. <DataAddressRange></DataAddressRange>
  3553. <BSSAddressRange></BSSAddressRange>
  3554. <IncludeLibs></IncludeLibs>
  3555. <IncludeDir></IncludeDir>
  3556. <Misc>-mfpu=fpv4-sp-d16 -mfloat-abi=hard</Misc>
  3557. <ScatterFile></ScatterFile>
  3558. </LDarm>
  3559. </TargetArm>
  3560. </TargetOption>
  3561. <Groups>
  3562. <Group>
  3563. <GroupName>Kernel</GroupName>
  3564. <Files>
  3565. <File>
  3566. <FileName>rt_CMSIS.c</FileName>
  3567. <FileType>1</FileType>
  3568. <FilePath>../rt_CMSIS.c</FilePath>
  3569. <FileOption>
  3570. <CommonProperty>
  3571. <UseCPPCompiler>2</UseCPPCompiler>
  3572. <RVCTCodeConst>0</RVCTCodeConst>
  3573. <RVCTZI>0</RVCTZI>
  3574. <RVCTOtherData>0</RVCTOtherData>
  3575. <ModuleSelection>0</ModuleSelection>
  3576. <IncludeInBuild>2</IncludeInBuild>
  3577. <AlwaysBuild>2</AlwaysBuild>
  3578. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3579. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3580. <PublicsOnly>2</PublicsOnly>
  3581. <StopOnExitCode>11</StopOnExitCode>
  3582. <CustomArgument></CustomArgument>
  3583. <IncludeLibraryModules></IncludeLibraryModules>
  3584. <ComprImg>1</ComprImg>
  3585. </CommonProperty>
  3586. <FileArm>
  3587. <Carm>
  3588. <arpcs>2</arpcs>
  3589. <stkchk>2</stkchk>
  3590. <reentr>2</reentr>
  3591. <interw>2</interw>
  3592. <bigend>2</bigend>
  3593. <Strict>0</Strict>
  3594. <Optim>0</Optim>
  3595. <wLevel>0</wLevel>
  3596. <uThumb>2</uThumb>
  3597. <VariousControls>
  3598. <MiscControls></MiscControls>
  3599. <Define></Define>
  3600. <Undefine></Undefine>
  3601. <IncludePath>..\..\INC</IncludePath>
  3602. </VariousControls>
  3603. </Carm>
  3604. </FileArm>
  3605. </FileOption>
  3606. </File>
  3607. <File>
  3608. <FileName>rt_Task.c</FileName>
  3609. <FileType>1</FileType>
  3610. <FilePath>../rt_Task.c</FilePath>
  3611. </File>
  3612. <File>
  3613. <FileName>rt_System.c</FileName>
  3614. <FileType>1</FileType>
  3615. <FilePath>../rt_System.c</FilePath>
  3616. </File>
  3617. <File>
  3618. <FileName>rt_Event.c</FileName>
  3619. <FileType>1</FileType>
  3620. <FilePath>../rt_Event.c</FilePath>
  3621. </File>
  3622. <File>
  3623. <FileName>rt_List.c</FileName>
  3624. <FileType>1</FileType>
  3625. <FilePath>../rt_List.c</FilePath>
  3626. </File>
  3627. <File>
  3628. <FileName>rt_Mailbox.c</FileName>
  3629. <FileType>1</FileType>
  3630. <FilePath>../rt_Mailbox.c</FilePath>
  3631. </File>
  3632. <File>
  3633. <FileName>rt_Semaphore.c</FileName>
  3634. <FileType>1</FileType>
  3635. <FilePath>../rt_Semaphore.c</FilePath>
  3636. </File>
  3637. <File>
  3638. <FileName>rt_Time.c</FileName>
  3639. <FileType>1</FileType>
  3640. <FilePath>../rt_Time.c</FilePath>
  3641. </File>
  3642. <File>
  3643. <FileName>rt_Timer.c</FileName>
  3644. <FileType>1</FileType>
  3645. <FilePath>../rt_Timer.c</FilePath>
  3646. </File>
  3647. <File>
  3648. <FileName>rt_Mutex.c</FileName>
  3649. <FileType>1</FileType>
  3650. <FilePath>../rt_Mutex.c</FilePath>
  3651. </File>
  3652. <File>
  3653. <FileName>rt_Robin.c</FileName>
  3654. <FileType>1</FileType>
  3655. <FilePath>../rt_Robin.c</FilePath>
  3656. </File>
  3657. <File>
  3658. <FileName>rt_MemBox.c</FileName>
  3659. <FileType>1</FileType>
  3660. <FilePath>../rt_MemBox.c</FilePath>
  3661. </File>
  3662. <File>
  3663. <FileName>rt_Memory.c</FileName>
  3664. <FileType>1</FileType>
  3665. <FilePath>../rt_Memory.c</FilePath>
  3666. </File>
  3667. </Files>
  3668. </Group>
  3669. <Group>
  3670. <GroupName>HAL</GroupName>
  3671. <Files>
  3672. <File>
  3673. <FileName>SVC_Table.S</FileName>
  3674. <FileType>2</FileType>
  3675. <FilePath>.\SVC_Table.S</FilePath>
  3676. </File>
  3677. <File>
  3678. <FileName>HAL_CM.c</FileName>
  3679. <FileType>1</FileType>
  3680. <FilePath>../HAL_CM.c</FilePath>
  3681. </File>
  3682. <File>
  3683. <FileName>HAL_CM0.S</FileName>
  3684. <FileType>2</FileType>
  3685. <FilePath>.\HAL_CM0.S</FilePath>
  3686. <FileOption>
  3687. <CommonProperty>
  3688. <UseCPPCompiler>2</UseCPPCompiler>
  3689. <RVCTCodeConst>0</RVCTCodeConst>
  3690. <RVCTZI>0</RVCTZI>
  3691. <RVCTOtherData>0</RVCTOtherData>
  3692. <ModuleSelection>0</ModuleSelection>
  3693. <IncludeInBuild>0</IncludeInBuild>
  3694. <AlwaysBuild>2</AlwaysBuild>
  3695. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3696. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3697. <PublicsOnly>2</PublicsOnly>
  3698. <StopOnExitCode>11</StopOnExitCode>
  3699. <CustomArgument></CustomArgument>
  3700. <IncludeLibraryModules></IncludeLibraryModules>
  3701. <ComprImg>1</ComprImg>
  3702. </CommonProperty>
  3703. <FileArm>
  3704. <Aarm>
  3705. <bBE>2</bBE>
  3706. <interw>2</interw>
  3707. <VariousControls>
  3708. <MiscControls></MiscControls>
  3709. <Define></Define>
  3710. <Undefine></Undefine>
  3711. <IncludePath></IncludePath>
  3712. </VariousControls>
  3713. </Aarm>
  3714. </FileArm>
  3715. </FileOption>
  3716. </File>
  3717. <File>
  3718. <FileName>HAL_CM3.S</FileName>
  3719. <FileType>2</FileType>
  3720. <FilePath>.\HAL_CM3.S</FilePath>
  3721. <FileOption>
  3722. <CommonProperty>
  3723. <UseCPPCompiler>2</UseCPPCompiler>
  3724. <RVCTCodeConst>0</RVCTCodeConst>
  3725. <RVCTZI>0</RVCTZI>
  3726. <RVCTOtherData>0</RVCTOtherData>
  3727. <ModuleSelection>0</ModuleSelection>
  3728. <IncludeInBuild>0</IncludeInBuild>
  3729. <AlwaysBuild>2</AlwaysBuild>
  3730. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3731. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3732. <PublicsOnly>2</PublicsOnly>
  3733. <StopOnExitCode>11</StopOnExitCode>
  3734. <CustomArgument></CustomArgument>
  3735. <IncludeLibraryModules></IncludeLibraryModules>
  3736. <ComprImg>1</ComprImg>
  3737. </CommonProperty>
  3738. <FileArm>
  3739. <Aarm>
  3740. <bBE>2</bBE>
  3741. <interw>2</interw>
  3742. <VariousControls>
  3743. <MiscControls></MiscControls>
  3744. <Define></Define>
  3745. <Undefine></Undefine>
  3746. <IncludePath></IncludePath>
  3747. </VariousControls>
  3748. </Aarm>
  3749. </FileArm>
  3750. </FileOption>
  3751. </File>
  3752. <File>
  3753. <FileName>HAL_CM4.S</FileName>
  3754. <FileType>2</FileType>
  3755. <FilePath>.\HAL_CM4.S</FilePath>
  3756. <FileOption>
  3757. <CommonProperty>
  3758. <UseCPPCompiler>2</UseCPPCompiler>
  3759. <RVCTCodeConst>0</RVCTCodeConst>
  3760. <RVCTZI>0</RVCTZI>
  3761. <RVCTOtherData>0</RVCTOtherData>
  3762. <ModuleSelection>0</ModuleSelection>
  3763. <IncludeInBuild>2</IncludeInBuild>
  3764. <AlwaysBuild>2</AlwaysBuild>
  3765. <GenerateAssemblyFile>2</GenerateAssemblyFile>
  3766. <AssembleAssemblyFile>2</AssembleAssemblyFile>
  3767. <PublicsOnly>2</PublicsOnly>
  3768. <StopOnExitCode>11</StopOnExitCode>
  3769. <CustomArgument></CustomArgument>
  3770. <IncludeLibraryModules></IncludeLibraryModules>
  3771. <ComprImg>1</ComprImg>
  3772. </CommonProperty>
  3773. <FileArm>
  3774. <Aarm>
  3775. <bBE>2</bBE>
  3776. <interw>2</interw>
  3777. <VariousControls>
  3778. <MiscControls></MiscControls>
  3779. <Define>IFX_XMC4XXX</Define>
  3780. <Undefine></Undefine>
  3781. <IncludePath></IncludePath>
  3782. </VariousControls>
  3783. </Aarm>
  3784. </FileArm>
  3785. </FileOption>
  3786. </File>
  3787. </Files>
  3788. </Group>
  3789. <Group>
  3790. <GroupName>::CMSIS</GroupName>
  3791. </Group>
  3792. </Groups>
  3793. </Target>
  3794. </Targets>
  3795. <RTE>
  3796. <apis/>
  3797. <components>
  3798. <component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="4.1.0" condition="CMSIS Core">
  3799. <package name="CMSIS" schemaVersion="1.3" url="http://www.keil.com/pack/" vendor="ARM" version="4.3.0"/>
  3800. <targetInfos>
  3801. <targetInfo name="CM0_BE"/>
  3802. <targetInfo name="CM0_LE"/>
  3803. <targetInfo name="CM3_BE"/>
  3804. <targetInfo name="CM3_LE"/>
  3805. <targetInfo name="CM3_LE_IFX"/>
  3806. <targetInfo name="CM4F_BE"/>
  3807. <targetInfo name="CM4F_LE"/>
  3808. <targetInfo name="CM4F_LE_IFX"/>
  3809. </targetInfos>
  3810. </component>
  3811. </components>
  3812. <files/>
  3813. </RTE>
  3814. </Project>