arm_fir_example.uvprojx 85 KB

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