Backup of SWITCHBOARD_STM32_App.ewp 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <fileVersion>3</fileVersion>
  4. <configuration>
  5. <name>SWITCHBOARD_STM32_Debug</name>
  6. <toolchain>
  7. <name>ARM</name>
  8. </toolchain>
  9. <debug>1</debug>
  10. <settings>
  11. <name>General</name>
  12. <archiveVersion>3</archiveVersion>
  13. <data>
  14. <version>35</version>
  15. <wantNonLocal>1</wantNonLocal>
  16. <debug>1</debug>
  17. <option>
  18. <name>BrowseInfoPath</name>
  19. <state>SWITCHBOARD_STM32_Debug\BrowseInfo</state>
  20. </option>
  21. <option>
  22. <name>ExePath</name>
  23. <state>NFM_STM32_Debug\Exe</state>
  24. </option>
  25. <option>
  26. <name>ObjPath</name>
  27. <state>NFM_STM32_Debug\Obj</state>
  28. </option>
  29. <option>
  30. <name>ListPath</name>
  31. <state>NFM_STM32_Debug\List</state>
  32. </option>
  33. <option>
  34. <name>GEndianMode</name>
  35. <state>0</state>
  36. </option>
  37. <option>
  38. <name>Input description</name>
  39. <state>Automatic choice of formatter, without multibyte support.</state>
  40. </option>
  41. <option>
  42. <name>Output description</name>
  43. <state>Automatic choice of formatter, without multibyte support.</state>
  44. </option>
  45. <option>
  46. <name>GOutputBinary</name>
  47. <state>0</state>
  48. </option>
  49. <option>
  50. <name>OGCoreOrChip</name>
  51. <state>1</state>
  52. </option>
  53. <option>
  54. <name>GRuntimeLibSelect</name>
  55. <version>0</version>
  56. <state>2</state>
  57. </option>
  58. <option>
  59. <name>GRuntimeLibSelectSlave</name>
  60. <version>0</version>
  61. <state>2</state>
  62. </option>
  63. <option>
  64. <name>RTDescription</name>
  65. <state>A complete configuration of the C/C++14 runtime library. Full locale interface, C locale, file descriptor support, multibytes in printf and scanf, and hex floats in strtod.</state>
  66. </option>
  67. <option>
  68. <name>OGProductVersion</name>
  69. <state>4.41A</state>
  70. </option>
  71. <option>
  72. <name>OGLastSavedByProductVersion</name>
  73. <state>9.30.1.50052</state>
  74. </option>
  75. <option>
  76. <name>OGChipSelectEditMenu</name>
  77. <state>STM32L151CB-A ST STM32L151CB-A</state>
  78. </option>
  79. <option>
  80. <name>GenLowLevelInterface</name>
  81. <state>1</state>
  82. </option>
  83. <option>
  84. <name>GEndianModeBE</name>
  85. <state>1</state>
  86. </option>
  87. <option>
  88. <name>OGBufferedTerminalOutput</name>
  89. <state>0</state>
  90. </option>
  91. <option>
  92. <name>GenStdoutInterface</name>
  93. <state>0</state>
  94. </option>
  95. <option>
  96. <name>RTConfigPath2</name>
  97. <state>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</state>
  98. </option>
  99. <option>
  100. <name>GBECoreSlave</name>
  101. <version>32</version>
  102. <state>38</state>
  103. </option>
  104. <option>
  105. <name>OGUseCmsis</name>
  106. <state>0</state>
  107. </option>
  108. <option>
  109. <name>OGUseCmsisDspLib</name>
  110. <state>0</state>
  111. </option>
  112. <option>
  113. <name>GRuntimeLibThreads</name>
  114. <state>0</state>
  115. </option>
  116. <option>
  117. <name>CoreVariant</name>
  118. <version>32</version>
  119. <state>38</state>
  120. </option>
  121. <option>
  122. <name>GFPUDeviceSlave</name>
  123. <state>STM32L151CB-A ST STM32L151CB-A</state>
  124. </option>
  125. <option>
  126. <name>FPU2</name>
  127. <version>0</version>
  128. <state>0</state>
  129. </option>
  130. <option>
  131. <name>NrRegs</name>
  132. <version>0</version>
  133. <state>0</state>
  134. </option>
  135. <option>
  136. <name>NEON</name>
  137. <state>0</state>
  138. </option>
  139. <option>
  140. <name>GFPUCoreSlave2</name>
  141. <version>32</version>
  142. <state>38</state>
  143. </option>
  144. <option>
  145. <name>OGCMSISPackSelectDevice</name>
  146. </option>
  147. <option>
  148. <name>OgLibHeap</name>
  149. <state>0</state>
  150. </option>
  151. <option>
  152. <name>OGLibAdditionalLocale</name>
  153. <state>0</state>
  154. </option>
  155. <option>
  156. <name>OGPrintfVariant</name>
  157. <version>0</version>
  158. <state>0</state>
  159. </option>
  160. <option>
  161. <name>OGPrintfMultibyteSupport</name>
  162. <state>0</state>
  163. </option>
  164. <option>
  165. <name>OGScanfVariant</name>
  166. <version>0</version>
  167. <state>0</state>
  168. </option>
  169. <option>
  170. <name>OGScanfMultibyteSupport</name>
  171. <state>0</state>
  172. </option>
  173. <option>
  174. <name>GenLocaleTags</name>
  175. <state></state>
  176. </option>
  177. <option>
  178. <name>GenLocaleDisplayOnly</name>
  179. <state></state>
  180. </option>
  181. <option>
  182. <name>DSPExtension</name>
  183. <state>0</state>
  184. </option>
  185. <option>
  186. <name>TrustZone</name>
  187. <state>0</state>
  188. </option>
  189. <option>
  190. <name>TrustZoneModes</name>
  191. <version>0</version>
  192. <state>0</state>
  193. </option>
  194. <option>
  195. <name>OGAarch64Abi</name>
  196. <state>0</state>
  197. </option>
  198. <option>
  199. <name>OG_32_64Device</name>
  200. <state>0</state>
  201. </option>
  202. <option>
  203. <name>BuildFilesPath</name>
  204. <state>SWITCHBOARD_STM32_Debug</state>
  205. </option>
  206. <option>
  207. <name>PointerAuthentication</name>
  208. <state>0</state>
  209. </option>
  210. <option>
  211. <name>FPU64</name>
  212. <state>1</state>
  213. </option>
  214. </data>
  215. </settings>
  216. <settings>
  217. <name>ICCARM</name>
  218. <archiveVersion>2</archiveVersion>
  219. <data>
  220. <version>37</version>
  221. <wantNonLocal>1</wantNonLocal>
  222. <debug>1</debug>
  223. <option>
  224. <name>CCOptimizationNoSizeConstraints</name>
  225. <state>0</state>
  226. </option>
  227. <option>
  228. <name>CCDefines</name>
  229. <state>USE_HAL_DRIVER</state>
  230. <state>STM32L151xB</state>
  231. <state>DEBUGMODE=1</state>
  232. <state>DEBUG_USB=0</state>
  233. <state>DEBUG_USBTMC=0</state>
  234. <state>DEBUG_USBTMC_TESTCMD=0</state>
  235. <state>PLANAR</state>
  236. </option>
  237. <option>
  238. <name>CCPreprocFile</name>
  239. <state>1</state>
  240. </option>
  241. <option>
  242. <name>CCPreprocComments</name>
  243. <state>0</state>
  244. </option>
  245. <option>
  246. <name>CCPreprocLine</name>
  247. <state>1</state>
  248. </option>
  249. <option>
  250. <name>CCListCFile</name>
  251. <state>0</state>
  252. </option>
  253. <option>
  254. <name>CCListCMnemonics</name>
  255. <state>0</state>
  256. </option>
  257. <option>
  258. <name>CCListCMessages</name>
  259. <state>0</state>
  260. </option>
  261. <option>
  262. <name>CCListAssFile</name>
  263. <state>0</state>
  264. </option>
  265. <option>
  266. <name>CCListAssSource</name>
  267. <state>0</state>
  268. </option>
  269. <option>
  270. <name>CCEnableRemarks</name>
  271. <state>0</state>
  272. </option>
  273. <option>
  274. <name>CCDiagSuppress</name>
  275. <state></state>
  276. </option>
  277. <option>
  278. <name>CCDiagRemark</name>
  279. <state></state>
  280. </option>
  281. <option>
  282. <name>CCDiagWarning</name>
  283. <state></state>
  284. </option>
  285. <option>
  286. <name>CCDiagError</name>
  287. <state></state>
  288. </option>
  289. <option>
  290. <name>CCObjPrefix</name>
  291. <state>1</state>
  292. </option>
  293. <option>
  294. <name>CCAllowList</name>
  295. <version>1</version>
  296. <state>00000000</state>
  297. </option>
  298. <option>
  299. <name>CCDebugInfo</name>
  300. <state>1</state>
  301. </option>
  302. <option>
  303. <name>IEndianMode</name>
  304. <state>1</state>
  305. </option>
  306. <option>
  307. <name>IProcessor</name>
  308. <state>1</state>
  309. </option>
  310. <option>
  311. <name>IExtraOptionsCheck</name>
  312. <state>0</state>
  313. </option>
  314. <option>
  315. <name>IExtraOptions</name>
  316. <state></state>
  317. </option>
  318. <option>
  319. <name>CCLangConformance</name>
  320. <state>0</state>
  321. </option>
  322. <option>
  323. <name>CCSignedPlainChar</name>
  324. <state>1</state>
  325. </option>
  326. <option>
  327. <name>CCRequirePrototypes</name>
  328. <state>0</state>
  329. </option>
  330. <option>
  331. <name>CCDiagWarnAreErr</name>
  332. <state>0</state>
  333. </option>
  334. <option>
  335. <name>CCCompilerRuntimeInfo</name>
  336. <state>0</state>
  337. </option>
  338. <option>
  339. <name>IFpuProcessor</name>
  340. <state>1</state>
  341. </option>
  342. <option>
  343. <name>OutputFile</name>
  344. <state>$FILE_BNAME$.o</state>
  345. </option>
  346. <option>
  347. <name>CCLibConfigHeader</name>
  348. <state>1</state>
  349. </option>
  350. <option>
  351. <name>PreInclude</name>
  352. <state></state>
  353. </option>
  354. <option>
  355. <name>CCIncludePath2</name>
  356. <state>$PROJ_DIR$/../Core/</state>
  357. <state>$PROJ_DIR$/../App/</state>
  358. <state>$PROJ_DIR$/../App/nfm/</state>
  359. <state>$PROJ_DIR$/../App/CRC32/</state>
  360. <state>$PROJ_DIR$/../App/usb/</state>
  361. <state>$PROJ_DIR$/../App/usbapp/</state>
  362. <state>$PROJ_DIR$/../App/spi/</state>
  363. <state>$PROJ_DIR$/../</state>
  364. <state>$PROJ_DIR$/../drivers/</state>
  365. <state>$PROJ_DIR$/../drivers/usb/</state>
  366. <state>$PROJ_DIR$/../drivers/usb/class</state>
  367. <state>$PROJ_DIR$/../drivers/usb/class/cdc/</state>
  368. <state>$PROJ_DIR$/../drivers/usb/class/cdc/inc</state>
  369. <state>$PROJ_DIR$/../drivers/usb/class/vendor/</state>
  370. <state>$PROJ_DIR$/../drivers/usb/class/usbtmc/</state>
  371. <state>$PROJ_DIR$/../drivers/usb/core/</state>
  372. <state>$PROJ_DIR$/../drivers/usb/core/inc/</state>
  373. <state>$PROJ_DIR$/../drivers/usb/device/</state>
  374. <state>$PROJ_DIR$/../drivers/usb/device/inc</state>
  375. <state>$PROJ_DIR$/../drivers/STM32L1xx_HAL_Driver/Inc/</state>
  376. <state>$PROJ_DIR$/../drivers/STM32L1xx_HAL_Driver/Inc/Legacy</state>
  377. <state>$PROJ_DIR$/../drivers/CMSIS/Device/ST/STM32L1xx/Include/</state>
  378. <state>$PROJ_DIR$/../drivers/CMSIS/Include</state>
  379. </option>
  380. <option>
  381. <name>CCStdIncCheck</name>
  382. <state>0</state>
  383. </option>
  384. <option>
  385. <name>CCCodeSection</name>
  386. <state>.text</state>
  387. </option>
  388. <option>
  389. <name>IProcessorMode2</name>
  390. <state>1</state>
  391. </option>
  392. <option>
  393. <name>CCOptLevel</name>
  394. <state>0</state>
  395. </option>
  396. <option>
  397. <name>CCOptStrategy</name>
  398. <version>0</version>
  399. <state>1</state>
  400. </option>
  401. <option>
  402. <name>CCOptLevelSlave</name>
  403. <state>0</state>
  404. </option>
  405. <option>
  406. <name>CCPosIndRopi</name>
  407. <state>0</state>
  408. </option>
  409. <option>
  410. <name>CCPosIndRwpi</name>
  411. <state>0</state>
  412. </option>
  413. <option>
  414. <name>CCPosIndNoDynInit</name>
  415. <state>0</state>
  416. </option>
  417. <option>
  418. <name>IccLang</name>
  419. <state>0</state>
  420. </option>
  421. <option>
  422. <name>IccCDialect</name>
  423. <state>1</state>
  424. </option>
  425. <option>
  426. <name>IccAllowVLA</name>
  427. <state>0</state>
  428. </option>
  429. <option>
  430. <name>IccStaticDestr</name>
  431. <state>0</state>
  432. </option>
  433. <option>
  434. <name>IccCppInlineSemantics</name>
  435. <state>0</state>
  436. </option>
  437. <option>
  438. <name>IccCmsis</name>
  439. <state>1</state>
  440. </option>
  441. <option>
  442. <name>IccFloatSemantics</name>
  443. <state>0</state>
  444. </option>
  445. <option>
  446. <name>CCNoLiteralPool</name>
  447. <state>0</state>
  448. </option>
  449. <option>
  450. <name>CCOptStrategySlave</name>
  451. <version>0</version>
  452. <state>1</state>
  453. </option>
  454. <option>
  455. <name>CCGuardCalls</name>
  456. <state>1</state>
  457. </option>
  458. <option>
  459. <name>CCEncSource</name>
  460. <state>0</state>
  461. </option>
  462. <option>
  463. <name>CCEncOutput</name>
  464. <state>0</state>
  465. </option>
  466. <option>
  467. <name>CCEncOutputBom</name>
  468. <state>1</state>
  469. </option>
  470. <option>
  471. <name>CCEncInput</name>
  472. <state>0</state>
  473. </option>
  474. <option>
  475. <name>IccExceptions2</name>
  476. <state>0</state>
  477. </option>
  478. <option>
  479. <name>IccRTTI2</name>
  480. <state>0</state>
  481. </option>
  482. <option>
  483. <name>OICompilerExtraOption</name>
  484. <state>1</state>
  485. </option>
  486. <option>
  487. <name>CCStackProtection</name>
  488. <state>0</state>
  489. </option>
  490. </data>
  491. </settings>
  492. <settings>
  493. <name>AARM</name>
  494. <archiveVersion>2</archiveVersion>
  495. <data>
  496. <version>11</version>
  497. <wantNonLocal>1</wantNonLocal>
  498. <debug>1</debug>
  499. <option>
  500. <name>AObjPrefix</name>
  501. <state>1</state>
  502. </option>
  503. <option>
  504. <name>AEndian</name>
  505. <state>1</state>
  506. </option>
  507. <option>
  508. <name>ACaseSensitivity</name>
  509. <state>1</state>
  510. </option>
  511. <option>
  512. <name>MacroChars</name>
  513. <version>0</version>
  514. <state>0</state>
  515. </option>
  516. <option>
  517. <name>AWarnEnable</name>
  518. <state>0</state>
  519. </option>
  520. <option>
  521. <name>AWarnWhat</name>
  522. <state>0</state>
  523. </option>
  524. <option>
  525. <name>AWarnOne</name>
  526. <state></state>
  527. </option>
  528. <option>
  529. <name>AWarnRange1</name>
  530. <state></state>
  531. </option>
  532. <option>
  533. <name>AWarnRange2</name>
  534. <state></state>
  535. </option>
  536. <option>
  537. <name>ADebug</name>
  538. <state>1</state>
  539. </option>
  540. <option>
  541. <name>AltRegisterNames</name>
  542. <state>0</state>
  543. </option>
  544. <option>
  545. <name>ADefines</name>
  546. <state></state>
  547. </option>
  548. <option>
  549. <name>AList</name>
  550. <state>0</state>
  551. </option>
  552. <option>
  553. <name>AListHeader</name>
  554. <state>1</state>
  555. </option>
  556. <option>
  557. <name>AListing</name>
  558. <state>1</state>
  559. </option>
  560. <option>
  561. <name>Includes</name>
  562. <state>0</state>
  563. </option>
  564. <option>
  565. <name>MacDefs</name>
  566. <state>0</state>
  567. </option>
  568. <option>
  569. <name>MacExps</name>
  570. <state>1</state>
  571. </option>
  572. <option>
  573. <name>MacExec</name>
  574. <state>0</state>
  575. </option>
  576. <option>
  577. <name>OnlyAssed</name>
  578. <state>0</state>
  579. </option>
  580. <option>
  581. <name>MultiLine</name>
  582. <state>0</state>
  583. </option>
  584. <option>
  585. <name>PageLengthCheck</name>
  586. <state>0</state>
  587. </option>
  588. <option>
  589. <name>PageLength</name>
  590. <state>80</state>
  591. </option>
  592. <option>
  593. <name>TabSpacing</name>
  594. <state>8</state>
  595. </option>
  596. <option>
  597. <name>AXRef</name>
  598. <state>0</state>
  599. </option>
  600. <option>
  601. <name>AXRefDefines</name>
  602. <state>0</state>
  603. </option>
  604. <option>
  605. <name>AXRefInternal</name>
  606. <state>0</state>
  607. </option>
  608. <option>
  609. <name>AXRefDual</name>
  610. <state>0</state>
  611. </option>
  612. <option>
  613. <name>AProcessor</name>
  614. <state>1</state>
  615. </option>
  616. <option>
  617. <name>AFpuProcessor</name>
  618. <state>1</state>
  619. </option>
  620. <option>
  621. <name>AOutputFile</name>
  622. <state>$FILE_BNAME$.o</state>
  623. </option>
  624. <option>
  625. <name>ALimitErrorsCheck</name>
  626. <state>0</state>
  627. </option>
  628. <option>
  629. <name>ALimitErrorsEdit</name>
  630. <state>100</state>
  631. </option>
  632. <option>
  633. <name>AIgnoreStdInclude</name>
  634. <state>0</state>
  635. </option>
  636. <option>
  637. <name>AUserIncludes</name>
  638. <state></state>
  639. </option>
  640. <option>
  641. <name>AExtraOptionsCheckV2</name>
  642. <state>0</state>
  643. </option>
  644. <option>
  645. <name>AExtraOptionsV2</name>
  646. <state></state>
  647. </option>
  648. <option>
  649. <name>AsmNoLiteralPool</name>
  650. <state>0</state>
  651. </option>
  652. <option>
  653. <name>PreInclude</name>
  654. <state></state>
  655. </option>
  656. </data>
  657. </settings>
  658. <settings>
  659. <name>OBJCOPY</name>
  660. <archiveVersion>0</archiveVersion>
  661. <data>
  662. <version>1</version>
  663. <wantNonLocal>1</wantNonLocal>
  664. <debug>1</debug>
  665. <option>
  666. <name>OOCOutputFormat</name>
  667. <version>3</version>
  668. <state>3</state>
  669. </option>
  670. <option>
  671. <name>OCOutputOverride</name>
  672. <state>1</state>
  673. </option>
  674. <option>
  675. <name>OOCOutputFile</name>
  676. <state>SB_STM32_usb_cdc.hex</state>
  677. </option>
  678. <option>
  679. <name>OOCCommandLineProducer</name>
  680. <state>1</state>
  681. </option>
  682. <option>
  683. <name>OOCObjCopyEnable</name>
  684. <state>1</state>
  685. </option>
  686. </data>
  687. </settings>
  688. <settings>
  689. <name>CUSTOM</name>
  690. <archiveVersion>3</archiveVersion>
  691. <data>
  692. <extensions></extensions>
  693. <cmdline></cmdline>
  694. <hasPrio>32</hasPrio>
  695. <buildSequence>inputOutputBased</buildSequence>
  696. </data>
  697. </settings>
  698. <settings>
  699. <name>BUILDACTION</name>
  700. <archiveVersion>1</archiveVersion>
  701. <data>
  702. <prebuild></prebuild>
  703. <postbuild></postbuild>
  704. </data>
  705. </settings>
  706. <settings>
  707. <name>ILINK</name>
  708. <archiveVersion>0</archiveVersion>
  709. <data>
  710. <version>27</version>
  711. <wantNonLocal>1</wantNonLocal>
  712. <debug>1</debug>
  713. <option>
  714. <name>IlinkLibIOConfig</name>
  715. <state>1</state>
  716. </option>
  717. <option>
  718. <name>IlinkInputFileSlave</name>
  719. <state>0</state>
  720. </option>
  721. <option>
  722. <name>IlinkOutputFile</name>
  723. <state>SWITCHBOARD_Automat_STM32_App.out</state>
  724. </option>
  725. <option>
  726. <name>IlinkDebugInfoEnable</name>
  727. <state>1</state>
  728. </option>
  729. <option>
  730. <name>IlinkKeepSymbols</name>
  731. <state></state>
  732. </option>
  733. <option>
  734. <name>IlinkRawBinaryFile</name>
  735. <state></state>
  736. </option>
  737. <option>
  738. <name>IlinkRawBinarySymbol</name>
  739. <state></state>
  740. </option>
  741. <option>
  742. <name>IlinkRawBinarySegment</name>
  743. <state></state>
  744. </option>
  745. <option>
  746. <name>IlinkRawBinaryAlign</name>
  747. <state></state>
  748. </option>
  749. <option>
  750. <name>IlinkDefines</name>
  751. <state></state>
  752. </option>
  753. <option>
  754. <name>IlinkConfigDefines</name>
  755. <state></state>
  756. </option>
  757. <option>
  758. <name>IlinkMapFile</name>
  759. <state>1</state>
  760. </option>
  761. <option>
  762. <name>IlinkLogFile</name>
  763. <state>0</state>
  764. </option>
  765. <option>
  766. <name>IlinkLogInitialization</name>
  767. <state>0</state>
  768. </option>
  769. <option>
  770. <name>IlinkLogModule</name>
  771. <state>0</state>
  772. </option>
  773. <option>
  774. <name>IlinkLogSection</name>
  775. <state>0</state>
  776. </option>
  777. <option>
  778. <name>IlinkLogVeneer</name>
  779. <state>0</state>
  780. </option>
  781. <option>
  782. <name>IlinkIcfOverride</name>
  783. <state>1</state>
  784. </option>
  785. <option>
  786. <name>IlinkIcfFile</name>
  787. <state>$PROJ_DIR$/stm32l151xb_flash.icf</state>
  788. </option>
  789. <option>
  790. <name>IlinkIcfFileSlave</name>
  791. <state></state>
  792. </option>
  793. <option>
  794. <name>IlinkEnableRemarks</name>
  795. <state>0</state>
  796. </option>
  797. <option>
  798. <name>IlinkSuppressDiags</name>
  799. <state></state>
  800. </option>
  801. <option>
  802. <name>IlinkTreatAsRem</name>
  803. <state></state>
  804. </option>
  805. <option>
  806. <name>IlinkTreatAsWarn</name>
  807. <state></state>
  808. </option>
  809. <option>
  810. <name>IlinkTreatAsErr</name>
  811. <state></state>
  812. </option>
  813. <option>
  814. <name>IlinkWarningsAreErrors</name>
  815. <state>0</state>
  816. </option>
  817. <option>
  818. <name>IlinkUseExtraOptions</name>
  819. <state>0</state>
  820. </option>
  821. <option>
  822. <name>IlinkExtraOptions</name>
  823. <state></state>
  824. </option>
  825. <option>
  826. <name>IlinkLowLevelInterfaceSlave</name>
  827. <state>1</state>
  828. </option>
  829. <option>
  830. <name>IlinkAutoLibEnable</name>
  831. <state>1</state>
  832. </option>
  833. <option>
  834. <name>IlinkAdditionalLibs</name>
  835. <state></state>
  836. </option>
  837. <option>
  838. <name>IlinkOverrideProgramEntryLabel</name>
  839. <state>0</state>
  840. </option>
  841. <option>
  842. <name>IlinkProgramEntryLabelSelect</name>
  843. <state>0</state>
  844. </option>
  845. <option>
  846. <name>IlinkProgramEntryLabel</name>
  847. <state>__iar_program_start</state>
  848. </option>
  849. <option>
  850. <name>DoFill</name>
  851. <state>0</state>
  852. </option>
  853. <option>
  854. <name>FillerByte</name>
  855. <state>0xFF</state>
  856. </option>
  857. <option>
  858. <name>FillerStart</name>
  859. <state>0x0</state>
  860. </option>
  861. <option>
  862. <name>FillerEnd</name>
  863. <state>0x0</state>
  864. </option>
  865. <option>
  866. <name>CrcSize</name>
  867. <version>0</version>
  868. <state>1</state>
  869. </option>
  870. <option>
  871. <name>CrcAlign</name>
  872. <state>1</state>
  873. </option>
  874. <option>
  875. <name>CrcPoly</name>
  876. <state>0x11021</state>
  877. </option>
  878. <option>
  879. <name>CrcCompl</name>
  880. <version>0</version>
  881. <state>0</state>
  882. </option>
  883. <option>
  884. <name>CrcBitOrder</name>
  885. <version>0</version>
  886. <state>0</state>
  887. </option>
  888. <option>
  889. <name>CrcInitialValue</name>
  890. <state>0x0</state>
  891. </option>
  892. <option>
  893. <name>DoCrc</name>
  894. <state>0</state>
  895. </option>
  896. <option>
  897. <name>IlinkBE8Slave</name>
  898. <state>1</state>
  899. </option>
  900. <option>
  901. <name>IlinkBufferedTerminalOutput</name>
  902. <state>1</state>
  903. </option>
  904. <option>
  905. <name>IlinkStdoutInterfaceSlave</name>
  906. <state>1</state>
  907. </option>
  908. <option>
  909. <name>CrcFullSize</name>
  910. <state>0</state>
  911. </option>
  912. <option>
  913. <name>IlinkIElfToolPostProcess</name>
  914. <state>0</state>
  915. </option>
  916. <option>
  917. <name>IlinkLogAutoLibSelect</name>
  918. <state>0</state>
  919. </option>
  920. <option>
  921. <name>IlinkLogRedirSymbols</name>
  922. <state>0</state>
  923. </option>
  924. <option>
  925. <name>IlinkLogUnusedFragments</name>
  926. <state>0</state>
  927. </option>
  928. <option>
  929. <name>IlinkCrcReverseByteOrder</name>
  930. <state>0</state>
  931. </option>
  932. <option>
  933. <name>IlinkCrcUseAsInput</name>
  934. <state>1</state>
  935. </option>
  936. <option>
  937. <name>IlinkOptInline</name>
  938. <state>0</state>
  939. </option>
  940. <option>
  941. <name>IlinkOptExceptionsAllow</name>
  942. <state>1</state>
  943. </option>
  944. <option>
  945. <name>IlinkOptExceptionsForce</name>
  946. <state>0</state>
  947. </option>
  948. <option>
  949. <name>IlinkCmsis</name>
  950. <state>1</state>
  951. </option>
  952. <option>
  953. <name>IlinkOptMergeDuplSections</name>
  954. <state>0</state>
  955. </option>
  956. <option>
  957. <name>IlinkOptUseVfe</name>
  958. <state>1</state>
  959. </option>
  960. <option>
  961. <name>IlinkOptForceVfe</name>
  962. <state>0</state>
  963. </option>
  964. <option>
  965. <name>IlinkStackAnalysisEnable</name>
  966. <state>0</state>
  967. </option>
  968. <option>
  969. <name>IlinkStackControlFile</name>
  970. <state></state>
  971. </option>
  972. <option>
  973. <name>IlinkStackCallGraphFile</name>
  974. <state></state>
  975. </option>
  976. <option>
  977. <name>CrcAlgorithm</name>
  978. <version>1</version>
  979. <state>1</state>
  980. </option>
  981. <option>
  982. <name>CrcUnitSize</name>
  983. <version>0</version>
  984. <state>0</state>
  985. </option>
  986. <option>
  987. <name>IlinkThreadsSlave</name>
  988. <state>1</state>
  989. </option>
  990. <option>
  991. <name>IlinkLogCallGraph</name>
  992. <state>0</state>
  993. </option>
  994. <option>
  995. <name>IlinkIcfFile_AltDefault</name>
  996. <state></state>
  997. </option>
  998. <option>
  999. <name>IlinkEncInput</name>
  1000. <state>0</state>
  1001. </option>
  1002. <option>
  1003. <name>IlinkEncOutput</name>
  1004. <state>0</state>
  1005. </option>
  1006. <option>
  1007. <name>IlinkEncOutputBom</name>
  1008. <state>1</state>
  1009. </option>
  1010. <option>
  1011. <name>IlinkHeapSelect</name>
  1012. <state>1</state>
  1013. </option>
  1014. <option>
  1015. <name>IlinkLocaleSelect</name>
  1016. <state>1</state>
  1017. </option>
  1018. <option>
  1019. <name>IlinkTrustzoneImportLibraryOut</name>
  1020. <state>SWITCHBOARD_STM32_App_import_lib.o</state>
  1021. </option>
  1022. <option>
  1023. <name>OILinkExtraOption</name>
  1024. <state>1</state>
  1025. </option>
  1026. <option>
  1027. <name>IlinkRawBinaryFile2</name>
  1028. <state></state>
  1029. </option>
  1030. <option>
  1031. <name>IlinkRawBinarySymbol2</name>
  1032. <state></state>
  1033. </option>
  1034. <option>
  1035. <name>IlinkRawBinarySegment2</name>
  1036. <state></state>
  1037. </option>
  1038. <option>
  1039. <name>IlinkRawBinaryAlign2</name>
  1040. <state></state>
  1041. </option>
  1042. <option>
  1043. <name>IlinkLogCrtRoutineSelection</name>
  1044. <state>0</state>
  1045. </option>
  1046. <option>
  1047. <name>IlinkLogFragmentInfo</name>
  1048. <state>0</state>
  1049. </option>
  1050. <option>
  1051. <name>IlinkLogInlining</name>
  1052. <state>0</state>
  1053. </option>
  1054. <option>
  1055. <name>IlinkLogMerging</name>
  1056. <state>0</state>
  1057. </option>
  1058. <option>
  1059. <name>IlinkDemangle</name>
  1060. <state>0</state>
  1061. </option>
  1062. <option>
  1063. <name>IlinkWrapperFileEnable</name>
  1064. <state>0</state>
  1065. </option>
  1066. <option>
  1067. <name>IlinkWrapperFile</name>
  1068. <state></state>
  1069. </option>
  1070. <option>
  1071. <name>IlinkProcessor</name>
  1072. <state>1</state>
  1073. </option>
  1074. <option>
  1075. <name>IlinkFpuProcessor</name>
  1076. <state>1</state>
  1077. </option>
  1078. </data>
  1079. </settings>
  1080. <settings>
  1081. <name>IARCHIVE</name>
  1082. <archiveVersion>0</archiveVersion>
  1083. <data>
  1084. <version>0</version>
  1085. <wantNonLocal>1</wantNonLocal>
  1086. <debug>1</debug>
  1087. <option>
  1088. <name>IarchiveInputs</name>
  1089. <state></state>
  1090. </option>
  1091. <option>
  1092. <name>IarchiveOverride</name>
  1093. <state>0</state>
  1094. </option>
  1095. <option>
  1096. <name>IarchiveOutput</name>
  1097. <state>###Unitialized###</state>
  1098. </option>
  1099. </data>
  1100. </settings>
  1101. </configuration>
  1102. <configuration>
  1103. <name>SWITCHBOARD_STM32_Debug_AssertExclude</name>
  1104. <toolchain>
  1105. <name>ARM</name>
  1106. </toolchain>
  1107. <debug>1</debug>
  1108. <settings>
  1109. <name>General</name>
  1110. <archiveVersion>3</archiveVersion>
  1111. <data>
  1112. <version>35</version>
  1113. <wantNonLocal>1</wantNonLocal>
  1114. <debug>1</debug>
  1115. <option>
  1116. <name>BrowseInfoPath</name>
  1117. <state>SWITCHBOARD_STM32_Debug_AssertExclude\BrowseInfo</state>
  1118. </option>
  1119. <option>
  1120. <name>ExePath</name>
  1121. <state>SWITCHBOARD_STM32_Debug_AssertExclude\Exe</state>
  1122. </option>
  1123. <option>
  1124. <name>ObjPath</name>
  1125. <state>SWITCHBOARD_STM32_Debug_AssertExclude\Obj</state>
  1126. </option>
  1127. <option>
  1128. <name>ListPath</name>
  1129. <state>SWITCHBOARD_STM32_Debug_AssertExclude\List</state>
  1130. </option>
  1131. <option>
  1132. <name>GEndianMode</name>
  1133. <state>0</state>
  1134. </option>
  1135. <option>
  1136. <name>Input description</name>
  1137. <state>Automatic choice of formatter.</state>
  1138. </option>
  1139. <option>
  1140. <name>Output description</name>
  1141. <state>Automatic choice of formatter.</state>
  1142. </option>
  1143. <option>
  1144. <name>GOutputBinary</name>
  1145. <state>0</state>
  1146. </option>
  1147. <option>
  1148. <name>OGCoreOrChip</name>
  1149. <state>1</state>
  1150. </option>
  1151. <option>
  1152. <name>GRuntimeLibSelect</name>
  1153. <version>0</version>
  1154. <state>2</state>
  1155. </option>
  1156. <option>
  1157. <name>GRuntimeLibSelectSlave</name>
  1158. <version>0</version>
  1159. <state>2</state>
  1160. </option>
  1161. <option>
  1162. <name>RTDescription</name>
  1163. <state>Use the full configuration of the C/C++ runtime library. Full locale interface, C locale, file descriptor support, multibytes in printf and scanf, and hex floats in strtod.</state>
  1164. </option>
  1165. <option>
  1166. <name>OGProductVersion</name>
  1167. <state>4.41A</state>
  1168. </option>
  1169. <option>
  1170. <name>OGLastSavedByProductVersion</name>
  1171. <state>7.80.4.12487</state>
  1172. </option>
  1173. <option>
  1174. <name>OGChipSelectEditMenu</name>
  1175. <state>STM32L151CB-A ST STM32L151CB-A</state>
  1176. </option>
  1177. <option>
  1178. <name>GenLowLevelInterface</name>
  1179. <state>1</state>
  1180. </option>
  1181. <option>
  1182. <name>GEndianModeBE</name>
  1183. <state>1</state>
  1184. </option>
  1185. <option>
  1186. <name>OGBufferedTerminalOutput</name>
  1187. <state>0</state>
  1188. </option>
  1189. <option>
  1190. <name>GenStdoutInterface</name>
  1191. <state>0</state>
  1192. </option>
  1193. <option>
  1194. <name>RTConfigPath2</name>
  1195. <state>$TOOLKIT_DIR$\INC\c\DLib_Config_Full.h</state>
  1196. </option>
  1197. <option>
  1198. <name>GBECoreSlave</name>
  1199. <version>32</version>
  1200. <state>38</state>
  1201. </option>
  1202. <option>
  1203. <name>OGUseCmsis</name>
  1204. <state>0</state>
  1205. </option>
  1206. <option>
  1207. <name>OGUseCmsisDspLib</name>
  1208. <state>0</state>
  1209. </option>
  1210. <option>
  1211. <name>GRuntimeLibThreads</name>
  1212. <state>0</state>
  1213. </option>
  1214. <option>
  1215. <name>CoreVariant</name>
  1216. <version>32</version>
  1217. <state>38</state>
  1218. </option>
  1219. <option>
  1220. <name>GFPUDeviceSlave</name>
  1221. <state>STM32L151CB-A ST STM32L151CB-A</state>
  1222. </option>
  1223. <option>
  1224. <name>FPU2</name>
  1225. <version>0</version>
  1226. <state>0</state>
  1227. </option>
  1228. <option>
  1229. <name>NrRegs</name>
  1230. <version>0</version>
  1231. <state>0</state>
  1232. </option>
  1233. <option>
  1234. <name>NEON</name>
  1235. <state>0</state>
  1236. </option>
  1237. <option>
  1238. <name>GFPUCoreSlave2</name>
  1239. <version>32</version>
  1240. <state>38</state>
  1241. </option>
  1242. <option>
  1243. <name>OGCMSISPackSelectDevice</name>
  1244. </option>
  1245. <option>
  1246. <name>OgLibHeap</name>
  1247. <state>0</state>
  1248. </option>
  1249. <option>
  1250. <name>OGLibAdditionalLocale</name>
  1251. <state>0</state>
  1252. </option>
  1253. <option>
  1254. <name>OGPrintfVariant</name>
  1255. <version>0</version>
  1256. <state>0</state>
  1257. </option>
  1258. <option>
  1259. <name>OGPrintfMultibyteSupport</name>
  1260. <state>0</state>
  1261. </option>
  1262. <option>
  1263. <name>OGScanfVariant</name>
  1264. <version>0</version>
  1265. <state>0</state>
  1266. </option>
  1267. <option>
  1268. <name>OGScanfMultibyteSupport</name>
  1269. <state>0</state>
  1270. </option>
  1271. <option>
  1272. <name>GenLocaleTags</name>
  1273. <state></state>
  1274. </option>
  1275. <option>
  1276. <name>GenLocaleDisplayOnly</name>
  1277. <state></state>
  1278. </option>
  1279. <option>
  1280. <name>DSPExtension</name>
  1281. <state>0</state>
  1282. </option>
  1283. <option>
  1284. <name>TrustZone</name>
  1285. <state>0</state>
  1286. </option>
  1287. <option>
  1288. <name>TrustZoneModes</name>
  1289. <version>0</version>
  1290. <state>0</state>
  1291. </option>
  1292. <option>
  1293. <name>OGAarch64Abi</name>
  1294. <state>0</state>
  1295. </option>
  1296. <option>
  1297. <name>OG_32_64Device</name>
  1298. <state>0</state>
  1299. </option>
  1300. <option>
  1301. <name>BuildFilesPath</name>
  1302. <state>SWITCHBOARD_STM32_Debug_AssertExclude</state>
  1303. </option>
  1304. <option>
  1305. <name>PointerAuthentication</name>
  1306. <state>0</state>
  1307. </option>
  1308. <option>
  1309. <name>FPU64</name>
  1310. <state>1</state>
  1311. </option>
  1312. </data>
  1313. </settings>
  1314. <settings>
  1315. <name>ICCARM</name>
  1316. <archiveVersion>2</archiveVersion>
  1317. <data>
  1318. <version>37</version>
  1319. <wantNonLocal>1</wantNonLocal>
  1320. <debug>1</debug>
  1321. <option>
  1322. <name>CCOptimizationNoSizeConstraints</name>
  1323. <state>0</state>
  1324. </option>
  1325. <option>
  1326. <name>CCDefines</name>
  1327. <state>USE_HAL_DRIVER</state>
  1328. <state>NO_ASSERT_SCPI_TLST</state>
  1329. <state>NO_ASSERT_SCPI_GPIB</state>
  1330. <state>NO_ASSERT_SCPI_PARSER</state>
  1331. <state>NO_ASSERT_SCPI_CORE</state>
  1332. <state>NO_ASSERT_USBTMCLIB</state>
  1333. <state>STM32L151xB</state>
  1334. <state>DEBUGMODE=1</state>
  1335. <state>DEBUG_USB=0</state>
  1336. <state>DEBUG_USBTMC=0</state>
  1337. <state>DEBUG_USBTMC_TESTCMD=0</state>
  1338. <state>PLANAR</state>
  1339. </option>
  1340. <option>
  1341. <name>CCPreprocFile</name>
  1342. <state>1</state>
  1343. </option>
  1344. <option>
  1345. <name>CCPreprocComments</name>
  1346. <state>0</state>
  1347. </option>
  1348. <option>
  1349. <name>CCPreprocLine</name>
  1350. <state>1</state>
  1351. </option>
  1352. <option>
  1353. <name>CCListCFile</name>
  1354. <state>0</state>
  1355. </option>
  1356. <option>
  1357. <name>CCListCMnemonics</name>
  1358. <state>0</state>
  1359. </option>
  1360. <option>
  1361. <name>CCListCMessages</name>
  1362. <state>0</state>
  1363. </option>
  1364. <option>
  1365. <name>CCListAssFile</name>
  1366. <state>0</state>
  1367. </option>
  1368. <option>
  1369. <name>CCListAssSource</name>
  1370. <state>0</state>
  1371. </option>
  1372. <option>
  1373. <name>CCEnableRemarks</name>
  1374. <state>0</state>
  1375. </option>
  1376. <option>
  1377. <name>CCDiagSuppress</name>
  1378. <state></state>
  1379. </option>
  1380. <option>
  1381. <name>CCDiagRemark</name>
  1382. <state></state>
  1383. </option>
  1384. <option>
  1385. <name>CCDiagWarning</name>
  1386. <state></state>
  1387. </option>
  1388. <option>
  1389. <name>CCDiagError</name>
  1390. <state></state>
  1391. </option>
  1392. <option>
  1393. <name>CCObjPrefix</name>
  1394. <state>1</state>
  1395. </option>
  1396. <option>
  1397. <name>CCAllowList</name>
  1398. <version>1</version>
  1399. <state>00000000</state>
  1400. </option>
  1401. <option>
  1402. <name>CCDebugInfo</name>
  1403. <state>1</state>
  1404. </option>
  1405. <option>
  1406. <name>IEndianMode</name>
  1407. <state>1</state>
  1408. </option>
  1409. <option>
  1410. <name>IProcessor</name>
  1411. <state>1</state>
  1412. </option>
  1413. <option>
  1414. <name>IExtraOptionsCheck</name>
  1415. <state>0</state>
  1416. </option>
  1417. <option>
  1418. <name>IExtraOptions</name>
  1419. <state></state>
  1420. </option>
  1421. <option>
  1422. <name>CCLangConformance</name>
  1423. <state>0</state>
  1424. </option>
  1425. <option>
  1426. <name>CCSignedPlainChar</name>
  1427. <state>1</state>
  1428. </option>
  1429. <option>
  1430. <name>CCRequirePrototypes</name>
  1431. <state>0</state>
  1432. </option>
  1433. <option>
  1434. <name>CCDiagWarnAreErr</name>
  1435. <state>0</state>
  1436. </option>
  1437. <option>
  1438. <name>CCCompilerRuntimeInfo</name>
  1439. <state>0</state>
  1440. </option>
  1441. <option>
  1442. <name>IFpuProcessor</name>
  1443. <state>1</state>
  1444. </option>
  1445. <option>
  1446. <name>OutputFile</name>
  1447. <state>$FILE_BNAME$.o</state>
  1448. </option>
  1449. <option>
  1450. <name>CCLibConfigHeader</name>
  1451. <state>1</state>
  1452. </option>
  1453. <option>
  1454. <name>PreInclude</name>
  1455. <state></state>
  1456. </option>
  1457. <option>
  1458. <name>CCIncludePath2</name>
  1459. <state>$PROJ_DIR$/../Core/</state>
  1460. <state>$PROJ_DIR$/../App/</state>
  1461. <state>$PROJ_DIR$/../App/acm/</state>
  1462. <state>$PROJ_DIR$/../App/CRC32/</state>
  1463. <state>$PROJ_DIR$/../App/usb/</state>
  1464. <state>$PROJ_DIR$/../App/usbapp/</state>
  1465. <state>$PROJ_DIR$/../App/spi/</state>
  1466. <state>$PROJ_DIR$/../</state>
  1467. <state>$PROJ_DIR$/../drivers/</state>
  1468. <state>$PROJ_DIR$/../drivers/usb/</state>
  1469. <state>$PROJ_DIR$/../drivers/usb/class</state>
  1470. <state>$PROJ_DIR$/../drivers/usb/class/cdc/</state>
  1471. <state>$PROJ_DIR$/../drivers/usb/class/cdc/inc</state>
  1472. <state>$PROJ_DIR$/../drivers/usb/class/vendor/</state>
  1473. <state>$PROJ_DIR$/../drivers/usb/class/usbtmc/</state>
  1474. <state>$PROJ_DIR$/../drivers/usb/core/</state>
  1475. <state>$PROJ_DIR$/../drivers/usb/core/inc/</state>
  1476. <state>$PROJ_DIR$/../drivers/usb/device/</state>
  1477. <state>$PROJ_DIR$/../drivers/usb/device/inc</state>
  1478. <state>$PROJ_DIR$/../drivers/STM32L1xx_HAL_Driver/Inc/</state>
  1479. <state>$PROJ_DIR$/../drivers/STM32L1xx_HAL_Driver/Inc/Legacy</state>
  1480. <state>$PROJ_DIR$/../drivers/CMSIS/Device/ST/STM32L1xx/Include/</state>
  1481. <state>$PROJ_DIR$/../drivers/CMSIS/Include</state>
  1482. </option>
  1483. <option>
  1484. <name>CCStdIncCheck</name>
  1485. <state>0</state>
  1486. </option>
  1487. <option>
  1488. <name>CCCodeSection</name>
  1489. <state>.text</state>
  1490. </option>
  1491. <option>
  1492. <name>IProcessorMode2</name>
  1493. <state>1</state>
  1494. </option>
  1495. <option>
  1496. <name>CCOptLevel</name>
  1497. <state>0</state>
  1498. </option>
  1499. <option>
  1500. <name>CCOptStrategy</name>
  1501. <version>0</version>
  1502. <state>1</state>
  1503. </option>
  1504. <option>
  1505. <name>CCOptLevelSlave</name>
  1506. <state>0</state>
  1507. </option>
  1508. <option>
  1509. <name>CCPosIndRopi</name>
  1510. <state>0</state>
  1511. </option>
  1512. <option>
  1513. <name>CCPosIndRwpi</name>
  1514. <state>0</state>
  1515. </option>
  1516. <option>
  1517. <name>CCPosIndNoDynInit</name>
  1518. <state>0</state>
  1519. </option>
  1520. <option>
  1521. <name>IccLang</name>
  1522. <state>0</state>
  1523. </option>
  1524. <option>
  1525. <name>IccCDialect</name>
  1526. <state>1</state>
  1527. </option>
  1528. <option>
  1529. <name>IccAllowVLA</name>
  1530. <state>0</state>
  1531. </option>
  1532. <option>
  1533. <name>IccStaticDestr</name>
  1534. <state>0</state>
  1535. </option>
  1536. <option>
  1537. <name>IccCppInlineSemantics</name>
  1538. <state>0</state>
  1539. </option>
  1540. <option>
  1541. <name>IccCmsis</name>
  1542. <state>1</state>
  1543. </option>
  1544. <option>
  1545. <name>IccFloatSemantics</name>
  1546. <state>0</state>
  1547. </option>
  1548. <option>
  1549. <name>CCNoLiteralPool</name>
  1550. <state>0</state>
  1551. </option>
  1552. <option>
  1553. <name>CCOptStrategySlave</name>
  1554. <version>0</version>
  1555. <state>1</state>
  1556. </option>
  1557. <option>
  1558. <name>CCGuardCalls</name>
  1559. <state>1</state>
  1560. </option>
  1561. <option>
  1562. <name>CCEncSource</name>
  1563. <state>0</state>
  1564. </option>
  1565. <option>
  1566. <name>CCEncOutput</name>
  1567. <state>0</state>
  1568. </option>
  1569. <option>
  1570. <name>CCEncOutputBom</name>
  1571. <state>1</state>
  1572. </option>
  1573. <option>
  1574. <name>CCEncInput</name>
  1575. <state>0</state>
  1576. </option>
  1577. <option>
  1578. <name>IccExceptions2</name>
  1579. <state>0</state>
  1580. </option>
  1581. <option>
  1582. <name>IccRTTI2</name>
  1583. <state>0</state>
  1584. </option>
  1585. <option>
  1586. <name>OICompilerExtraOption</name>
  1587. <state>1</state>
  1588. </option>
  1589. <option>
  1590. <name>CCStackProtection</name>
  1591. <state>0</state>
  1592. </option>
  1593. </data>
  1594. </settings>
  1595. <settings>
  1596. <name>AARM</name>
  1597. <archiveVersion>2</archiveVersion>
  1598. <data>
  1599. <version>11</version>
  1600. <wantNonLocal>1</wantNonLocal>
  1601. <debug>1</debug>
  1602. <option>
  1603. <name>AObjPrefix</name>
  1604. <state>1</state>
  1605. </option>
  1606. <option>
  1607. <name>AEndian</name>
  1608. <state>1</state>
  1609. </option>
  1610. <option>
  1611. <name>ACaseSensitivity</name>
  1612. <state>1</state>
  1613. </option>
  1614. <option>
  1615. <name>MacroChars</name>
  1616. <version>0</version>
  1617. <state>0</state>
  1618. </option>
  1619. <option>
  1620. <name>AWarnEnable</name>
  1621. <state>0</state>
  1622. </option>
  1623. <option>
  1624. <name>AWarnWhat</name>
  1625. <state>0</state>
  1626. </option>
  1627. <option>
  1628. <name>AWarnOne</name>
  1629. <state></state>
  1630. </option>
  1631. <option>
  1632. <name>AWarnRange1</name>
  1633. <state></state>
  1634. </option>
  1635. <option>
  1636. <name>AWarnRange2</name>
  1637. <state></state>
  1638. </option>
  1639. <option>
  1640. <name>ADebug</name>
  1641. <state>1</state>
  1642. </option>
  1643. <option>
  1644. <name>AltRegisterNames</name>
  1645. <state>0</state>
  1646. </option>
  1647. <option>
  1648. <name>ADefines</name>
  1649. <state></state>
  1650. </option>
  1651. <option>
  1652. <name>AList</name>
  1653. <state>0</state>
  1654. </option>
  1655. <option>
  1656. <name>AListHeader</name>
  1657. <state>1</state>
  1658. </option>
  1659. <option>
  1660. <name>AListing</name>
  1661. <state>1</state>
  1662. </option>
  1663. <option>
  1664. <name>Includes</name>
  1665. <state>0</state>
  1666. </option>
  1667. <option>
  1668. <name>MacDefs</name>
  1669. <state>0</state>
  1670. </option>
  1671. <option>
  1672. <name>MacExps</name>
  1673. <state>1</state>
  1674. </option>
  1675. <option>
  1676. <name>MacExec</name>
  1677. <state>0</state>
  1678. </option>
  1679. <option>
  1680. <name>OnlyAssed</name>
  1681. <state>0</state>
  1682. </option>
  1683. <option>
  1684. <name>MultiLine</name>
  1685. <state>0</state>
  1686. </option>
  1687. <option>
  1688. <name>PageLengthCheck</name>
  1689. <state>0</state>
  1690. </option>
  1691. <option>
  1692. <name>PageLength</name>
  1693. <state>80</state>
  1694. </option>
  1695. <option>
  1696. <name>TabSpacing</name>
  1697. <state>8</state>
  1698. </option>
  1699. <option>
  1700. <name>AXRef</name>
  1701. <state>0</state>
  1702. </option>
  1703. <option>
  1704. <name>AXRefDefines</name>
  1705. <state>0</state>
  1706. </option>
  1707. <option>
  1708. <name>AXRefInternal</name>
  1709. <state>0</state>
  1710. </option>
  1711. <option>
  1712. <name>AXRefDual</name>
  1713. <state>0</state>
  1714. </option>
  1715. <option>
  1716. <name>AProcessor</name>
  1717. <state>1</state>
  1718. </option>
  1719. <option>
  1720. <name>AFpuProcessor</name>
  1721. <state>1</state>
  1722. </option>
  1723. <option>
  1724. <name>AOutputFile</name>
  1725. <state>$FILE_BNAME$.o</state>
  1726. </option>
  1727. <option>
  1728. <name>ALimitErrorsCheck</name>
  1729. <state>0</state>
  1730. </option>
  1731. <option>
  1732. <name>ALimitErrorsEdit</name>
  1733. <state>100</state>
  1734. </option>
  1735. <option>
  1736. <name>AIgnoreStdInclude</name>
  1737. <state>0</state>
  1738. </option>
  1739. <option>
  1740. <name>AUserIncludes</name>
  1741. <state></state>
  1742. </option>
  1743. <option>
  1744. <name>AExtraOptionsCheckV2</name>
  1745. <state>0</state>
  1746. </option>
  1747. <option>
  1748. <name>AExtraOptionsV2</name>
  1749. <state></state>
  1750. </option>
  1751. <option>
  1752. <name>AsmNoLiteralPool</name>
  1753. <state>0</state>
  1754. </option>
  1755. <option>
  1756. <name>PreInclude</name>
  1757. <state></state>
  1758. </option>
  1759. </data>
  1760. </settings>
  1761. <settings>
  1762. <name>OBJCOPY</name>
  1763. <archiveVersion>0</archiveVersion>
  1764. <data>
  1765. <version>1</version>
  1766. <wantNonLocal>1</wantNonLocal>
  1767. <debug>1</debug>
  1768. <option>
  1769. <name>OOCOutputFormat</name>
  1770. <version>3</version>
  1771. <state>1</state>
  1772. </option>
  1773. <option>
  1774. <name>OCOutputOverride</name>
  1775. <state>1</state>
  1776. </option>
  1777. <option>
  1778. <name>OOCOutputFile</name>
  1779. <state>SWITCHBOARD_STM32_usb_cdc.hex</state>
  1780. </option>
  1781. <option>
  1782. <name>OOCCommandLineProducer</name>
  1783. <state>1</state>
  1784. </option>
  1785. <option>
  1786. <name>OOCObjCopyEnable</name>
  1787. <state>1</state>
  1788. </option>
  1789. </data>
  1790. </settings>
  1791. <settings>
  1792. <name>CUSTOM</name>
  1793. <archiveVersion>3</archiveVersion>
  1794. <data>
  1795. <extensions></extensions>
  1796. <cmdline></cmdline>
  1797. <hasPrio>0</hasPrio>
  1798. <buildSequence>inputOutputBased</buildSequence>
  1799. </data>
  1800. </settings>
  1801. <settings>
  1802. <name>BUILDACTION</name>
  1803. <archiveVersion>1</archiveVersion>
  1804. <data>
  1805. <prebuild></prebuild>
  1806. <postbuild></postbuild>
  1807. </data>
  1808. </settings>
  1809. <settings>
  1810. <name>ILINK</name>
  1811. <archiveVersion>0</archiveVersion>
  1812. <data>
  1813. <version>27</version>
  1814. <wantNonLocal>1</wantNonLocal>
  1815. <debug>1</debug>
  1816. <option>
  1817. <name>IlinkLibIOConfig</name>
  1818. <state>1</state>
  1819. </option>
  1820. <option>
  1821. <name>IlinkInputFileSlave</name>
  1822. <state>0</state>
  1823. </option>
  1824. <option>
  1825. <name>IlinkOutputFile</name>
  1826. <state>SWITCHBOARD_Automat_STM32_App.out</state>
  1827. </option>
  1828. <option>
  1829. <name>IlinkDebugInfoEnable</name>
  1830. <state>1</state>
  1831. </option>
  1832. <option>
  1833. <name>IlinkKeepSymbols</name>
  1834. <state></state>
  1835. </option>
  1836. <option>
  1837. <name>IlinkRawBinaryFile</name>
  1838. <state></state>
  1839. </option>
  1840. <option>
  1841. <name>IlinkRawBinarySymbol</name>
  1842. <state></state>
  1843. </option>
  1844. <option>
  1845. <name>IlinkRawBinarySegment</name>
  1846. <state></state>
  1847. </option>
  1848. <option>
  1849. <name>IlinkRawBinaryAlign</name>
  1850. <state></state>
  1851. </option>
  1852. <option>
  1853. <name>IlinkDefines</name>
  1854. <state></state>
  1855. </option>
  1856. <option>
  1857. <name>IlinkConfigDefines</name>
  1858. <state></state>
  1859. </option>
  1860. <option>
  1861. <name>IlinkMapFile</name>
  1862. <state>1</state>
  1863. </option>
  1864. <option>
  1865. <name>IlinkLogFile</name>
  1866. <state>0</state>
  1867. </option>
  1868. <option>
  1869. <name>IlinkLogInitialization</name>
  1870. <state>0</state>
  1871. </option>
  1872. <option>
  1873. <name>IlinkLogModule</name>
  1874. <state>0</state>
  1875. </option>
  1876. <option>
  1877. <name>IlinkLogSection</name>
  1878. <state>0</state>
  1879. </option>
  1880. <option>
  1881. <name>IlinkLogVeneer</name>
  1882. <state>0</state>
  1883. </option>
  1884. <option>
  1885. <name>IlinkIcfOverride</name>
  1886. <state>1</state>
  1887. </option>
  1888. <option>
  1889. <name>IlinkIcfFile</name>
  1890. <state>$PROJ_DIR$/stm32l151xb_flash.icf</state>
  1891. </option>
  1892. <option>
  1893. <name>IlinkIcfFileSlave</name>
  1894. <state></state>
  1895. </option>
  1896. <option>
  1897. <name>IlinkEnableRemarks</name>
  1898. <state>0</state>
  1899. </option>
  1900. <option>
  1901. <name>IlinkSuppressDiags</name>
  1902. <state></state>
  1903. </option>
  1904. <option>
  1905. <name>IlinkTreatAsRem</name>
  1906. <state></state>
  1907. </option>
  1908. <option>
  1909. <name>IlinkTreatAsWarn</name>
  1910. <state></state>
  1911. </option>
  1912. <option>
  1913. <name>IlinkTreatAsErr</name>
  1914. <state></state>
  1915. </option>
  1916. <option>
  1917. <name>IlinkWarningsAreErrors</name>
  1918. <state>0</state>
  1919. </option>
  1920. <option>
  1921. <name>IlinkUseExtraOptions</name>
  1922. <state>0</state>
  1923. </option>
  1924. <option>
  1925. <name>IlinkExtraOptions</name>
  1926. <state></state>
  1927. </option>
  1928. <option>
  1929. <name>IlinkLowLevelInterfaceSlave</name>
  1930. <state>1</state>
  1931. </option>
  1932. <option>
  1933. <name>IlinkAutoLibEnable</name>
  1934. <state>1</state>
  1935. </option>
  1936. <option>
  1937. <name>IlinkAdditionalLibs</name>
  1938. <state></state>
  1939. </option>
  1940. <option>
  1941. <name>IlinkOverrideProgramEntryLabel</name>
  1942. <state>0</state>
  1943. </option>
  1944. <option>
  1945. <name>IlinkProgramEntryLabelSelect</name>
  1946. <state>0</state>
  1947. </option>
  1948. <option>
  1949. <name>IlinkProgramEntryLabel</name>
  1950. <state>__iar_program_start</state>
  1951. </option>
  1952. <option>
  1953. <name>DoFill</name>
  1954. <state>0</state>
  1955. </option>
  1956. <option>
  1957. <name>FillerByte</name>
  1958. <state>0xFF</state>
  1959. </option>
  1960. <option>
  1961. <name>FillerStart</name>
  1962. <state>0x0</state>
  1963. </option>
  1964. <option>
  1965. <name>FillerEnd</name>
  1966. <state>0x0</state>
  1967. </option>
  1968. <option>
  1969. <name>CrcSize</name>
  1970. <version>0</version>
  1971. <state>1</state>
  1972. </option>
  1973. <option>
  1974. <name>CrcAlign</name>
  1975. <state>1</state>
  1976. </option>
  1977. <option>
  1978. <name>CrcPoly</name>
  1979. <state>0x11021</state>
  1980. </option>
  1981. <option>
  1982. <name>CrcCompl</name>
  1983. <version>0</version>
  1984. <state>0</state>
  1985. </option>
  1986. <option>
  1987. <name>CrcBitOrder</name>
  1988. <version>0</version>
  1989. <state>0</state>
  1990. </option>
  1991. <option>
  1992. <name>CrcInitialValue</name>
  1993. <state>0x0</state>
  1994. </option>
  1995. <option>
  1996. <name>DoCrc</name>
  1997. <state>0</state>
  1998. </option>
  1999. <option>
  2000. <name>IlinkBE8Slave</name>
  2001. <state>1</state>
  2002. </option>
  2003. <option>
  2004. <name>IlinkBufferedTerminalOutput</name>
  2005. <state>1</state>
  2006. </option>
  2007. <option>
  2008. <name>IlinkStdoutInterfaceSlave</name>
  2009. <state>1</state>
  2010. </option>
  2011. <option>
  2012. <name>CrcFullSize</name>
  2013. <state>0</state>
  2014. </option>
  2015. <option>
  2016. <name>IlinkIElfToolPostProcess</name>
  2017. <state>0</state>
  2018. </option>
  2019. <option>
  2020. <name>IlinkLogAutoLibSelect</name>
  2021. <state>0</state>
  2022. </option>
  2023. <option>
  2024. <name>IlinkLogRedirSymbols</name>
  2025. <state>0</state>
  2026. </option>
  2027. <option>
  2028. <name>IlinkLogUnusedFragments</name>
  2029. <state>0</state>
  2030. </option>
  2031. <option>
  2032. <name>IlinkCrcReverseByteOrder</name>
  2033. <state>0</state>
  2034. </option>
  2035. <option>
  2036. <name>IlinkCrcUseAsInput</name>
  2037. <state>1</state>
  2038. </option>
  2039. <option>
  2040. <name>IlinkOptInline</name>
  2041. <state>0</state>
  2042. </option>
  2043. <option>
  2044. <name>IlinkOptExceptionsAllow</name>
  2045. <state>1</state>
  2046. </option>
  2047. <option>
  2048. <name>IlinkOptExceptionsForce</name>
  2049. <state>0</state>
  2050. </option>
  2051. <option>
  2052. <name>IlinkCmsis</name>
  2053. <state>1</state>
  2054. </option>
  2055. <option>
  2056. <name>IlinkOptMergeDuplSections</name>
  2057. <state>0</state>
  2058. </option>
  2059. <option>
  2060. <name>IlinkOptUseVfe</name>
  2061. <state>1</state>
  2062. </option>
  2063. <option>
  2064. <name>IlinkOptForceVfe</name>
  2065. <state>0</state>
  2066. </option>
  2067. <option>
  2068. <name>IlinkStackAnalysisEnable</name>
  2069. <state>0</state>
  2070. </option>
  2071. <option>
  2072. <name>IlinkStackControlFile</name>
  2073. <state></state>
  2074. </option>
  2075. <option>
  2076. <name>IlinkStackCallGraphFile</name>
  2077. <state></state>
  2078. </option>
  2079. <option>
  2080. <name>CrcAlgorithm</name>
  2081. <version>1</version>
  2082. <state>1</state>
  2083. </option>
  2084. <option>
  2085. <name>CrcUnitSize</name>
  2086. <version>0</version>
  2087. <state>0</state>
  2088. </option>
  2089. <option>
  2090. <name>IlinkThreadsSlave</name>
  2091. <state>1</state>
  2092. </option>
  2093. <option>
  2094. <name>IlinkLogCallGraph</name>
  2095. <state>0</state>
  2096. </option>
  2097. <option>
  2098. <name>IlinkIcfFile_AltDefault</name>
  2099. <state></state>
  2100. </option>
  2101. <option>
  2102. <name>IlinkEncInput</name>
  2103. <state>0</state>
  2104. </option>
  2105. <option>
  2106. <name>IlinkEncOutput</name>
  2107. <state>0</state>
  2108. </option>
  2109. <option>
  2110. <name>IlinkEncOutputBom</name>
  2111. <state>1</state>
  2112. </option>
  2113. <option>
  2114. <name>IlinkHeapSelect</name>
  2115. <state>1</state>
  2116. </option>
  2117. <option>
  2118. <name>IlinkLocaleSelect</name>
  2119. <state>1</state>
  2120. </option>
  2121. <option>
  2122. <name>IlinkTrustzoneImportLibraryOut</name>
  2123. <state>###Unitialized###</state>
  2124. </option>
  2125. <option>
  2126. <name>OILinkExtraOption</name>
  2127. <state>1</state>
  2128. </option>
  2129. <option>
  2130. <name>IlinkRawBinaryFile2</name>
  2131. <state></state>
  2132. </option>
  2133. <option>
  2134. <name>IlinkRawBinarySymbol2</name>
  2135. <state></state>
  2136. </option>
  2137. <option>
  2138. <name>IlinkRawBinarySegment2</name>
  2139. <state></state>
  2140. </option>
  2141. <option>
  2142. <name>IlinkRawBinaryAlign2</name>
  2143. <state></state>
  2144. </option>
  2145. <option>
  2146. <name>IlinkLogCrtRoutineSelection</name>
  2147. <state>0</state>
  2148. </option>
  2149. <option>
  2150. <name>IlinkLogFragmentInfo</name>
  2151. <state>0</state>
  2152. </option>
  2153. <option>
  2154. <name>IlinkLogInlining</name>
  2155. <state>0</state>
  2156. </option>
  2157. <option>
  2158. <name>IlinkLogMerging</name>
  2159. <state>0</state>
  2160. </option>
  2161. <option>
  2162. <name>IlinkDemangle</name>
  2163. <state>0</state>
  2164. </option>
  2165. <option>
  2166. <name>IlinkWrapperFileEnable</name>
  2167. <state>0</state>
  2168. </option>
  2169. <option>
  2170. <name>IlinkWrapperFile</name>
  2171. <state></state>
  2172. </option>
  2173. <option>
  2174. <name>IlinkProcessor</name>
  2175. <state>1</state>
  2176. </option>
  2177. <option>
  2178. <name>IlinkFpuProcessor</name>
  2179. <state>1</state>
  2180. </option>
  2181. </data>
  2182. </settings>
  2183. <settings>
  2184. <name>IARCHIVE</name>
  2185. <archiveVersion>0</archiveVersion>
  2186. <data>
  2187. <version>0</version>
  2188. <wantNonLocal>1</wantNonLocal>
  2189. <debug>1</debug>
  2190. <option>
  2191. <name>IarchiveInputs</name>
  2192. <state></state>
  2193. </option>
  2194. <option>
  2195. <name>IarchiveOverride</name>
  2196. <state>0</state>
  2197. </option>
  2198. <option>
  2199. <name>IarchiveOutput</name>
  2200. <state>###Unitialized###</state>
  2201. </option>
  2202. </data>
  2203. </settings>
  2204. </configuration>
  2205. <configuration>
  2206. <name>SWITCHBOARD_STM32_Release</name>
  2207. <toolchain>
  2208. <name>ARM</name>
  2209. </toolchain>
  2210. <debug>0</debug>
  2211. <settings>
  2212. <name>General</name>
  2213. <archiveVersion>3</archiveVersion>
  2214. <data>
  2215. <version>35</version>
  2216. <wantNonLocal>1</wantNonLocal>
  2217. <debug>0</debug>
  2218. <option>
  2219. <name>BrowseInfoPath</name>
  2220. <state>SWITCHBOARD_STM32_Release\BrowseInfo</state>
  2221. </option>
  2222. <option>
  2223. <name>ExePath</name>
  2224. <state>SWITCHBOARD_STM32_Release\Exe</state>
  2225. </option>
  2226. <option>
  2227. <name>ObjPath</name>
  2228. <state>SWITCHBOARD_STM32_Release\Obj</state>
  2229. </option>
  2230. <option>
  2231. <name>ListPath</name>
  2232. <state>SWITCHBOARD_STM32_Release\List</state>
  2233. </option>
  2234. <option>
  2235. <name>GEndianMode</name>
  2236. <state>0</state>
  2237. </option>
  2238. <option>
  2239. <name>Input description</name>
  2240. <state>Automatic choice of formatter.</state>
  2241. </option>
  2242. <option>
  2243. <name>Output description</name>
  2244. <state>Automatic choice of formatter.</state>
  2245. </option>
  2246. <option>
  2247. <name>GOutputBinary</name>
  2248. <state>0</state>
  2249. </option>
  2250. <option>
  2251. <name>OGCoreOrChip</name>
  2252. <state>1</state>
  2253. </option>
  2254. <option>
  2255. <name>GRuntimeLibSelect</name>
  2256. <version>0</version>
  2257. <state>2</state>
  2258. </option>
  2259. <option>
  2260. <name>GRuntimeLibSelectSlave</name>
  2261. <version>0</version>
  2262. <state>2</state>
  2263. </option>
  2264. <option>
  2265. <name>RTDescription</name>
  2266. <state>Use the full configuration of the C/C++ runtime library. Full locale interface, C locale, file descriptor support, multibytes in printf and scanf, and hex floats in strtod.</state>
  2267. </option>
  2268. <option>
  2269. <name>OGProductVersion</name>
  2270. <state>4.41A</state>
  2271. </option>
  2272. <option>
  2273. <name>OGLastSavedByProductVersion</name>
  2274. <state>7.80.4.12487</state>
  2275. </option>
  2276. <option>
  2277. <name>OGChipSelectEditMenu</name>
  2278. <state>STM32L151CB-A ST STM32L151CB-A</state>
  2279. </option>
  2280. <option>
  2281. <name>GenLowLevelInterface</name>
  2282. <state>0</state>
  2283. </option>
  2284. <option>
  2285. <name>GEndianModeBE</name>
  2286. <state>1</state>
  2287. </option>
  2288. <option>
  2289. <name>OGBufferedTerminalOutput</name>
  2290. <state>0</state>
  2291. </option>
  2292. <option>
  2293. <name>GenStdoutInterface</name>
  2294. <state>0</state>
  2295. </option>
  2296. <option>
  2297. <name>RTConfigPath2</name>
  2298. <state>$TOOLKIT_DIR$\INC\c\DLib_Config_Full.h</state>
  2299. </option>
  2300. <option>
  2301. <name>GBECoreSlave</name>
  2302. <version>32</version>
  2303. <state>38</state>
  2304. </option>
  2305. <option>
  2306. <name>OGUseCmsis</name>
  2307. <state>0</state>
  2308. </option>
  2309. <option>
  2310. <name>OGUseCmsisDspLib</name>
  2311. <state>0</state>
  2312. </option>
  2313. <option>
  2314. <name>GRuntimeLibThreads</name>
  2315. <state>0</state>
  2316. </option>
  2317. <option>
  2318. <name>CoreVariant</name>
  2319. <version>32</version>
  2320. <state>38</state>
  2321. </option>
  2322. <option>
  2323. <name>GFPUDeviceSlave</name>
  2324. <state>STM32L151CB-A ST STM32L151CB-A</state>
  2325. </option>
  2326. <option>
  2327. <name>FPU2</name>
  2328. <version>0</version>
  2329. <state>0</state>
  2330. </option>
  2331. <option>
  2332. <name>NrRegs</name>
  2333. <version>0</version>
  2334. <state>0</state>
  2335. </option>
  2336. <option>
  2337. <name>NEON</name>
  2338. <state>0</state>
  2339. </option>
  2340. <option>
  2341. <name>GFPUCoreSlave2</name>
  2342. <version>32</version>
  2343. <state>38</state>
  2344. </option>
  2345. <option>
  2346. <name>OGCMSISPackSelectDevice</name>
  2347. </option>
  2348. <option>
  2349. <name>OgLibHeap</name>
  2350. <state>0</state>
  2351. </option>
  2352. <option>
  2353. <name>OGLibAdditionalLocale</name>
  2354. <state>0</state>
  2355. </option>
  2356. <option>
  2357. <name>OGPrintfVariant</name>
  2358. <version>0</version>
  2359. <state>0</state>
  2360. </option>
  2361. <option>
  2362. <name>OGPrintfMultibyteSupport</name>
  2363. <state>0</state>
  2364. </option>
  2365. <option>
  2366. <name>OGScanfVariant</name>
  2367. <version>0</version>
  2368. <state>0</state>
  2369. </option>
  2370. <option>
  2371. <name>OGScanfMultibyteSupport</name>
  2372. <state>0</state>
  2373. </option>
  2374. <option>
  2375. <name>GenLocaleTags</name>
  2376. <state></state>
  2377. </option>
  2378. <option>
  2379. <name>GenLocaleDisplayOnly</name>
  2380. <state></state>
  2381. </option>
  2382. <option>
  2383. <name>DSPExtension</name>
  2384. <state>0</state>
  2385. </option>
  2386. <option>
  2387. <name>TrustZone</name>
  2388. <state>0</state>
  2389. </option>
  2390. <option>
  2391. <name>TrustZoneModes</name>
  2392. <version>0</version>
  2393. <state>0</state>
  2394. </option>
  2395. <option>
  2396. <name>OGAarch64Abi</name>
  2397. <state>0</state>
  2398. </option>
  2399. <option>
  2400. <name>OG_32_64Device</name>
  2401. <state>0</state>
  2402. </option>
  2403. <option>
  2404. <name>BuildFilesPath</name>
  2405. <state>SWITCHBOARD_STM32_Release</state>
  2406. </option>
  2407. <option>
  2408. <name>PointerAuthentication</name>
  2409. <state>0</state>
  2410. </option>
  2411. <option>
  2412. <name>FPU64</name>
  2413. <state>1</state>
  2414. </option>
  2415. </data>
  2416. </settings>
  2417. <settings>
  2418. <name>ICCARM</name>
  2419. <archiveVersion>2</archiveVersion>
  2420. <data>
  2421. <version>37</version>
  2422. <wantNonLocal>1</wantNonLocal>
  2423. <debug>0</debug>
  2424. <option>
  2425. <name>CCOptimizationNoSizeConstraints</name>
  2426. <state>0</state>
  2427. </option>
  2428. <option>
  2429. <name>CCDefines</name>
  2430. <state>NDEBUG</state>
  2431. <state>USE_HAL_DRIVER</state>
  2432. <state>STM32L151xB</state>
  2433. <state>DEBUGMODE=1</state>
  2434. <state>DEBUG_USB=0</state>
  2435. <state>DEBUG_USBTMC=0</state>
  2436. <state>DEBUG_USBTMC_TESTCMD=0</state>
  2437. <state>PLANAR</state>
  2438. </option>
  2439. <option>
  2440. <name>CCPreprocFile</name>
  2441. <state>1</state>
  2442. </option>
  2443. <option>
  2444. <name>CCPreprocComments</name>
  2445. <state>0</state>
  2446. </option>
  2447. <option>
  2448. <name>CCPreprocLine</name>
  2449. <state>1</state>
  2450. </option>
  2451. <option>
  2452. <name>CCListCFile</name>
  2453. <state>1</state>
  2454. </option>
  2455. <option>
  2456. <name>CCListCMnemonics</name>
  2457. <state>0</state>
  2458. </option>
  2459. <option>
  2460. <name>CCListCMessages</name>
  2461. <state>0</state>
  2462. </option>
  2463. <option>
  2464. <name>CCListAssFile</name>
  2465. <state>0</state>
  2466. </option>
  2467. <option>
  2468. <name>CCListAssSource</name>
  2469. <state>0</state>
  2470. </option>
  2471. <option>
  2472. <name>CCEnableRemarks</name>
  2473. <state>0</state>
  2474. </option>
  2475. <option>
  2476. <name>CCDiagSuppress</name>
  2477. <state></state>
  2478. </option>
  2479. <option>
  2480. <name>CCDiagRemark</name>
  2481. <state></state>
  2482. </option>
  2483. <option>
  2484. <name>CCDiagWarning</name>
  2485. <state></state>
  2486. </option>
  2487. <option>
  2488. <name>CCDiagError</name>
  2489. <state></state>
  2490. </option>
  2491. <option>
  2492. <name>CCObjPrefix</name>
  2493. <state>1</state>
  2494. </option>
  2495. <option>
  2496. <name>CCAllowList</name>
  2497. <version>1</version>
  2498. <state>11111110</state>
  2499. </option>
  2500. <option>
  2501. <name>CCDebugInfo</name>
  2502. <state>1</state>
  2503. </option>
  2504. <option>
  2505. <name>IEndianMode</name>
  2506. <state>1</state>
  2507. </option>
  2508. <option>
  2509. <name>IProcessor</name>
  2510. <state>1</state>
  2511. </option>
  2512. <option>
  2513. <name>IExtraOptionsCheck</name>
  2514. <state>0</state>
  2515. </option>
  2516. <option>
  2517. <name>IExtraOptions</name>
  2518. <state></state>
  2519. </option>
  2520. <option>
  2521. <name>CCLangConformance</name>
  2522. <state>0</state>
  2523. </option>
  2524. <option>
  2525. <name>CCSignedPlainChar</name>
  2526. <state>1</state>
  2527. </option>
  2528. <option>
  2529. <name>CCRequirePrototypes</name>
  2530. <state>0</state>
  2531. </option>
  2532. <option>
  2533. <name>CCDiagWarnAreErr</name>
  2534. <state>0</state>
  2535. </option>
  2536. <option>
  2537. <name>CCCompilerRuntimeInfo</name>
  2538. <state>0</state>
  2539. </option>
  2540. <option>
  2541. <name>IFpuProcessor</name>
  2542. <state>1</state>
  2543. </option>
  2544. <option>
  2545. <name>OutputFile</name>
  2546. <state>$FILE_BNAME$.o</state>
  2547. </option>
  2548. <option>
  2549. <name>CCLibConfigHeader</name>
  2550. <state>1</state>
  2551. </option>
  2552. <option>
  2553. <name>PreInclude</name>
  2554. <state></state>
  2555. </option>
  2556. <option>
  2557. <name>CCIncludePath2</name>
  2558. <state>$PROJ_DIR$/../Core/</state>
  2559. <state>$PROJ_DIR$/../App/</state>
  2560. <state>$PROJ_DIR$/../App/acm/</state>
  2561. <state>$PROJ_DIR$/../App/CRC32/</state>
  2562. <state>$PROJ_DIR$/../App/usb/</state>
  2563. <state>$PROJ_DIR$/../App/usbapp/</state>
  2564. <state>$PROJ_DIR$/../App/spi/</state>
  2565. <state>$PROJ_DIR$/../</state>
  2566. <state>$PROJ_DIR$/../drivers/</state>
  2567. <state>$PROJ_DIR$/../drivers/usb/</state>
  2568. <state>$PROJ_DIR$/../drivers/usb/class</state>
  2569. <state>$PROJ_DIR$/../drivers/usb/class/cdc/</state>
  2570. <state>$PROJ_DIR$/../drivers/usb/class/cdc/inc</state>
  2571. <state>$PROJ_DIR$/../drivers/usb/class/vendor/</state>
  2572. <state>$PROJ_DIR$/../drivers/usb/class/usbtmc/</state>
  2573. <state>$PROJ_DIR$/../drivers/usb/core/</state>
  2574. <state>$PROJ_DIR$/../drivers/usb/core/inc/</state>
  2575. <state>$PROJ_DIR$/../drivers/usb/device/</state>
  2576. <state>$PROJ_DIR$/../drivers/usb/device/inc</state>
  2577. <state>$PROJ_DIR$/../drivers/STM32L1xx_HAL_Driver/Inc/</state>
  2578. <state>$PROJ_DIR$/../drivers/STM32L1xx_HAL_Driver/Inc/Legacy</state>
  2579. <state>$PROJ_DIR$/../drivers/CMSIS/Device/ST/STM32L1xx/Include/</state>
  2580. <state>$PROJ_DIR$/../drivers/CMSIS/Include</state>
  2581. </option>
  2582. <option>
  2583. <name>CCStdIncCheck</name>
  2584. <state>0</state>
  2585. </option>
  2586. <option>
  2587. <name>CCCodeSection</name>
  2588. <state>.text</state>
  2589. </option>
  2590. <option>
  2591. <name>IProcessorMode2</name>
  2592. <state>1</state>
  2593. </option>
  2594. <option>
  2595. <name>CCOptLevel</name>
  2596. <state>3</state>
  2597. </option>
  2598. <option>
  2599. <name>CCOptStrategy</name>
  2600. <version>0</version>
  2601. <state>1</state>
  2602. </option>
  2603. <option>
  2604. <name>CCOptLevelSlave</name>
  2605. <state>3</state>
  2606. </option>
  2607. <option>
  2608. <name>CCPosIndRopi</name>
  2609. <state>0</state>
  2610. </option>
  2611. <option>
  2612. <name>CCPosIndRwpi</name>
  2613. <state>0</state>
  2614. </option>
  2615. <option>
  2616. <name>CCPosIndNoDynInit</name>
  2617. <state>0</state>
  2618. </option>
  2619. <option>
  2620. <name>IccLang</name>
  2621. <state>0</state>
  2622. </option>
  2623. <option>
  2624. <name>IccCDialect</name>
  2625. <state>1</state>
  2626. </option>
  2627. <option>
  2628. <name>IccAllowVLA</name>
  2629. <state>0</state>
  2630. </option>
  2631. <option>
  2632. <name>IccStaticDestr</name>
  2633. <state>0</state>
  2634. </option>
  2635. <option>
  2636. <name>IccCppInlineSemantics</name>
  2637. <state>0</state>
  2638. </option>
  2639. <option>
  2640. <name>IccCmsis</name>
  2641. <state>1</state>
  2642. </option>
  2643. <option>
  2644. <name>IccFloatSemantics</name>
  2645. <state>0</state>
  2646. </option>
  2647. <option>
  2648. <name>CCNoLiteralPool</name>
  2649. <state>0</state>
  2650. </option>
  2651. <option>
  2652. <name>CCOptStrategySlave</name>
  2653. <version>0</version>
  2654. <state>1</state>
  2655. </option>
  2656. <option>
  2657. <name>CCGuardCalls</name>
  2658. <state>1</state>
  2659. </option>
  2660. <option>
  2661. <name>CCEncSource</name>
  2662. <state>0</state>
  2663. </option>
  2664. <option>
  2665. <name>CCEncOutput</name>
  2666. <state>0</state>
  2667. </option>
  2668. <option>
  2669. <name>CCEncOutputBom</name>
  2670. <state>1</state>
  2671. </option>
  2672. <option>
  2673. <name>CCEncInput</name>
  2674. <state>0</state>
  2675. </option>
  2676. <option>
  2677. <name>IccExceptions2</name>
  2678. <state>0</state>
  2679. </option>
  2680. <option>
  2681. <name>IccRTTI2</name>
  2682. <state>0</state>
  2683. </option>
  2684. <option>
  2685. <name>OICompilerExtraOption</name>
  2686. <state>1</state>
  2687. </option>
  2688. <option>
  2689. <name>CCStackProtection</name>
  2690. <state>0</state>
  2691. </option>
  2692. </data>
  2693. </settings>
  2694. <settings>
  2695. <name>AARM</name>
  2696. <archiveVersion>2</archiveVersion>
  2697. <data>
  2698. <version>11</version>
  2699. <wantNonLocal>1</wantNonLocal>
  2700. <debug>0</debug>
  2701. <option>
  2702. <name>AObjPrefix</name>
  2703. <state>1</state>
  2704. </option>
  2705. <option>
  2706. <name>AEndian</name>
  2707. <state>1</state>
  2708. </option>
  2709. <option>
  2710. <name>ACaseSensitivity</name>
  2711. <state>1</state>
  2712. </option>
  2713. <option>
  2714. <name>MacroChars</name>
  2715. <version>0</version>
  2716. <state>0</state>
  2717. </option>
  2718. <option>
  2719. <name>AWarnEnable</name>
  2720. <state>0</state>
  2721. </option>
  2722. <option>
  2723. <name>AWarnWhat</name>
  2724. <state>0</state>
  2725. </option>
  2726. <option>
  2727. <name>AWarnOne</name>
  2728. <state></state>
  2729. </option>
  2730. <option>
  2731. <name>AWarnRange1</name>
  2732. <state></state>
  2733. </option>
  2734. <option>
  2735. <name>AWarnRange2</name>
  2736. <state></state>
  2737. </option>
  2738. <option>
  2739. <name>ADebug</name>
  2740. <state>1</state>
  2741. </option>
  2742. <option>
  2743. <name>AltRegisterNames</name>
  2744. <state>0</state>
  2745. </option>
  2746. <option>
  2747. <name>ADefines</name>
  2748. <state></state>
  2749. </option>
  2750. <option>
  2751. <name>AList</name>
  2752. <state>0</state>
  2753. </option>
  2754. <option>
  2755. <name>AListHeader</name>
  2756. <state>1</state>
  2757. </option>
  2758. <option>
  2759. <name>AListing</name>
  2760. <state>1</state>
  2761. </option>
  2762. <option>
  2763. <name>Includes</name>
  2764. <state>0</state>
  2765. </option>
  2766. <option>
  2767. <name>MacDefs</name>
  2768. <state>0</state>
  2769. </option>
  2770. <option>
  2771. <name>MacExps</name>
  2772. <state>1</state>
  2773. </option>
  2774. <option>
  2775. <name>MacExec</name>
  2776. <state>0</state>
  2777. </option>
  2778. <option>
  2779. <name>OnlyAssed</name>
  2780. <state>0</state>
  2781. </option>
  2782. <option>
  2783. <name>MultiLine</name>
  2784. <state>0</state>
  2785. </option>
  2786. <option>
  2787. <name>PageLengthCheck</name>
  2788. <state>0</state>
  2789. </option>
  2790. <option>
  2791. <name>PageLength</name>
  2792. <state>80</state>
  2793. </option>
  2794. <option>
  2795. <name>TabSpacing</name>
  2796. <state>8</state>
  2797. </option>
  2798. <option>
  2799. <name>AXRef</name>
  2800. <state>0</state>
  2801. </option>
  2802. <option>
  2803. <name>AXRefDefines</name>
  2804. <state>0</state>
  2805. </option>
  2806. <option>
  2807. <name>AXRefInternal</name>
  2808. <state>0</state>
  2809. </option>
  2810. <option>
  2811. <name>AXRefDual</name>
  2812. <state>0</state>
  2813. </option>
  2814. <option>
  2815. <name>AProcessor</name>
  2816. <state>1</state>
  2817. </option>
  2818. <option>
  2819. <name>AFpuProcessor</name>
  2820. <state>1</state>
  2821. </option>
  2822. <option>
  2823. <name>AOutputFile</name>
  2824. <state>$FILE_BNAME$.o</state>
  2825. </option>
  2826. <option>
  2827. <name>ALimitErrorsCheck</name>
  2828. <state>0</state>
  2829. </option>
  2830. <option>
  2831. <name>ALimitErrorsEdit</name>
  2832. <state>100</state>
  2833. </option>
  2834. <option>
  2835. <name>AIgnoreStdInclude</name>
  2836. <state>0</state>
  2837. </option>
  2838. <option>
  2839. <name>AUserIncludes</name>
  2840. <state></state>
  2841. </option>
  2842. <option>
  2843. <name>AExtraOptionsCheckV2</name>
  2844. <state>0</state>
  2845. </option>
  2846. <option>
  2847. <name>AExtraOptionsV2</name>
  2848. <state></state>
  2849. </option>
  2850. <option>
  2851. <name>AsmNoLiteralPool</name>
  2852. <state>0</state>
  2853. </option>
  2854. <option>
  2855. <name>PreInclude</name>
  2856. <state></state>
  2857. </option>
  2858. </data>
  2859. </settings>
  2860. <settings>
  2861. <name>OBJCOPY</name>
  2862. <archiveVersion>0</archiveVersion>
  2863. <data>
  2864. <version>1</version>
  2865. <wantNonLocal>1</wantNonLocal>
  2866. <debug>0</debug>
  2867. <option>
  2868. <name>OOCOutputFormat</name>
  2869. <version>3</version>
  2870. <state>1</state>
  2871. </option>
  2872. <option>
  2873. <name>OCOutputOverride</name>
  2874. <state>1</state>
  2875. </option>
  2876. <option>
  2877. <name>OOCOutputFile</name>
  2878. <state>SWITCHBOARD_STM32_App.hex</state>
  2879. </option>
  2880. <option>
  2881. <name>OOCCommandLineProducer</name>
  2882. <state>1</state>
  2883. </option>
  2884. <option>
  2885. <name>OOCObjCopyEnable</name>
  2886. <state>1</state>
  2887. </option>
  2888. </data>
  2889. </settings>
  2890. <settings>
  2891. <name>CUSTOM</name>
  2892. <archiveVersion>3</archiveVersion>
  2893. <data>
  2894. <extensions></extensions>
  2895. <cmdline></cmdline>
  2896. <hasPrio>0</hasPrio>
  2897. <buildSequence>inputOutputBased</buildSequence>
  2898. </data>
  2899. </settings>
  2900. <settings>
  2901. <name>BUILDACTION</name>
  2902. <archiveVersion>1</archiveVersion>
  2903. <data>
  2904. <prebuild></prebuild>
  2905. <postbuild></postbuild>
  2906. </data>
  2907. </settings>
  2908. <settings>
  2909. <name>ILINK</name>
  2910. <archiveVersion>0</archiveVersion>
  2911. <data>
  2912. <version>27</version>
  2913. <wantNonLocal>1</wantNonLocal>
  2914. <debug>0</debug>
  2915. <option>
  2916. <name>IlinkLibIOConfig</name>
  2917. <state>1</state>
  2918. </option>
  2919. <option>
  2920. <name>IlinkInputFileSlave</name>
  2921. <state>0</state>
  2922. </option>
  2923. <option>
  2924. <name>IlinkOutputFile</name>
  2925. <state>SWITCHBOARD_Automat_STM32_App.out</state>
  2926. </option>
  2927. <option>
  2928. <name>IlinkDebugInfoEnable</name>
  2929. <state>1</state>
  2930. </option>
  2931. <option>
  2932. <name>IlinkKeepSymbols</name>
  2933. <state></state>
  2934. </option>
  2935. <option>
  2936. <name>IlinkRawBinaryFile</name>
  2937. <state></state>
  2938. </option>
  2939. <option>
  2940. <name>IlinkRawBinarySymbol</name>
  2941. <state></state>
  2942. </option>
  2943. <option>
  2944. <name>IlinkRawBinarySegment</name>
  2945. <state></state>
  2946. </option>
  2947. <option>
  2948. <name>IlinkRawBinaryAlign</name>
  2949. <state></state>
  2950. </option>
  2951. <option>
  2952. <name>IlinkDefines</name>
  2953. <state></state>
  2954. </option>
  2955. <option>
  2956. <name>IlinkConfigDefines</name>
  2957. <state></state>
  2958. </option>
  2959. <option>
  2960. <name>IlinkMapFile</name>
  2961. <state>1</state>
  2962. </option>
  2963. <option>
  2964. <name>IlinkLogFile</name>
  2965. <state>0</state>
  2966. </option>
  2967. <option>
  2968. <name>IlinkLogInitialization</name>
  2969. <state>0</state>
  2970. </option>
  2971. <option>
  2972. <name>IlinkLogModule</name>
  2973. <state>0</state>
  2974. </option>
  2975. <option>
  2976. <name>IlinkLogSection</name>
  2977. <state>0</state>
  2978. </option>
  2979. <option>
  2980. <name>IlinkLogVeneer</name>
  2981. <state>0</state>
  2982. </option>
  2983. <option>
  2984. <name>IlinkIcfOverride</name>
  2985. <state>1</state>
  2986. </option>
  2987. <option>
  2988. <name>IlinkIcfFile</name>
  2989. <state>$PROJ_DIR$/stm32l151xb_flash.icf</state>
  2990. </option>
  2991. <option>
  2992. <name>IlinkIcfFileSlave</name>
  2993. <state></state>
  2994. </option>
  2995. <option>
  2996. <name>IlinkEnableRemarks</name>
  2997. <state>0</state>
  2998. </option>
  2999. <option>
  3000. <name>IlinkSuppressDiags</name>
  3001. <state></state>
  3002. </option>
  3003. <option>
  3004. <name>IlinkTreatAsRem</name>
  3005. <state></state>
  3006. </option>
  3007. <option>
  3008. <name>IlinkTreatAsWarn</name>
  3009. <state></state>
  3010. </option>
  3011. <option>
  3012. <name>IlinkTreatAsErr</name>
  3013. <state></state>
  3014. </option>
  3015. <option>
  3016. <name>IlinkWarningsAreErrors</name>
  3017. <state>0</state>
  3018. </option>
  3019. <option>
  3020. <name>IlinkUseExtraOptions</name>
  3021. <state>0</state>
  3022. </option>
  3023. <option>
  3024. <name>IlinkExtraOptions</name>
  3025. <state></state>
  3026. </option>
  3027. <option>
  3028. <name>IlinkLowLevelInterfaceSlave</name>
  3029. <state>1</state>
  3030. </option>
  3031. <option>
  3032. <name>IlinkAutoLibEnable</name>
  3033. <state>1</state>
  3034. </option>
  3035. <option>
  3036. <name>IlinkAdditionalLibs</name>
  3037. <state></state>
  3038. </option>
  3039. <option>
  3040. <name>IlinkOverrideProgramEntryLabel</name>
  3041. <state>0</state>
  3042. </option>
  3043. <option>
  3044. <name>IlinkProgramEntryLabelSelect</name>
  3045. <state>0</state>
  3046. </option>
  3047. <option>
  3048. <name>IlinkProgramEntryLabel</name>
  3049. <state>__iar_program_start</state>
  3050. </option>
  3051. <option>
  3052. <name>DoFill</name>
  3053. <state>0</state>
  3054. </option>
  3055. <option>
  3056. <name>FillerByte</name>
  3057. <state>0xFF</state>
  3058. </option>
  3059. <option>
  3060. <name>FillerStart</name>
  3061. <state>0x0</state>
  3062. </option>
  3063. <option>
  3064. <name>FillerEnd</name>
  3065. <state>0x0</state>
  3066. </option>
  3067. <option>
  3068. <name>CrcSize</name>
  3069. <version>0</version>
  3070. <state>1</state>
  3071. </option>
  3072. <option>
  3073. <name>CrcAlign</name>
  3074. <state>1</state>
  3075. </option>
  3076. <option>
  3077. <name>CrcPoly</name>
  3078. <state>0x11021</state>
  3079. </option>
  3080. <option>
  3081. <name>CrcCompl</name>
  3082. <version>0</version>
  3083. <state>0</state>
  3084. </option>
  3085. <option>
  3086. <name>CrcBitOrder</name>
  3087. <version>0</version>
  3088. <state>0</state>
  3089. </option>
  3090. <option>
  3091. <name>CrcInitialValue</name>
  3092. <state>0x0</state>
  3093. </option>
  3094. <option>
  3095. <name>DoCrc</name>
  3096. <state>0</state>
  3097. </option>
  3098. <option>
  3099. <name>IlinkBE8Slave</name>
  3100. <state>1</state>
  3101. </option>
  3102. <option>
  3103. <name>IlinkBufferedTerminalOutput</name>
  3104. <state>1</state>
  3105. </option>
  3106. <option>
  3107. <name>IlinkStdoutInterfaceSlave</name>
  3108. <state>1</state>
  3109. </option>
  3110. <option>
  3111. <name>CrcFullSize</name>
  3112. <state>0</state>
  3113. </option>
  3114. <option>
  3115. <name>IlinkIElfToolPostProcess</name>
  3116. <state>0</state>
  3117. </option>
  3118. <option>
  3119. <name>IlinkLogAutoLibSelect</name>
  3120. <state>0</state>
  3121. </option>
  3122. <option>
  3123. <name>IlinkLogRedirSymbols</name>
  3124. <state>0</state>
  3125. </option>
  3126. <option>
  3127. <name>IlinkLogUnusedFragments</name>
  3128. <state>0</state>
  3129. </option>
  3130. <option>
  3131. <name>IlinkCrcReverseByteOrder</name>
  3132. <state>0</state>
  3133. </option>
  3134. <option>
  3135. <name>IlinkCrcUseAsInput</name>
  3136. <state>1</state>
  3137. </option>
  3138. <option>
  3139. <name>IlinkOptInline</name>
  3140. <state>0</state>
  3141. </option>
  3142. <option>
  3143. <name>IlinkOptExceptionsAllow</name>
  3144. <state>0</state>
  3145. </option>
  3146. <option>
  3147. <name>IlinkOptExceptionsForce</name>
  3148. <state>0</state>
  3149. </option>
  3150. <option>
  3151. <name>IlinkCmsis</name>
  3152. <state>1</state>
  3153. </option>
  3154. <option>
  3155. <name>IlinkOptMergeDuplSections</name>
  3156. <state>1</state>
  3157. </option>
  3158. <option>
  3159. <name>IlinkOptUseVfe</name>
  3160. <state>1</state>
  3161. </option>
  3162. <option>
  3163. <name>IlinkOptForceVfe</name>
  3164. <state>0</state>
  3165. </option>
  3166. <option>
  3167. <name>IlinkStackAnalysisEnable</name>
  3168. <state>0</state>
  3169. </option>
  3170. <option>
  3171. <name>IlinkStackControlFile</name>
  3172. <state></state>
  3173. </option>
  3174. <option>
  3175. <name>IlinkStackCallGraphFile</name>
  3176. <state></state>
  3177. </option>
  3178. <option>
  3179. <name>CrcAlgorithm</name>
  3180. <version>1</version>
  3181. <state>1</state>
  3182. </option>
  3183. <option>
  3184. <name>CrcUnitSize</name>
  3185. <version>0</version>
  3186. <state>0</state>
  3187. </option>
  3188. <option>
  3189. <name>IlinkThreadsSlave</name>
  3190. <state>1</state>
  3191. </option>
  3192. <option>
  3193. <name>IlinkLogCallGraph</name>
  3194. <state>0</state>
  3195. </option>
  3196. <option>
  3197. <name>IlinkIcfFile_AltDefault</name>
  3198. <state></state>
  3199. </option>
  3200. <option>
  3201. <name>IlinkEncInput</name>
  3202. <state>0</state>
  3203. </option>
  3204. <option>
  3205. <name>IlinkEncOutput</name>
  3206. <state>0</state>
  3207. </option>
  3208. <option>
  3209. <name>IlinkEncOutputBom</name>
  3210. <state>1</state>
  3211. </option>
  3212. <option>
  3213. <name>IlinkHeapSelect</name>
  3214. <state>1</state>
  3215. </option>
  3216. <option>
  3217. <name>IlinkLocaleSelect</name>
  3218. <state>1</state>
  3219. </option>
  3220. <option>
  3221. <name>IlinkTrustzoneImportLibraryOut</name>
  3222. <state>###Unitialized###</state>
  3223. </option>
  3224. <option>
  3225. <name>OILinkExtraOption</name>
  3226. <state>1</state>
  3227. </option>
  3228. <option>
  3229. <name>IlinkRawBinaryFile2</name>
  3230. <state></state>
  3231. </option>
  3232. <option>
  3233. <name>IlinkRawBinarySymbol2</name>
  3234. <state></state>
  3235. </option>
  3236. <option>
  3237. <name>IlinkRawBinarySegment2</name>
  3238. <state></state>
  3239. </option>
  3240. <option>
  3241. <name>IlinkRawBinaryAlign2</name>
  3242. <state></state>
  3243. </option>
  3244. <option>
  3245. <name>IlinkLogCrtRoutineSelection</name>
  3246. <state>0</state>
  3247. </option>
  3248. <option>
  3249. <name>IlinkLogFragmentInfo</name>
  3250. <state>0</state>
  3251. </option>
  3252. <option>
  3253. <name>IlinkLogInlining</name>
  3254. <state>0</state>
  3255. </option>
  3256. <option>
  3257. <name>IlinkLogMerging</name>
  3258. <state>0</state>
  3259. </option>
  3260. <option>
  3261. <name>IlinkDemangle</name>
  3262. <state>0</state>
  3263. </option>
  3264. <option>
  3265. <name>IlinkWrapperFileEnable</name>
  3266. <state>0</state>
  3267. </option>
  3268. <option>
  3269. <name>IlinkWrapperFile</name>
  3270. <state></state>
  3271. </option>
  3272. <option>
  3273. <name>IlinkProcessor</name>
  3274. <state>1</state>
  3275. </option>
  3276. <option>
  3277. <name>IlinkFpuProcessor</name>
  3278. <state>1</state>
  3279. </option>
  3280. </data>
  3281. </settings>
  3282. <settings>
  3283. <name>IARCHIVE</name>
  3284. <archiveVersion>0</archiveVersion>
  3285. <data>
  3286. <version>0</version>
  3287. <wantNonLocal>1</wantNonLocal>
  3288. <debug>0</debug>
  3289. <option>
  3290. <name>IarchiveInputs</name>
  3291. <state></state>
  3292. </option>
  3293. <option>
  3294. <name>IarchiveOverride</name>
  3295. <state>0</state>
  3296. </option>
  3297. <option>
  3298. <name>IarchiveOutput</name>
  3299. <state>###Unitialized###</state>
  3300. </option>
  3301. </data>
  3302. </settings>
  3303. </configuration>
  3304. <group>
  3305. <name>Application</name>
  3306. <group>
  3307. <name>EWARM</name>
  3308. <file>
  3309. <name>$PROJ_DIR$\..\ACM_Automat.icf</name>
  3310. </file>
  3311. <file>
  3312. <name>$PROJ_DIR$\startup_stm32l151xb.s</name>
  3313. </file>
  3314. <file>
  3315. <name>$PROJ_DIR$\stm32l151xb_flash.icf</name>
  3316. </file>
  3317. </group>
  3318. <group>
  3319. <name>User</name>
  3320. <group>
  3321. <name>Asserts</name>
  3322. <file>
  3323. <name>$PROJ_DIR$\..\App\my_assert.h</name>
  3324. </file>
  3325. <file>
  3326. <name>$PROJ_DIR$\..\App\my_assert_exclude.h</name>
  3327. </file>
  3328. <file>
  3329. <name>$PROJ_DIR$\..\App\static_assert.h</name>
  3330. </file>
  3331. </group>
  3332. <group>
  3333. <name>Automat</name>
  3334. <file>
  3335. <name>$PROJ_DIR$\..\App\automat\automat.c</name>
  3336. </file>
  3337. <file>
  3338. <name>$PROJ_DIR$\..\App\automat\automat.h</name>
  3339. </file>
  3340. </group>
  3341. <group>
  3342. <name>Control_table</name>
  3343. <file>
  3344. <name>$PROJ_DIR$\..\App\control_table\control_table.c</name>
  3345. </file>
  3346. </group>
  3347. <group>
  3348. <name>Core</name>
  3349. <file>
  3350. <name>$PROJ_DIR$\..\Core\config.h</name>
  3351. </file>
  3352. <file>
  3353. <name>$PROJ_DIR$\..\Core\config_pins.h</name>
  3354. </file>
  3355. <file>
  3356. <name>$PROJ_DIR$\..\Core\csect.c</name>
  3357. </file>
  3358. <file>
  3359. <name>$PROJ_DIR$\..\Core\debugpins.c</name>
  3360. </file>
  3361. <file>
  3362. <name>$PROJ_DIR$\..\Core\debugpins.h</name>
  3363. </file>
  3364. <file>
  3365. <name>$PROJ_DIR$\..\Core\debugpinsapi.h</name>
  3366. </file>
  3367. <file>
  3368. <name>$PROJ_DIR$\..\Core\gpio.c</name>
  3369. </file>
  3370. <file>
  3371. <name>$PROJ_DIR$\..\Core\main.c</name>
  3372. </file>
  3373. <file>
  3374. <name>$PROJ_DIR$\..\Core\sleep_and_exti.c</name>
  3375. </file>
  3376. <file>
  3377. <name>$PROJ_DIR$\..\Core\stm32l1xx_hal_conf.h</name>
  3378. </file>
  3379. <file>
  3380. <name>$PROJ_DIR$\..\Core\stm32l1xx_hal_msp.c</name>
  3381. </file>
  3382. <file>
  3383. <name>$PROJ_DIR$\..\Core\stm32l1xx_it.c</name>
  3384. </file>
  3385. </group>
  3386. <group>
  3387. <name>CRC32</name>
  3388. <file>
  3389. <name>$PROJ_DIR$\..\App\crc32\crc32.c</name>
  3390. </file>
  3391. <file>
  3392. <name>$PROJ_DIR$\..\App\crc32\crc32.h</name>
  3393. </file>
  3394. </group>
  3395. <group>
  3396. <name>fseq</name>
  3397. <file>
  3398. <name>$PROJ_DIR$\..\App\fseq\fseq.c</name>
  3399. </file>
  3400. <file>
  3401. <name>$PROJ_DIR$\..\App\fseq\fseq.h</name>
  3402. </file>
  3403. </group>
  3404. <group>
  3405. <name>Led</name>
  3406. <file>
  3407. <name>$PROJ_DIR$\..\App\Led\led.c</name>
  3408. </file>
  3409. <file>
  3410. <name>$PROJ_DIR$\..\App\Led\led.h</name>
  3411. </file>
  3412. </group>
  3413. <group>
  3414. <name>NFMClass</name>
  3415. <file>
  3416. <name>$PROJ_DIR$\..\App\nfm\nfm_base.c</name>
  3417. </file>
  3418. <file>
  3419. <name>$PROJ_DIR$\..\App\nfm\nfm_base.h</name>
  3420. </file>
  3421. <file>
  3422. <name>$PROJ_DIR$\..\App\nfm\nfm_base_ECalUnit.h</name>
  3423. <excluded>
  3424. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3425. </excluded>
  3426. </file>
  3427. <file>
  3428. <name>$PROJ_DIR$\..\App\nfm\nfm_base_excls.h</name>
  3429. </file>
  3430. <file>
  3431. <name>$PROJ_DIR$\..\App\nfm\nfm_base_keyprofiles.c</name>
  3432. </file>
  3433. <file>
  3434. <name>$PROJ_DIR$\..\App\nfm\nfm_base_keyprofiles.h</name>
  3435. </file>
  3436. <file>
  3437. <name>$PROJ_DIR$\..\App\nfm\nfm_base_mem.c</name>
  3438. </file>
  3439. <file>
  3440. <name>$PROJ_DIR$\..\App\nfm\nfm_base_mem.h</name>
  3441. </file>
  3442. <file>
  3443. <name>$PROJ_DIR$\..\App\nfm\nfm_base_model.c</name>
  3444. </file>
  3445. <file>
  3446. <name>$PROJ_DIR$\..\App\nfm\nfm_base_model.h</name>
  3447. </file>
  3448. </group>
  3449. <group>
  3450. <name>Queue</name>
  3451. <file>
  3452. <name>$PROJ_DIR$\..\App\queue\queue.c</name>
  3453. </file>
  3454. <file>
  3455. <name>$PROJ_DIR$\..\App\queue\queue.h</name>
  3456. </file>
  3457. <file>
  3458. <name>$PROJ_DIR$\..\App\queue\queue_ex.c</name>
  3459. </file>
  3460. <file>
  3461. <name>$PROJ_DIR$\..\App\queue\queue_ex.h</name>
  3462. </file>
  3463. </group>
  3464. <group>
  3465. <name>RingBuffer</name>
  3466. <file>
  3467. <name>$PROJ_DIR$\..\App\ringbuffer\ring_buffer.c</name>
  3468. </file>
  3469. <file>
  3470. <name>$PROJ_DIR$\..\App\ringbuffer\ring_buffer.h</name>
  3471. </file>
  3472. </group>
  3473. <group>
  3474. <name>RSeq</name>
  3475. <file>
  3476. <name>$PROJ_DIR$\..\App\rseq\rseq.c</name>
  3477. </file>
  3478. <file>
  3479. <name>$PROJ_DIR$\..\App\rseq\rseq.h</name>
  3480. </file>
  3481. </group>
  3482. <group>
  3483. <name>treelist</name>
  3484. <file>
  3485. <name>$PROJ_DIR$\..\App\tlst\tree_list.c</name>
  3486. </file>
  3487. <file>
  3488. <name>$PROJ_DIR$\..\App\tlst\tree_list.h</name>
  3489. </file>
  3490. </group>
  3491. <group>
  3492. <name>USB_App</name>
  3493. <group>
  3494. <name>Common</name>
  3495. <file>
  3496. <name>$PROJ_DIR$\..\App\usbapp\usb_application_default_dataapp.c</name>
  3497. </file>
  3498. <file>
  3499. <name>$PROJ_DIR$\..\App\usbapp\usb_application_default_dataapp.h</name>
  3500. </file>
  3501. <file>
  3502. <name>$PROJ_DIR$\..\App\usbapp\usb_application_enumspy.c</name>
  3503. </file>
  3504. <file>
  3505. <name>$PROJ_DIR$\..\App\usbapp\usb_application_enumspy.h</name>
  3506. </file>
  3507. </group>
  3508. <group>
  3509. <name>SCPI</name>
  3510. <group>
  3511. <name>Bridge_Level</name>
  3512. <file>
  3513. <name>$PROJ_DIR$\..\App\usbapp\usb_application_usbtmc.c</name>
  3514. </file>
  3515. <file>
  3516. <name>$PROJ_DIR$\..\App\usbapp\usb_application_usbtmc.h</name>
  3517. </file>
  3518. </group>
  3519. <group>
  3520. <name>SCPI_Level</name>
  3521. <group>
  3522. <name>Commands</name>
  3523. <group>
  3524. <name>Handlers</name>
  3525. <group>
  3526. <name>Basic</name>
  3527. <file>
  3528. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\cls.c</name>
  3529. </file>
  3530. <file>
  3531. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\cls.h</name>
  3532. </file>
  3533. <file>
  3534. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\ese.h</name>
  3535. </file>
  3536. <file>
  3537. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\ese_sre.c</name>
  3538. </file>
  3539. <file>
  3540. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\ese_sre.h</name>
  3541. </file>
  3542. <file>
  3543. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\esr.h</name>
  3544. </file>
  3545. <file>
  3546. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\esr_stb.c</name>
  3547. </file>
  3548. <file>
  3549. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\esr_stb.h</name>
  3550. </file>
  3551. <file>
  3552. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\idn.c</name>
  3553. </file>
  3554. <file>
  3555. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\idn.h</name>
  3556. </file>
  3557. <file>
  3558. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\opc.c</name>
  3559. </file>
  3560. <file>
  3561. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\opc.h</name>
  3562. </file>
  3563. <file>
  3564. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\rst.c</name>
  3565. </file>
  3566. <file>
  3567. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\rst.h</name>
  3568. </file>
  3569. <file>
  3570. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\sre.h</name>
  3571. </file>
  3572. <file>
  3573. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\syst_error.c</name>
  3574. </file>
  3575. <file>
  3576. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\syst_error.h</name>
  3577. </file>
  3578. <file>
  3579. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\syst_version.c</name>
  3580. </file>
  3581. <file>
  3582. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\syst_version.h</name>
  3583. </file>
  3584. <file>
  3585. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\trg.c</name>
  3586. </file>
  3587. <file>
  3588. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\trg.h</name>
  3589. </file>
  3590. </group>
  3591. <group>
  3592. <name>Device</name>
  3593. <file>
  3594. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\interface_switch.c</name>
  3595. </file>
  3596. <file>
  3597. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\interface_switch.h</name>
  3598. </file>
  3599. <file>
  3600. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\led_switch.c</name>
  3601. </file>
  3602. <file>
  3603. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\led_switch.h</name>
  3604. </file>
  3605. <file>
  3606. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\measurement_and_switch.c</name>
  3607. <excluded>
  3608. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3609. </excluded>
  3610. </file>
  3611. <file>
  3612. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\measurement_and_switch.h</name>
  3613. <excluded>
  3614. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3615. </excluded>
  3616. </file>
  3617. <file>
  3618. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_adapter.c</name>
  3619. </file>
  3620. <file>
  3621. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_adapter.h</name>
  3622. </file>
  3623. <file>
  3624. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_connector.c</name>
  3625. </file>
  3626. <file>
  3627. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_connector.h</name>
  3628. </file>
  3629. <file>
  3630. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_data.c</name>
  3631. </file>
  3632. <file>
  3633. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_data.h</name>
  3634. </file>
  3635. <file>
  3636. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_freq_data.c</name>
  3637. </file>
  3638. <file>
  3639. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_freq_data.h</name>
  3640. </file>
  3641. <file>
  3642. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_freq_segm_data.c</name>
  3643. </file>
  3644. <file>
  3645. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_freq_segm_data.h</name>
  3646. </file>
  3647. <file>
  3648. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_group.c</name>
  3649. </file>
  3650. <file>
  3651. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_group.h</name>
  3652. </file>
  3653. <file>
  3654. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_ther_corr_data.c</name>
  3655. </file>
  3656. <file>
  3657. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_ther_corr_data.h</name>
  3658. </file>
  3659. <file>
  3660. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_ther_corr_group.c</name>
  3661. </file>
  3662. <file>
  3663. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\memory_table_ther_corr_group.h</name>
  3664. </file>
  3665. <file>
  3666. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\power_switch.c</name>
  3667. </file>
  3668. <file>
  3669. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\power_switch.h</name>
  3670. </file>
  3671. <file>
  3672. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\scpi_service.c</name>
  3673. </file>
  3674. <file>
  3675. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\scpi_service.h</name>
  3676. </file>
  3677. <file>
  3678. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\scpi_table.c</name>
  3679. </file>
  3680. <file>
  3681. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\scpi_table.h</name>
  3682. </file>
  3683. <file>
  3684. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\trigger_state.c</name>
  3685. </file>
  3686. <file>
  3687. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\trigger_state.h</name>
  3688. </file>
  3689. </group>
  3690. <file>
  3691. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\test.c</name>
  3692. </file>
  3693. <file>
  3694. <name>$PROJ_DIR$\..\App\scpi\CommandHandlers\test.h</name>
  3695. </file>
  3696. </group>
  3697. <file>
  3698. <name>$PROJ_DIR$\..\App\scpi\scpi_commands.c</name>
  3699. </file>
  3700. <file>
  3701. <name>$PROJ_DIR$\..\App\scpi\scpi_commands.h</name>
  3702. </file>
  3703. </group>
  3704. <group>
  3705. <name>Core</name>
  3706. <group>
  3707. <name>Execution_Stages</name>
  3708. <group>
  3709. <name>[0] Reset parser</name>
  3710. <file>
  3711. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\reset_state.c</name>
  3712. </file>
  3713. <file>
  3714. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\reset_state.h</name>
  3715. </file>
  3716. </group>
  3717. <group>
  3718. <name>[1] Search for command header</name>
  3719. <file>
  3720. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\search_for_command.c</name>
  3721. </file>
  3722. <file>
  3723. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\search_for_command.h</name>
  3724. </file>
  3725. </group>
  3726. <group>
  3727. <name>[2] Process command header</name>
  3728. <file>
  3729. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\process_command.c</name>
  3730. </file>
  3731. <file>
  3732. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\process_command.h</name>
  3733. </file>
  3734. </group>
  3735. <group>
  3736. <name>[3] Execute command+data</name>
  3737. <file>
  3738. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\process_data.c</name>
  3739. </file>
  3740. <file>
  3741. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\process_data.h</name>
  3742. </file>
  3743. </group>
  3744. <group>
  3745. <name>[4] EndOfData</name>
  3746. <file>
  3747. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\endof_process_data.c</name>
  3748. </file>
  3749. <file>
  3750. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\endof_process_data.h</name>
  3751. </file>
  3752. </group>
  3753. <group>
  3754. <name>[5] Error state</name>
  3755. <file>
  3756. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\handle_error.c</name>
  3757. </file>
  3758. <file>
  3759. <name>$PROJ_DIR$\..\App\scpi\CommandParserStates\handle_error.h</name>
  3760. </file>
  3761. </group>
  3762. </group>
  3763. <group>
  3764. <name>GPIB</name>
  3765. <file>
  3766. <name>$PROJ_DIR$\..\App\scpi\scpi_gpib_core.c</name>
  3767. </file>
  3768. <file>
  3769. <name>$PROJ_DIR$\..\App\scpi\scpi_gpib_core.h</name>
  3770. </file>
  3771. </group>
  3772. <group>
  3773. <name>Helpers</name>
  3774. <file>
  3775. <name>$PROJ_DIR$\..\App\scpi\scpi_args_helper.c</name>
  3776. </file>
  3777. <file>
  3778. <name>$PROJ_DIR$\..\App\scpi\scpi_args_helper.h</name>
  3779. </file>
  3780. <file>
  3781. <name>$PROJ_DIR$\..\App\scpi\scpi_response_helper.c</name>
  3782. </file>
  3783. <file>
  3784. <name>$PROJ_DIR$\..\App\scpi\scpi_response_helper.h</name>
  3785. </file>
  3786. </group>
  3787. <group>
  3788. <name>Parser</name>
  3789. <file>
  3790. <name>$PROJ_DIR$\..\App\scpi\scpi_numeric.c</name>
  3791. </file>
  3792. <file>
  3793. <name>$PROJ_DIR$\..\App\scpi\scpi_parser.c</name>
  3794. </file>
  3795. <file>
  3796. <name>$PROJ_DIR$\..\App\scpi\scpi_parser.h</name>
  3797. </file>
  3798. </group>
  3799. <file>
  3800. <name>$PROJ_DIR$\..\App\scpi\scpi_base.h</name>
  3801. </file>
  3802. <file>
  3803. <name>$PROJ_DIR$\..\App\scpi\scpi_core.c</name>
  3804. </file>
  3805. <file>
  3806. <name>$PROJ_DIR$\..\App\scpi\scpi_core.h</name>
  3807. </file>
  3808. <file>
  3809. <name>$PROJ_DIR$\..\App\scpi\scpi_core_private.h</name>
  3810. </file>
  3811. </group>
  3812. <group>
  3813. <name>Errors</name>
  3814. <file>
  3815. <name>$PROJ_DIR$\..\App\scpi\scpi_errs.c</name>
  3816. </file>
  3817. <file>
  3818. <name>$PROJ_DIR$\..\App\scpi\scpi_errs.h</name>
  3819. </file>
  3820. </group>
  3821. <group>
  3822. <name>SAL</name>
  3823. <file>
  3824. <name>$PROJ_DIR$\..\App\scpi\scpi_errq.c</name>
  3825. </file>
  3826. <file>
  3827. <name>$PROJ_DIR$\..\App\scpi\scpi_errq.h</name>
  3828. </file>
  3829. <file>
  3830. <name>$PROJ_DIR$\..\App\scpi\scpi_tlst_ex.c</name>
  3831. </file>
  3832. <file>
  3833. <name>$PROJ_DIR$\..\App\scpi\scpi_tlst_ex.h</name>
  3834. </file>
  3835. </group>
  3836. </group>
  3837. <group>
  3838. <name>USBTMC_Level</name>
  3839. <file>
  3840. <name>$PROJ_DIR$\..\App\usbapp\usbtmclib\usbtmclib_basic.c</name>
  3841. </file>
  3842. <file>
  3843. <name>$PROJ_DIR$\..\App\usbapp\usbtmclib\usbtmclib_basic.h</name>
  3844. </file>
  3845. <file>
  3846. <name>$PROJ_DIR$\..\App\usbapp\usbtmclib\usbtmclib_errors.h</name>
  3847. </file>
  3848. <file>
  3849. <name>$PROJ_DIR$\..\App\usbapp\usbtmclib\usbtmclib_requests.h</name>
  3850. </file>
  3851. <file>
  3852. <name>$PROJ_DIR$\..\App\usbapp\usbtmclib\usbtmclib_types.h</name>
  3853. </file>
  3854. </group>
  3855. </group>
  3856. <group>
  3857. <name>Vendor</name>
  3858. <file>
  3859. <name>$PROJ_DIR$\..\App\usbapp\usb_application_flash.c</name>
  3860. </file>
  3861. <file>
  3862. <name>$PROJ_DIR$\..\App\usbapp\usb_application_flash.h</name>
  3863. </file>
  3864. <file>
  3865. <name>$PROJ_DIR$\..\App\usbapp\usb_application_interfaceswitch.c</name>
  3866. </file>
  3867. <file>
  3868. <name>$PROJ_DIR$\..\App\usbapp\usb_application_interfaceswitch.h</name>
  3869. </file>
  3870. <file>
  3871. <name>$PROJ_DIR$\..\App\usbapp\usb_application_led.c</name>
  3872. </file>
  3873. <file>
  3874. <name>$PROJ_DIR$\..\App\usbapp\usb_application_led.h</name>
  3875. </file>
  3876. <file>
  3877. <name>$PROJ_DIR$\..\App\usbapp\usb_application_power.c</name>
  3878. <excluded>
  3879. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3880. </excluded>
  3881. </file>
  3882. <file>
  3883. <name>$PROJ_DIR$\..\App\usbapp\usb_application_power.h</name>
  3884. <excluded>
  3885. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3886. </excluded>
  3887. </file>
  3888. <file>
  3889. <name>$PROJ_DIR$\..\App\usbapp\usb_application_service.c</name>
  3890. </file>
  3891. <file>
  3892. <name>$PROJ_DIR$\..\App\usbapp\usb_application_service.h</name>
  3893. </file>
  3894. <file>
  3895. <name>$PROJ_DIR$\..\App\usbapp\usb_application_service_def.h</name>
  3896. </file>
  3897. <file>
  3898. <name>$PROJ_DIR$\..\App\usbapp\usb_application_switch.c</name>
  3899. <excluded>
  3900. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3901. </excluded>
  3902. </file>
  3903. <file>
  3904. <name>$PROJ_DIR$\..\App\usbapp\usb_application_switch.h</name>
  3905. <excluded>
  3906. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3907. </excluded>
  3908. </file>
  3909. <file>
  3910. <name>$PROJ_DIR$\..\App\usbapp\usb_application_temp.c</name>
  3911. <excluded>
  3912. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3913. </excluded>
  3914. </file>
  3915. <file>
  3916. <name>$PROJ_DIR$\..\App\usbapp\usb_application_temp.h</name>
  3917. <excluded>
  3918. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3919. </excluded>
  3920. </file>
  3921. </group>
  3922. </group>
  3923. <group>
  3924. <name>USB_Layer</name>
  3925. <group>
  3926. <name>Bridge_Iface</name>
  3927. <file>
  3928. <name>$PROJ_DIR$\..\App\usb\usb_bridge.c</name>
  3929. </file>
  3930. <file>
  3931. <name>$PROJ_DIR$\..\App\usb\usb_bridge.h</name>
  3932. </file>
  3933. </group>
  3934. <group>
  3935. <name>Descriptors</name>
  3936. <file>
  3937. <name>$PROJ_DIR$\..\App\usb\usbd_desc.c</name>
  3938. </file>
  3939. <file>
  3940. <name>$PROJ_DIR$\..\App\usb\usbd_desc.h</name>
  3941. </file>
  3942. </group>
  3943. <file>
  3944. <name>$PROJ_DIR$\..\App\usb\usb_transfers.c</name>
  3945. </file>
  3946. <file>
  3947. <name>$PROJ_DIR$\..\App\usb\usb_transfers.h</name>
  3948. </file>
  3949. </group>
  3950. <group>
  3951. <name>Version</name>
  3952. <file>
  3953. <name>$PROJ_DIR$\..\App\version\version.c</name>
  3954. </file>
  3955. <file>
  3956. <name>$PROJ_DIR$\..\App\version\version.h</name>
  3957. </file>
  3958. </group>
  3959. </group>
  3960. </group>
  3961. <group>
  3962. <name>Drivers</name>
  3963. <group>
  3964. <name>ADC</name>
  3965. <excluded>
  3966. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3967. </excluded>
  3968. <file>
  3969. <name>$PROJ_DIR$\..\Drivers\adc\adc.c</name>
  3970. </file>
  3971. <file>
  3972. <name>$PROJ_DIR$\..\Drivers\adc\adc.h</name>
  3973. </file>
  3974. <file>
  3975. <name>$PROJ_DIR$\..\Drivers\adc\adc_ch.h</name>
  3976. </file>
  3977. </group>
  3978. <group>
  3979. <name>CMSIS</name>
  3980. <file>
  3981. <name>$PROJ_DIR$\..\Core\system_stm32l1xx.c</name>
  3982. </file>
  3983. </group>
  3984. <group>
  3985. <name>ExtMemory</name>
  3986. <group>
  3987. <name>AT45XXX</name>
  3988. <excluded>
  3989. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  3990. <configuration>SWITCHBOARD_STM32_Debug_AssertExclude</configuration>
  3991. <configuration>SWITCHBOARD_STM32_Release</configuration>
  3992. </excluded>
  3993. <group>
  3994. <name>api</name>
  3995. <file>
  3996. <name>$PROJ_DIR$\..\Drivers\flash\at45\api\AT45DB161E_API.c</name>
  3997. </file>
  3998. <file>
  3999. <name>$PROJ_DIR$\..\Drivers\flash\at45\api\AT45DB161E_API.h</name>
  4000. </file>
  4001. </group>
  4002. <group>
  4003. <name>common</name>
  4004. <file>
  4005. <name>$PROJ_DIR$\..\Drivers\flash\at45\common\AT45DBXXX_HAL.h</name>
  4006. </file>
  4007. </group>
  4008. <group>
  4009. <name>config</name>
  4010. <file>
  4011. <name>$PROJ_DIR$\..\Drivers\flash\at45\config\AT45DB161E_CONF.h</name>
  4012. </file>
  4013. <file>
  4014. <name>$PROJ_DIR$\..\Drivers\flash\at45\config\AT45DBXXX_import.h</name>
  4015. </file>
  4016. </group>
  4017. <group>
  4018. <name>LL</name>
  4019. <file>
  4020. <name>$PROJ_DIR$\..\Drivers\flash\at45\lowlevel\AT45DB161E_GLOB.h</name>
  4021. </file>
  4022. <file>
  4023. <name>$PROJ_DIR$\..\Drivers\flash\at45\lowlevel\AT45DB161E_LL.c</name>
  4024. </file>
  4025. <file>
  4026. <name>$PROJ_DIR$\..\Drivers\flash\at45\lowlevel\AT45DB161E_LL.h</name>
  4027. </file>
  4028. <file>
  4029. <name>$PROJ_DIR$\..\Drivers\flash\at45\lowlevel\AT45DB161E_LL_func.h</name>
  4030. </file>
  4031. </group>
  4032. <file>
  4033. <name>$PROJ_DIR$\..\Drivers\flash\at45\at45db161e.h</name>
  4034. </file>
  4035. </group>
  4036. <group>
  4037. <name>Base</name>
  4038. <file>
  4039. <name>$PROJ_DIR$\..\Drivers\flash\base\bitbuffer.h</name>
  4040. </file>
  4041. <file>
  4042. <name>$PROJ_DIR$\..\Drivers\flash\base\extmem_flash.c</name>
  4043. </file>
  4044. <file>
  4045. <name>$PROJ_DIR$\..\Drivers\flash\base\extmem_flash.h</name>
  4046. </file>
  4047. <file>
  4048. <name>$PROJ_DIR$\..\Drivers\flash\base\flash_api_base.h</name>
  4049. </file>
  4050. <file>
  4051. <name>$PROJ_DIR$\..\Drivers\flash\base\flash_api_error.h</name>
  4052. </file>
  4053. <file>
  4054. <name>$PROJ_DIR$\..\Drivers\flash\base\flash_api_types.h</name>
  4055. </file>
  4056. </group>
  4057. <group>
  4058. <name>W25QXXX</name>
  4059. <group>
  4060. <name>api</name>
  4061. <file>
  4062. <name>$PROJ_DIR$\..\Drivers\flash\w25q\api\W25Q16JV_API.c</name>
  4063. </file>
  4064. <file>
  4065. <name>$PROJ_DIR$\..\Drivers\flash\w25q\api\W25Q16JV_API.h</name>
  4066. </file>
  4067. </group>
  4068. <group>
  4069. <name>common</name>
  4070. <file>
  4071. <name>$PROJ_DIR$\..\Drivers\flash\w25q\common\W25Q_HAL.h</name>
  4072. </file>
  4073. </group>
  4074. <group>
  4075. <name>config</name>
  4076. <file>
  4077. <name>$PROJ_DIR$\..\Drivers\flash\w25q\config\W25Q16JV_CONF.h</name>
  4078. </file>
  4079. <file>
  4080. <name>$PROJ_DIR$\..\Drivers\flash\w25q\config\W25QXXX_import.h</name>
  4081. </file>
  4082. </group>
  4083. <group>
  4084. <name>LL</name>
  4085. <file>
  4086. <name>$PROJ_DIR$\..\Drivers\flash\w25q\lowlevel\W25Q16JV_GLOB.h</name>
  4087. </file>
  4088. <file>
  4089. <name>$PROJ_DIR$\..\Drivers\flash\w25q\lowlevel\W25Q16JV_LL.c</name>
  4090. </file>
  4091. <file>
  4092. <name>$PROJ_DIR$\..\Drivers\flash\w25q\lowlevel\W25Q16JV_LL.h</name>
  4093. </file>
  4094. <file>
  4095. <name>$PROJ_DIR$\..\Drivers\flash\w25q\lowlevel\W25Q16JV_LL_func.h</name>
  4096. </file>
  4097. </group>
  4098. <file>
  4099. <name>$PROJ_DIR$\..\Drivers\flash\w25q\w25q16jv.h</name>
  4100. </file>
  4101. </group>
  4102. </group>
  4103. <group>
  4104. <name>I2C</name>
  4105. <file>
  4106. <name>$PROJ_DIR$\..\Drivers\i2c\i2c.c</name>
  4107. </file>
  4108. <file>
  4109. <name>$PROJ_DIR$\..\Drivers\i2c\i2c.h</name>
  4110. </file>
  4111. </group>
  4112. <group>
  4113. <name>PowerManagement</name>
  4114. <file>
  4115. <name>$PROJ_DIR$\..\Drivers\power_management\power_management.c</name>
  4116. </file>
  4117. <file>
  4118. <name>$PROJ_DIR$\..\Drivers\power_management\power_management.h</name>
  4119. </file>
  4120. </group>
  4121. <group>
  4122. <name>SPI</name>
  4123. <file>
  4124. <name>$PROJ_DIR$\..\Drivers\spi\spi.c</name>
  4125. </file>
  4126. <file>
  4127. <name>$PROJ_DIR$\..\Drivers\spi\spi.h</name>
  4128. </file>
  4129. </group>
  4130. <group>
  4131. <name>STM32L1xx_HAL_Driver</name>
  4132. <file>
  4133. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal.c</name>
  4134. </file>
  4135. <file>
  4136. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_adc.c</name>
  4137. </file>
  4138. <file>
  4139. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_adc_ex.c</name>
  4140. </file>
  4141. <file>
  4142. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_cortex.c</name>
  4143. </file>
  4144. <file>
  4145. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_crc.c</name>
  4146. </file>
  4147. <file>
  4148. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_dma.c</name>
  4149. </file>
  4150. <file>
  4151. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_flash.c</name>
  4152. </file>
  4153. <file>
  4154. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_flash_ex.c</name>
  4155. </file>
  4156. <file>
  4157. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_flash_ramfunc.c</name>
  4158. </file>
  4159. <file>
  4160. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_gpio.c</name>
  4161. </file>
  4162. <file>
  4163. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_i2c.c</name>
  4164. </file>
  4165. <file>
  4166. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_pcd.c</name>
  4167. </file>
  4168. <file>
  4169. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_pcd_ex.c</name>
  4170. </file>
  4171. <file>
  4172. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_pwr.c</name>
  4173. </file>
  4174. <file>
  4175. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_pwr_ex.c</name>
  4176. </file>
  4177. <file>
  4178. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_rcc.c</name>
  4179. </file>
  4180. <file>
  4181. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_rcc_ex.c</name>
  4182. </file>
  4183. <file>
  4184. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_spi.c</name>
  4185. </file>
  4186. <file>
  4187. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_spi_ex.c</name>
  4188. </file>
  4189. <file>
  4190. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_tim.c</name>
  4191. </file>
  4192. <file>
  4193. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_hal_tim_ex.c</name>
  4194. </file>
  4195. <file>
  4196. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_ll_exti.c</name>
  4197. <excluded>
  4198. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  4199. <configuration>SWITCHBOARD_STM32_Debug_AssertExclude</configuration>
  4200. <configuration>SWITCHBOARD_STM32_Release</configuration>
  4201. </excluded>
  4202. </file>
  4203. <file>
  4204. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Inc\stm32l1xx_ll_exti.h</name>
  4205. <excluded>
  4206. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  4207. <configuration>SWITCHBOARD_STM32_Debug_AssertExclude</configuration>
  4208. <configuration>SWITCHBOARD_STM32_Release</configuration>
  4209. </excluded>
  4210. </file>
  4211. <file>
  4212. <name>$PROJ_DIR$\..\Drivers\STM32L1xx_HAL_Driver\Src\stm32l1xx_ll_gpio.c</name>
  4213. <excluded>
  4214. <configuration>SWITCHBOARD_STM32_Debug</configuration>
  4215. <configuration>SWITCHBOARD_STM32_Debug_AssertExclude</configuration>
  4216. <configuration>SWITCHBOARD_STM32_Release</configuration>
  4217. </excluded>
  4218. </file>
  4219. </group>
  4220. <group>
  4221. <name>Switchboard_control</name>
  4222. <file>
  4223. <name>$PROJ_DIR$\..\Drivers\switchboard_control\switchboard_control.c</name>
  4224. </file>
  4225. <file>
  4226. <name>$PROJ_DIR$\..\Drivers\switchboard_control\switchboard_control.h</name>
  4227. </file>
  4228. </group>
  4229. <group>
  4230. <name>USB</name>
  4231. <group>
  4232. <name>Class_USBTMC</name>
  4233. <file>
  4234. <name>$PROJ_DIR$\..\Drivers\usb\Class\UsbTmc\usbd_usbtmc.c</name>
  4235. </file>
  4236. <file>
  4237. <name>$PROJ_DIR$\..\Drivers\usb\Class\UsbTmc\usbd_usbtmc.h</name>
  4238. </file>
  4239. <file>
  4240. <name>$PROJ_DIR$\..\Drivers\usb\Class\UsbTmc\usbd_usbtmc_desc.c</name>
  4241. </file>
  4242. <file>
  4243. <name>$PROJ_DIR$\..\Drivers\usb\Class\UsbTmc\usbd_usbtmc_desc.h</name>
  4244. </file>
  4245. </group>
  4246. <group>
  4247. <name>Class_VENDOR</name>
  4248. <file>
  4249. <name>$PROJ_DIR$\..\Drivers\usb\Class\Vendor\usbd_vendor.c</name>
  4250. </file>
  4251. <file>
  4252. <name>$PROJ_DIR$\..\Drivers\usb\Class\Vendor\usbd_vendor.h</name>
  4253. </file>
  4254. <file>
  4255. <name>$PROJ_DIR$\..\Drivers\usb\Class\Vendor\usbd_vendor_desc.c</name>
  4256. </file>
  4257. <file>
  4258. <name>$PROJ_DIR$\..\Drivers\usb\Class\Vendor\usbd_vendor_desc.h</name>
  4259. </file>
  4260. </group>
  4261. <group>
  4262. <name>Common_Class</name>
  4263. <file>
  4264. <name>$PROJ_DIR$\..\Drivers\usb\Class\Common\class_common.c</name>
  4265. </file>
  4266. <file>
  4267. <name>$PROJ_DIR$\..\Drivers\usb\Class\Common\class_common.h</name>
  4268. </file>
  4269. </group>
  4270. <group>
  4271. <name>Core</name>
  4272. <group>
  4273. <name>Headers</name>
  4274. <file>
  4275. <name>$PROJ_DIR$\..\Drivers\usb\Core\Inc\usbd_conf.h</name>
  4276. </file>
  4277. <file>
  4278. <name>$PROJ_DIR$\..\Drivers\usb\Core\Inc\usbd_core.h</name>
  4279. </file>
  4280. <file>
  4281. <name>$PROJ_DIR$\..\Drivers\usb\Core\Inc\usbd_ctlreq.h</name>
  4282. </file>
  4283. <file>
  4284. <name>$PROJ_DIR$\..\Drivers\usb\Core\Inc\usbd_def.h</name>
  4285. </file>
  4286. <file>
  4287. <name>$PROJ_DIR$\..\Drivers\usb\Core\Inc\usbd_ioreq.h</name>
  4288. </file>
  4289. </group>
  4290. <file>
  4291. <name>$PROJ_DIR$\..\Drivers\usb\Core\Src\usbd_conf.c</name>
  4292. </file>
  4293. <file>
  4294. <name>$PROJ_DIR$\..\Drivers\usb\Core\Src\usbd_core.c</name>
  4295. </file>
  4296. <file>
  4297. <name>$PROJ_DIR$\..\Drivers\usb\Core\Src\usbd_ctlreq.c</name>
  4298. </file>
  4299. <file>
  4300. <name>$PROJ_DIR$\..\Drivers\usb\Core\Src\usbd_ioreq.c</name>
  4301. </file>
  4302. </group>
  4303. <group>
  4304. <name>Device</name>
  4305. <file>
  4306. <name>$PROJ_DIR$\..\Drivers\usb\Device\usb_device.c</name>
  4307. </file>
  4308. <file>
  4309. <name>$PROJ_DIR$\..\Drivers\usb\Device\usb_device.h</name>
  4310. </file>
  4311. </group>
  4312. </group>
  4313. </group>
  4314. </project>