desk.dep 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <fileVersion>4</fileVersion>
  4. <fileChecksum>1461779900</fileChecksum>
  5. <configuration>
  6. <name>Debug</name>
  7. <outputs>
  8. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\cmsis_compiler.h</file>
  9. <file>$TOOLKIT_DIR$\inc\c\string.h</file>
  10. <file>$PROJ_DIR$\Debug\Obj\oled_common.xcl</file>
  11. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\system_stm32g4xx.h</file>
  12. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rcc.o</file>
  13. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rng.o</file>
  14. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_flash_ramfunc.o</file>
  15. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_usart_ex.o</file>
  16. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rtc_ex.o</file>
  17. <file>$PROJ_DIR$\Debug\Obj\system_stm32g4xx.o</file>
  18. <file>$PROJ_DIR$\Debug\Obj\event_groups.xcl</file>
  19. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_rcc.h</file>
  20. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal.h</file>
  21. <file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
  22. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\timers.h</file>
  23. <file>$PROJ_DIR$\Debug\Obj\i2c_bridge.o</file>
  24. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\OLED_SSD1327.h</file>
  25. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\Legacy\stm32_hal_legacy.h</file>
  26. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smbus_ex.xcl</file>
  27. <file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
  28. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_msp.xcl</file>
  29. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_usart_ex.h</file>
  30. <file>$PROJ_DIR$\Debug\Obj\hal_callback.xcl</file>
  31. <file>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal.h</file>
  32. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\GFX_SSD1327.h</file>
  33. <file>$TOOLKIT_DIR$\lib\dl7M_tlf.a</file>
  34. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_uart.o</file>
  35. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\stack_macros.h</file>
  36. <file>$PROJ_DIR$\..\..\..\desk\user\stm32g4xx_it.h</file>
  37. <file>$PROJ_DIR$\Debug\Obj\oled_common.o</file>
  38. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_hrtim.o</file>
  39. <file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
  40. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_opamp.xcl</file>
  41. <file>$PROJ_DIR$\Debug\Obj\heap_4.o</file>
  42. <file>$PROJ_DIR$\Debug\Obj\event_groups.o</file>
  43. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_i2c_ex.o</file>
  44. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dma.o</file>
  45. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pwr_ex.xcl</file>
  46. <file>$PROJ_DIR$\Debug\Obj\startup_stm32g431xx.o</file>
  47. <file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
  48. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_comp.xcl</file>
  49. <file>$PROJ_DIR$\Debug\Obj\terminal.o</file>
  50. <file>$PROJ_DIR$\Debug\Obj\timers.o</file>
  51. <file>$PROJ_DIR$\Debug\Obj\i2c.o</file>
  52. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\mpu_wrappers.h</file>
  53. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_lptim.xcl</file>
  54. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_pwr.h</file>
  55. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_adc_ex.xcl</file>
  56. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_sai_ex.xcl</file>
  57. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_i2c_ex.h</file>
  58. <file>$PROJ_DIR$\..\..\..\desk\modules\menu\control.h</file>
  59. <file>$PROJ_DIR$\Debug\Obj\stream_buffer.o</file>
  60. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\CMSIS_RTOS\cmsis_os.h</file>
  61. <file>$PROJ_DIR$\Debug\Obj\OLED_SSD1327.o</file>
  62. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\list.h</file>
  63. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_i2c_ex.xcl</file>
  64. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rcc_ex.o</file>
  65. <file>$PROJ_DIR$\Debug\List\desk.map</file>
  66. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_crc_ex.o</file>
  67. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cortex.xcl</file>
  68. <file>$PROJ_DIR$\Debug\Obj\list.o</file>
  69. <file>$PROJ_DIR$\Debug\Obj\hal_callback.o</file>
  70. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smbus.xcl</file>
  71. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rtc.xcl</file>
  72. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pcd.o</file>
  73. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_sai.xcl</file>
  74. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_fmac.xcl</file>
  75. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cryp.o</file>
  76. <file>$PROJ_DIR$\Debug\Obj\queue.o</file>
  77. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\stm32g431xx.h</file>
  78. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_crc.xcl</file>
  79. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_spi_ex.o</file>
  80. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_nand.xcl</file>
  81. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_opamp.o</file>
  82. <file>$PROJ_DIR$\Debug\Obj\app_freertos.o</file>
  83. <file>$PROJ_DIR$\Debug\Obj\microrl.o</file>
  84. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cortex.o</file>
  85. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rtc.o</file>
  86. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_gpio_ex.h</file>
  87. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smbus_ex.o</file>
  88. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_usart.o</file>
  89. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_opamp_ex.o</file>
  90. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\core_cm4.h</file>
  91. <file>$PROJ_DIR$\Debug\Exe\desk.out</file>
  92. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_uart_ex.h</file>
  93. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\FreeRTOS.h</file>
  94. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\task.h</file>
  95. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_exti.o</file>
  96. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_uart.h</file>
  97. <file>$PROJ_DIR$\Debug\Obj\terminal.xcl</file>
  98. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\croutine.h</file>
  99. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_gpio.o</file>
  100. <file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
  101. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_qspi.o</file>
  102. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_i2c.o</file>
  103. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\portmacro.h</file>
  104. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_irda.o</file>
  105. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_flash_ex.xcl</file>
  106. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_fdcan.o</file>
  107. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_uart_ex.o</file>
  108. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_i2s.o</file>
  109. <file>$TOOLKIT_DIR$\lib\shb_l.a</file>
  110. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_opamp_ex.xcl</file>
  111. <file>$PROJ_DIR$\Debug\Obj\cmsis_os.xcl</file>
  112. <file>$PROJ_DIR$\Debug\Obj\stream_buffer.xcl</file>
  113. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_adc.o</file>
  114. <file>$PROJ_DIR$\Debug\Obj\cmsis_os.o</file>
  115. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\event_groups.h</file>
  116. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\deprecated_definitions.h</file>
  117. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pwr_ex.o</file>
  118. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pcd_ex.o</file>
  119. <file>$PROJ_DIR$\Debug\Obj\OLED_SSD1327.xcl</file>
  120. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_nand.o</file>
  121. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_tim_ex.o</file>
  122. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_crc.o</file>
  123. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_dma.h</file>
  124. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pcd.xcl</file>
  125. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\stream_buffer.h</file>
  126. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_i2c.h</file>
  127. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_spi.o</file>
  128. <file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
  129. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_wwdg.o</file>
  130. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_tim.o</file>
  131. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_wwdg.xcl</file>
  132. <file>$PROJ_DIR$\Debug\Obj\app_freertos.xcl</file>
  133. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_lptim.o</file>
  134. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_sai_ex.o</file>
  135. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cryp_ex.c</file>
  136. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_i2c.c</file>
  137. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_i2c_ex.c</file>
  138. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dac_ex.c</file>
  139. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_irda.c</file>
  140. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_i2s.c</file>
  141. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_flash.c</file>
  142. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_comp.c</file>
  143. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dac.c</file>
  144. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal.c</file>
  145. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_flash_ramfunc.c</file>
  146. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_fmac.c</file>
  147. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_gpio.c</file>
  148. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_hrtim.c</file>
  149. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_exti.c</file>
  150. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_adc_ex.c</file>
  151. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_crc.c</file>
  152. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_crc_ex.c</file>
  153. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dma_ex.c</file>
  154. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cordic.c</file>
  155. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_flash_ex.c</file>
  156. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cortex.c</file>
  157. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dma.c</file>
  158. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_fdcan.c</file>
  159. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\system_stm32g4xx.c</file>
  160. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_adc.c</file>
  161. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cryp.c</file>
  162. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pcd.c</file>
  163. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_iwdg.c</file>
  164. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_lptim.c</file>
  165. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_nand.c</file>
  166. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_nor.c</file>
  167. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_opamp.c</file>
  168. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_opamp_ex.c</file>
  169. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dac.o</file>
  170. <file>$TOOLKIT_DIR$\lib\m7M_tls.a</file>
  171. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smartcard.o</file>
  172. <file>$PROJ_DIR$\Debug\Obj\terminal_usartbridge.o</file>
  173. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_spi.xcl</file>
  174. <file>$PROJ_DIR$\..\..\..\desk\user\main.h</file>
  175. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dac_ex.o</file>
  176. <file>$PROJ_DIR$\Debug\Obj\terminal_usartbridge.xcl</file>
  177. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_it.xcl</file>
  178. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_adc_ex.o</file>
  179. <file>$TOOLKIT_DIR$\inc\c\stdarg.h</file>
  180. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal.o</file>
  181. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_nor.o</file>
  182. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_comp.o</file>
  183. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_gpio.h</file>
  184. <file>$PROJ_DIR$\Debug\Obj\heap_4.xcl</file>
  185. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_usart.xcl</file>
  186. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smartcard_ex.o</file>
  187. <file>$TOOLKIT_DIR$\inc\c\cmsis_iar.h</file>
  188. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_sai.o</file>
  189. <file>$PROJ_DIR$\stm32g431xx_flash.icf</file>
  190. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\cmsis_version.h</file>
  191. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cryp_ex.xcl</file>
  192. <file>$PROJ_DIR$\Debug\Obj\timers.xcl</file>
  193. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_fdcan.xcl</file>
  194. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\stm32g4xx.h</file>
  195. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\CMSIS_RTOS\cmsis_os.c</file>
  196. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\fonts\font_8x5.h</file>
  197. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\fonts\fonts.h</file>
  198. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_uart.c</file>
  199. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_usart_ex.c</file>
  200. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\MemMang\heap_4.c</file>
  201. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\portasm.s</file>
  202. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_spi.c</file>
  203. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_spi_ex.c</file>
  204. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_tim.c</file>
  205. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smartcard_ex.c</file>
  206. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smbus_ex.c</file>
  207. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smbus.c</file>
  208. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_uart_ex.c</file>
  209. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_usart.c</file>
  210. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_wwdg.c</file>
  211. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_tim_ex.c</file>
  212. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\system\startup_stm32g431xx.s</file>
  213. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\croutine.c</file>
  214. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\event_groups.c</file>
  215. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\port.c</file>
  216. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\queue.c</file>
  217. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\timers.c</file>
  218. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\list.c</file>
  219. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\tasks.c</file>
  220. <file>$PROJ_DIR$\..\..\..\thirdparty_libs\microrl\microrl.c</file>
  221. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\stream_buffer.c</file>
  222. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_sram.c</file>
  223. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pcd_ex.c</file>
  224. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pwr.c</file>
  225. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rcc.c</file>
  226. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rcc_ex.c</file>
  227. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rng.c</file>
  228. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_qspi.c</file>
  229. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rtc.c</file>
  230. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rtc_ex.c</file>
  231. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_sai.c</file>
  232. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_sai_ex.c</file>
  233. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smartcard.c</file>
  234. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pwr_ex.c</file>
  235. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_rtc.h</file>
  236. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smbus.o</file>
  237. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_pwr_ex.h</file>
  238. <file>$PROJ_DIR$\Debug\Obj\system_stm32g4xx.xcl</file>
  239. <file>$PROJ_DIR$\..\..\..\desk\user\main.cpp</file>
  240. <file>$PROJ_DIR$\..\..\..\desk\user\stm32g4xx_hal_conf.h</file>
  241. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_exti.h</file>
  242. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_tim_ex.h</file>
  243. <file>$PROJ_DIR$\Debug\Obj\croutine.o</file>
  244. <file>$PROJ_DIR$\..\..\..\desk\user\MicroRLConfig.h</file>
  245. <file>$PROJ_DIR$\Debug\Obj\tasks.xcl</file>
  246. <file>$PROJ_DIR$\..\..\..\desk\user\hal_callback.cpp</file>
  247. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cordic.xcl</file>
  248. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_flash_ramfunc.h</file>
  249. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_gpio.xcl</file>
  250. <file>$PROJ_DIR$\..\..\..\README.md</file>
  251. <file>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal_user.h</file>
  252. <file>$TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h</file>
  253. <file>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal_usartbridge.h</file>
  254. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dac_ex.xcl</file>
  255. <file>$TOOLKIT_DIR$\lib\dlpp7M_tl_fc.a</file>
  256. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cryp_ex.o</file>
  257. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pcd_ex.xcl</file>
  258. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_cortex.h</file>
  259. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rtc_ex.xcl</file>
  260. <file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
  261. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_iwdg.xcl</file>
  262. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_it.o</file>
  263. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\i2c.c</file>
  264. <file>$PROJ_DIR$\..\..\..\desk\user\stm32g4xx_it.c</file>
  265. <file>$PROJ_DIR$\..\..\..\desk\user\stm32g4xx_hal_msp.c</file>
  266. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_usart_ex.xcl</file>
  267. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\i2c.h</file>
  268. <file>$PROJ_DIR$\Debug\Obj\list.xcl</file>
  269. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_rcc_ex.h</file>
  270. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_tim.xcl</file>
  271. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\cmsis_iccarm.h</file>
  272. <file>$PROJ_DIR$\Debug\Obj\tasks.o</file>
  273. <file>$PROJ_DIR$\..\..\..\desk\modules\ssd_1327\oled_common.h</file>
  274. <file>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</file>
  275. <file>$PROJ_DIR$\Debug\Obj\GFX_SSD1327.xcl</file>
  276. <file>$PROJ_DIR$\Debug\Obj\port.xcl</file>
  277. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_dma_ex.h</file>
  278. <file>$TOOLKIT_DIR$\lib\rt7M_tl.a</file>
  279. <file>$PROJ_DIR$\Debug\Obj\queue.xcl</file>
  280. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_spi_ex.xcl</file>
  281. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\semphr.h</file>
  282. <file>$PROJ_DIR$\Debug\Obj\control.o</file>
  283. <file>$PROJ_DIR$\Debug\Obj\microrl.xcl</file>
  284. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_tim.h</file>
  285. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_adc.xcl</file>
  286. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dma.xcl</file>
  287. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dac.xcl</file>
  288. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_flash_ramfunc.xcl</file>
  289. <file>$PROJ_DIR$\Debug\Obj\terminal_user.o</file>
  290. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_def.h</file>
  291. <file>$PROJ_DIR$\Debug\Obj\i2c.xcl</file>
  292. <file>$PROJ_DIR$\..\..\..\thirdparty_libs\microrl\microrl.h</file>
  293. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_uart_ex.xcl</file>
  294. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_sram.xcl</file>
  295. <file>$PROJ_DIR$\Debug\Obj\control.xcl</file>
  296. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_msp.o</file>
  297. <file>$PROJ_DIR$\Debug\Obj\main.xcl</file>
  298. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\GFX_SSD1327.c</file>
  299. <file>$PROJ_DIR$\..\..\..\desk\modules\menu\control.cpp</file>
  300. <file>$PROJ_DIR$\..\..\..\desk\modules\settings\settings.cpp</file>
  301. <file>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal.cpp</file>
  302. <file>$PROJ_DIR$\..\..\..\desk\modules\configs\config.h</file>
  303. <file>$PROJ_DIR$\..\..\..\desk\modules\ssd_1327\i2c_bridge.cpp</file>
  304. <file>$PROJ_DIR$\..\..\..\desk\modules\ssd_1327\oled_common.cpp</file>
  305. <file>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal_usartbridge.cpp</file>
  306. <file>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal_user.cpp</file>
  307. <file>$PROJ_DIR$\..\..\..\desk\user\app_freertos.c</file>
  308. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\logo_grayscale.h</file>
  309. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\OLED_SSD1327.c</file>
  310. <file>$PROJ_DIR$\..\..\..\desk\user\FreeRTOSConfig.h</file>
  311. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rng.xcl</file>
  312. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_sram.o</file>
  313. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_flash.xcl</file>
  314. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dma_ex.xcl</file>
  315. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_crc_ex.h</file>
  316. <file>$PROJ_DIR$\Debug\Obj\settings.o</file>
  317. <file>$PROJ_DIR$\..\..\..\desk\modules\settings\settings_api.c</file>
  318. <file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
  319. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\portable.h</file>
  320. <file>$PROJ_DIR$\Debug\Obj\settings_api.o</file>
  321. <file>$PROJ_DIR$\Debug\Obj\settings.xcl</file>
  322. <file>$PROJ_DIR$\..\..\..\desk\modules\settings\settings_api.cpp</file>
  323. <file>$PROJ_DIR$\Debug\Obj\GFX_SSD1327.o</file>
  324. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_nor.xcl</file>
  325. <file>$PROJ_DIR$\Debug\Obj\settings_api.xcl</file>
  326. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_crc.h</file>
  327. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_fmac.o</file>
  328. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_i2c.xcl</file>
  329. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pwr.o</file>
  330. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\projdefs.h</file>
  331. <file>$PROJ_DIR$\..\..\..\desk\modules\settings\settings_api.h</file>
  332. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smartcard_ex.xcl</file>
  333. <file>$PROJ_DIR$\..\..\..\desk\modules\settings\settings.h</file>
  334. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_pwr.xcl</file>
  335. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rcc_ex.xcl</file>
  336. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_flash.o</file>
  337. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_qspi.xcl</file>
  338. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_smartcard.xcl</file>
  339. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_exti.xcl</file>
  340. <file>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\include\queue.h</file>
  341. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_flash_ex.h</file>
  342. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_uart.xcl</file>
  343. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_iwdg.o</file>
  344. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_dma_ex.o</file>
  345. <file>$PROJ_DIR$\..\..\..\desk\user\hal_callback.h</file>
  346. <file>$TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h</file>
  347. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_flash.h</file>
  348. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_usart.h</file>
  349. <file>$PROJ_DIR$\Debug\Obj\port.o</file>
  350. <file>$PROJ_DIR$\Debug\Obj\i2c_bridge.xcl</file>
  351. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cordic.o</file>
  352. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_rcc.xcl</file>
  353. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_i2s.xcl</file>
  354. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_flash_ex.o</file>
  355. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Inc\stm32g4xx_hal_rtc_ex.h</file>
  356. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_hrtim.xcl</file>
  357. <file>$PROJ_DIR$\..\..\..\desk\modules\ssd_1327\i2c_bridge.h</file>
  358. <file>$PROJ_DIR$\Debug\Obj\main.o</file>
  359. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_irda.xcl</file>
  360. <file>$PROJ_DIR$\Debug\Obj\croutine.xcl</file>
  361. <file>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\mpu_armv7.h</file>
  362. <file>$PROJ_DIR$\Debug\Obj\portasm.o</file>
  363. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_crc_ex.xcl</file>
  364. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_tim_ex.xcl</file>
  365. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal.xcl</file>
  366. <file>$TOOLKIT_DIR$\inc\c\stdbool.h</file>
  367. <file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
  368. <file>$PROJ_DIR$\Debug\Obj\terminal_user.xcl</file>
  369. <file>$TOOLKIT_DIR$\inc\c\intrinsics.h</file>
  370. <file>$PROJ_DIR$\Debug\Obj\stm32g4xx_hal_cryp.xcl</file>
  371. <file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
  372. <file>$TOOLKIT_DIR$\inc\c\iccarm_builtin.h</file>
  373. <file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
  374. <file>$PROJ_DIR$\Debug\Obj\desk.pbd</file>
  375. <file>$PROJ_DIR$\..\..\..\robot\libs\stm32\system\startup_stm32g030xx.s</file>
  376. <file>$PROJ_DIR$\..\..\..\robot\libs\stm32\cmsis\system_stm32g0xx.c</file>
  377. </outputs>
  378. <file>
  379. <name>$PROJ_DIR$\Debug\Exe\desk.out</name>
  380. <outputs>
  381. <tool>
  382. <name>ILINK</name>
  383. <file> 57</file>
  384. </tool>
  385. </outputs>
  386. <inputs>
  387. <tool>
  388. <name>ILINK</name>
  389. <file> 181 74 106 274 235 34 315 61 33 15 60 350 75 29 53 341 354 68 308 38 172 105 170 174 343 76 114 58 67 248 161 167 36 336 87 98 328 346 6 319 91 30 94 35 100 96 335 125 288 112 173 73 81 64 110 321 109 93 4 56 5 77 8 180 126 163 178 228 79 119 71 304 122 113 26 99 80 7 121 254 51 9 264 41 164 281 42 101 270 247 162 25</file>
  390. </tool>
  391. </inputs>
  392. </file>
  393. <file>
  394. <name>[ROOT_NODE]</name>
  395. <outputs>
  396. <tool>
  397. <name>ILINK</name>
  398. <file> 83 57</file>
  399. </tool>
  400. </outputs>
  401. </file>
  402. <file>
  403. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cryp_ex.c</name>
  404. <outputs>
  405. <tool>
  406. <name>ICCARM</name>
  407. <file> 248</file>
  408. </tool>
  409. <tool>
  410. <name>BICOMP</name>
  411. <file> 183</file>
  412. </tool>
  413. </outputs>
  414. <inputs>
  415. <tool>
  416. <name>ICCARM</name>
  417. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  418. </tool>
  419. </inputs>
  420. </file>
  421. <file>
  422. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_i2c.c</name>
  423. <outputs>
  424. <tool>
  425. <name>ICCARM</name>
  426. <file> 94</file>
  427. </tool>
  428. <tool>
  429. <name>BICOMP</name>
  430. <file> 320</file>
  431. </tool>
  432. </outputs>
  433. <inputs>
  434. <tool>
  435. <name>ICCARM</name>
  436. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  437. </tool>
  438. </inputs>
  439. </file>
  440. <file>
  441. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_i2c_ex.c</name>
  442. <outputs>
  443. <tool>
  444. <name>ICCARM</name>
  445. <file> 35</file>
  446. </tool>
  447. <tool>
  448. <name>BICOMP</name>
  449. <file> 55</file>
  450. </tool>
  451. </outputs>
  452. <inputs>
  453. <tool>
  454. <name>ICCARM</name>
  455. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  456. </tool>
  457. </inputs>
  458. </file>
  459. <file>
  460. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dac_ex.c</name>
  461. <outputs>
  462. <tool>
  463. <name>ICCARM</name>
  464. <file> 167</file>
  465. </tool>
  466. <tool>
  467. <name>BICOMP</name>
  468. <file> 246</file>
  469. </tool>
  470. </outputs>
  471. <inputs>
  472. <tool>
  473. <name>ICCARM</name>
  474. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  475. </tool>
  476. </inputs>
  477. </file>
  478. <file>
  479. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_irda.c</name>
  480. <outputs>
  481. <tool>
  482. <name>ICCARM</name>
  483. <file> 96</file>
  484. </tool>
  485. <tool>
  486. <name>BICOMP</name>
  487. <file> 351</file>
  488. </tool>
  489. </outputs>
  490. <inputs>
  491. <tool>
  492. <name>ICCARM</name>
  493. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  494. </tool>
  495. </inputs>
  496. </file>
  497. <file>
  498. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_i2s.c</name>
  499. <outputs>
  500. <tool>
  501. <name>ICCARM</name>
  502. <file> 100</file>
  503. </tool>
  504. <tool>
  505. <name>BICOMP</name>
  506. <file> 345</file>
  507. </tool>
  508. </outputs>
  509. <inputs>
  510. <tool>
  511. <name>ICCARM</name>
  512. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  513. </tool>
  514. </inputs>
  515. </file>
  516. <file>
  517. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_flash.c</name>
  518. <outputs>
  519. <tool>
  520. <name>ICCARM</name>
  521. <file> 328</file>
  522. </tool>
  523. <tool>
  524. <name>BICOMP</name>
  525. <file> 305</file>
  526. </tool>
  527. </outputs>
  528. <inputs>
  529. <tool>
  530. <name>ICCARM</name>
  531. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  532. </tool>
  533. </inputs>
  534. </file>
  535. <file>
  536. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_comp.c</name>
  537. <outputs>
  538. <tool>
  539. <name>ICCARM</name>
  540. <file> 174</file>
  541. </tool>
  542. <tool>
  543. <name>BICOMP</name>
  544. <file> 40</file>
  545. </tool>
  546. </outputs>
  547. <inputs>
  548. <tool>
  549. <name>ICCARM</name>
  550. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  551. </tool>
  552. </inputs>
  553. </file>
  554. <file>
  555. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dac.c</name>
  556. <outputs>
  557. <tool>
  558. <name>ICCARM</name>
  559. <file> 161</file>
  560. </tool>
  561. <tool>
  562. <name>BICOMP</name>
  563. <file> 279</file>
  564. </tool>
  565. </outputs>
  566. <inputs>
  567. <tool>
  568. <name>ICCARM</name>
  569. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  570. </tool>
  571. </inputs>
  572. </file>
  573. <file>
  574. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal.c</name>
  575. <outputs>
  576. <tool>
  577. <name>ICCARM</name>
  578. <file> 172</file>
  579. </tool>
  580. <tool>
  581. <name>BICOMP</name>
  582. <file> 357</file>
  583. </tool>
  584. </outputs>
  585. <inputs>
  586. <tool>
  587. <name>ICCARM</name>
  588. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  589. </tool>
  590. </inputs>
  591. </file>
  592. <file>
  593. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_flash_ramfunc.c</name>
  594. <outputs>
  595. <tool>
  596. <name>ICCARM</name>
  597. <file> 6</file>
  598. </tool>
  599. <tool>
  600. <name>BICOMP</name>
  601. <file> 280</file>
  602. </tool>
  603. </outputs>
  604. <inputs>
  605. <tool>
  606. <name>ICCARM</name>
  607. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  608. </tool>
  609. </inputs>
  610. </file>
  611. <file>
  612. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_fmac.c</name>
  613. <outputs>
  614. <tool>
  615. <name>ICCARM</name>
  616. <file> 319</file>
  617. </tool>
  618. <tool>
  619. <name>BICOMP</name>
  620. <file> 66</file>
  621. </tool>
  622. </outputs>
  623. <inputs>
  624. <tool>
  625. <name>ICCARM</name>
  626. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  627. </tool>
  628. </inputs>
  629. </file>
  630. <file>
  631. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_gpio.c</name>
  632. <outputs>
  633. <tool>
  634. <name>ICCARM</name>
  635. <file> 91</file>
  636. </tool>
  637. <tool>
  638. <name>BICOMP</name>
  639. <file> 241</file>
  640. </tool>
  641. </outputs>
  642. <inputs>
  643. <tool>
  644. <name>ICCARM</name>
  645. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  646. </tool>
  647. </inputs>
  648. </file>
  649. <file>
  650. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_hrtim.c</name>
  651. <outputs>
  652. <tool>
  653. <name>ICCARM</name>
  654. <file> 30</file>
  655. </tool>
  656. <tool>
  657. <name>BICOMP</name>
  658. <file> 348</file>
  659. </tool>
  660. </outputs>
  661. <inputs>
  662. <tool>
  663. <name>ICCARM</name>
  664. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  665. </tool>
  666. </inputs>
  667. </file>
  668. <file>
  669. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_exti.c</name>
  670. <outputs>
  671. <tool>
  672. <name>ICCARM</name>
  673. <file> 87</file>
  674. </tool>
  675. <tool>
  676. <name>BICOMP</name>
  677. <file> 331</file>
  678. </tool>
  679. </outputs>
  680. <inputs>
  681. <tool>
  682. <name>ICCARM</name>
  683. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  684. </tool>
  685. </inputs>
  686. </file>
  687. <file>
  688. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_adc_ex.c</name>
  689. <outputs>
  690. <tool>
  691. <name>ICCARM</name>
  692. <file> 170</file>
  693. </tool>
  694. <tool>
  695. <name>BICOMP</name>
  696. <file> 47</file>
  697. </tool>
  698. </outputs>
  699. <inputs>
  700. <tool>
  701. <name>ICCARM</name>
  702. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  703. </tool>
  704. </inputs>
  705. </file>
  706. <file>
  707. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_crc.c</name>
  708. <outputs>
  709. <tool>
  710. <name>ICCARM</name>
  711. <file> 114</file>
  712. </tool>
  713. <tool>
  714. <name>BICOMP</name>
  715. <file> 70</file>
  716. </tool>
  717. </outputs>
  718. <inputs>
  719. <tool>
  720. <name>ICCARM</name>
  721. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  722. </tool>
  723. </inputs>
  724. </file>
  725. <file>
  726. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_crc_ex.c</name>
  727. <outputs>
  728. <tool>
  729. <name>ICCARM</name>
  730. <file> 58</file>
  731. </tool>
  732. <tool>
  733. <name>BICOMP</name>
  734. <file> 355</file>
  735. </tool>
  736. </outputs>
  737. <inputs>
  738. <tool>
  739. <name>ICCARM</name>
  740. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  741. </tool>
  742. </inputs>
  743. </file>
  744. <file>
  745. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dma_ex.c</name>
  746. <outputs>
  747. <tool>
  748. <name>ICCARM</name>
  749. <file> 336</file>
  750. </tool>
  751. <tool>
  752. <name>BICOMP</name>
  753. <file> 306</file>
  754. </tool>
  755. </outputs>
  756. <inputs>
  757. <tool>
  758. <name>ICCARM</name>
  759. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  760. </tool>
  761. </inputs>
  762. </file>
  763. <file>
  764. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cordic.c</name>
  765. <outputs>
  766. <tool>
  767. <name>ICCARM</name>
  768. <file> 343</file>
  769. </tool>
  770. <tool>
  771. <name>BICOMP</name>
  772. <file> 239</file>
  773. </tool>
  774. </outputs>
  775. <inputs>
  776. <tool>
  777. <name>ICCARM</name>
  778. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  779. </tool>
  780. </inputs>
  781. </file>
  782. <file>
  783. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_flash_ex.c</name>
  784. <outputs>
  785. <tool>
  786. <name>ICCARM</name>
  787. <file> 346</file>
  788. </tool>
  789. <tool>
  790. <name>BICOMP</name>
  791. <file> 97</file>
  792. </tool>
  793. </outputs>
  794. <inputs>
  795. <tool>
  796. <name>ICCARM</name>
  797. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  798. </tool>
  799. </inputs>
  800. </file>
  801. <file>
  802. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cortex.c</name>
  803. <outputs>
  804. <tool>
  805. <name>ICCARM</name>
  806. <file> 76</file>
  807. </tool>
  808. <tool>
  809. <name>BICOMP</name>
  810. <file> 59</file>
  811. </tool>
  812. </outputs>
  813. <inputs>
  814. <tool>
  815. <name>ICCARM</name>
  816. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  817. </tool>
  818. </inputs>
  819. </file>
  820. <file>
  821. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_dma.c</name>
  822. <outputs>
  823. <tool>
  824. <name>ICCARM</name>
  825. <file> 36</file>
  826. </tool>
  827. <tool>
  828. <name>BICOMP</name>
  829. <file> 278</file>
  830. </tool>
  831. </outputs>
  832. <inputs>
  833. <tool>
  834. <name>ICCARM</name>
  835. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  836. </tool>
  837. </inputs>
  838. </file>
  839. <file>
  840. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_fdcan.c</name>
  841. <outputs>
  842. <tool>
  843. <name>ICCARM</name>
  844. <file> 98</file>
  845. </tool>
  846. <tool>
  847. <name>BICOMP</name>
  848. <file> 185</file>
  849. </tool>
  850. </outputs>
  851. <inputs>
  852. <tool>
  853. <name>ICCARM</name>
  854. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  855. </tool>
  856. </inputs>
  857. </file>
  858. <file>
  859. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\cmsis\system_stm32g4xx.c</name>
  860. <outputs>
  861. <tool>
  862. <name>ICCARM</name>
  863. <file> 9</file>
  864. </tool>
  865. <tool>
  866. <name>BICOMP</name>
  867. <file> 230</file>
  868. </tool>
  869. </outputs>
  870. <inputs>
  871. <tool>
  872. <name>ICCARM</name>
  873. <file> 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 12 232 11 282 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  874. </tool>
  875. </inputs>
  876. </file>
  877. <file>
  878. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_adc.c</name>
  879. <outputs>
  880. <tool>
  881. <name>ICCARM</name>
  882. <file> 105</file>
  883. </tool>
  884. <tool>
  885. <name>BICOMP</name>
  886. <file> 277</file>
  887. </tool>
  888. </outputs>
  889. <inputs>
  890. <tool>
  891. <name>ICCARM</name>
  892. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  893. </tool>
  894. </inputs>
  895. </file>
  896. <file>
  897. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_cryp.c</name>
  898. <outputs>
  899. <tool>
  900. <name>ICCARM</name>
  901. <file> 67</file>
  902. </tool>
  903. <tool>
  904. <name>BICOMP</name>
  905. <file> 362</file>
  906. </tool>
  907. </outputs>
  908. <inputs>
  909. <tool>
  910. <name>ICCARM</name>
  911. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  912. </tool>
  913. </inputs>
  914. </file>
  915. <file>
  916. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pcd.c</name>
  917. <outputs>
  918. <tool>
  919. <name>ICCARM</name>
  920. <file> 64</file>
  921. </tool>
  922. <tool>
  923. <name>BICOMP</name>
  924. <file> 116</file>
  925. </tool>
  926. </outputs>
  927. <inputs>
  928. <tool>
  929. <name>ICCARM</name>
  930. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  931. </tool>
  932. </inputs>
  933. </file>
  934. <file>
  935. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_iwdg.c</name>
  936. <outputs>
  937. <tool>
  938. <name>ICCARM</name>
  939. <file> 335</file>
  940. </tool>
  941. <tool>
  942. <name>BICOMP</name>
  943. <file> 253</file>
  944. </tool>
  945. </outputs>
  946. <inputs>
  947. <tool>
  948. <name>ICCARM</name>
  949. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  950. </tool>
  951. </inputs>
  952. </file>
  953. <file>
  954. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_lptim.c</name>
  955. <outputs>
  956. <tool>
  957. <name>ICCARM</name>
  958. <file> 125</file>
  959. </tool>
  960. <tool>
  961. <name>BICOMP</name>
  962. <file> 45</file>
  963. </tool>
  964. </outputs>
  965. <inputs>
  966. <tool>
  967. <name>ICCARM</name>
  968. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  969. </tool>
  970. </inputs>
  971. </file>
  972. <file>
  973. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_nand.c</name>
  974. <outputs>
  975. <tool>
  976. <name>ICCARM</name>
  977. <file> 112</file>
  978. </tool>
  979. <tool>
  980. <name>BICOMP</name>
  981. <file> 72</file>
  982. </tool>
  983. </outputs>
  984. <inputs>
  985. <tool>
  986. <name>ICCARM</name>
  987. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  988. </tool>
  989. </inputs>
  990. </file>
  991. <file>
  992. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_nor.c</name>
  993. <outputs>
  994. <tool>
  995. <name>ICCARM</name>
  996. <file> 173</file>
  997. </tool>
  998. <tool>
  999. <name>BICOMP</name>
  1000. <file> 316</file>
  1001. </tool>
  1002. </outputs>
  1003. <inputs>
  1004. <tool>
  1005. <name>ICCARM</name>
  1006. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1007. </tool>
  1008. </inputs>
  1009. </file>
  1010. <file>
  1011. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_opamp.c</name>
  1012. <outputs>
  1013. <tool>
  1014. <name>ICCARM</name>
  1015. <file> 73</file>
  1016. </tool>
  1017. <tool>
  1018. <name>BICOMP</name>
  1019. <file> 32</file>
  1020. </tool>
  1021. </outputs>
  1022. <inputs>
  1023. <tool>
  1024. <name>ICCARM</name>
  1025. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1026. </tool>
  1027. </inputs>
  1028. </file>
  1029. <file>
  1030. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_opamp_ex.c</name>
  1031. <outputs>
  1032. <tool>
  1033. <name>ICCARM</name>
  1034. <file> 81</file>
  1035. </tool>
  1036. <tool>
  1037. <name>BICOMP</name>
  1038. <file> 102</file>
  1039. </tool>
  1040. </outputs>
  1041. <inputs>
  1042. <tool>
  1043. <name>ICCARM</name>
  1044. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1045. </tool>
  1046. </inputs>
  1047. </file>
  1048. <file>
  1049. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\CMSIS_RTOS\cmsis_os.c</name>
  1050. <outputs>
  1051. <tool>
  1052. <name>ICCARM</name>
  1053. <file> 106</file>
  1054. </tool>
  1055. <tool>
  1056. <name>BICOMP</name>
  1057. <file> 103</file>
  1058. </tool>
  1059. </outputs>
  1060. <inputs>
  1061. <tool>
  1062. <name>ICCARM</name>
  1063. <file> 1 13 120 39 266 365 359 252 52 85 310 31 302 322 311 108 95 361 364 338 44 86 54 14 332 273 107 179</file>
  1064. </tool>
  1065. </inputs>
  1066. </file>
  1067. <file>
  1068. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_uart.c</name>
  1069. <outputs>
  1070. <tool>
  1071. <name>ICCARM</name>
  1072. <file> 26</file>
  1073. </tool>
  1074. <tool>
  1075. <name>BICOMP</name>
  1076. <file> 334</file>
  1077. </tool>
  1078. </outputs>
  1079. <inputs>
  1080. <tool>
  1081. <name>ICCARM</name>
  1082. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1083. </tool>
  1084. </inputs>
  1085. </file>
  1086. <file>
  1087. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_usart_ex.c</name>
  1088. <outputs>
  1089. <tool>
  1090. <name>ICCARM</name>
  1091. <file> 7</file>
  1092. </tool>
  1093. <tool>
  1094. <name>BICOMP</name>
  1095. <file> 258</file>
  1096. </tool>
  1097. </outputs>
  1098. <inputs>
  1099. <tool>
  1100. <name>ICCARM</name>
  1101. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1102. </tool>
  1103. </inputs>
  1104. </file>
  1105. <file>
  1106. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\MemMang\heap_4.c</name>
  1107. <outputs>
  1108. <tool>
  1109. <name>ICCARM</name>
  1110. <file> 33</file>
  1111. </tool>
  1112. <tool>
  1113. <name>BICOMP</name>
  1114. <file> 176</file>
  1115. </tool>
  1116. </outputs>
  1117. <inputs>
  1118. <tool>
  1119. <name>ICCARM</name>
  1120. <file> 92 13 120 39 266 365 359 244 85 310 31 302 322 311 108 95 361 364 338 44 86 54</file>
  1121. </tool>
  1122. </inputs>
  1123. </file>
  1124. <file>
  1125. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\portasm.s</name>
  1126. <outputs>
  1127. <tool>
  1128. <name>AARM</name>
  1129. <file> 354</file>
  1130. </tool>
  1131. </outputs>
  1132. <inputs>
  1133. <tool>
  1134. <name>AARM</name>
  1135. <file> 302</file>
  1136. </tool>
  1137. </inputs>
  1138. </file>
  1139. <file>
  1140. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_spi.c</name>
  1141. <outputs>
  1142. <tool>
  1143. <name>ICCARM</name>
  1144. <file> 119</file>
  1145. </tool>
  1146. <tool>
  1147. <name>BICOMP</name>
  1148. <file> 165</file>
  1149. </tool>
  1150. </outputs>
  1151. <inputs>
  1152. <tool>
  1153. <name>ICCARM</name>
  1154. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1155. </tool>
  1156. </inputs>
  1157. </file>
  1158. <file>
  1159. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_spi_ex.c</name>
  1160. <outputs>
  1161. <tool>
  1162. <name>ICCARM</name>
  1163. <file> 71</file>
  1164. </tool>
  1165. <tool>
  1166. <name>BICOMP</name>
  1167. <file> 272</file>
  1168. </tool>
  1169. </outputs>
  1170. <inputs>
  1171. <tool>
  1172. <name>ICCARM</name>
  1173. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1174. </tool>
  1175. </inputs>
  1176. </file>
  1177. <file>
  1178. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_tim.c</name>
  1179. <outputs>
  1180. <tool>
  1181. <name>ICCARM</name>
  1182. <file> 122</file>
  1183. </tool>
  1184. <tool>
  1185. <name>BICOMP</name>
  1186. <file> 262</file>
  1187. </tool>
  1188. </outputs>
  1189. <inputs>
  1190. <tool>
  1191. <name>ICCARM</name>
  1192. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1193. </tool>
  1194. </inputs>
  1195. </file>
  1196. <file>
  1197. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smartcard_ex.c</name>
  1198. <outputs>
  1199. <tool>
  1200. <name>ICCARM</name>
  1201. <file> 178</file>
  1202. </tool>
  1203. <tool>
  1204. <name>BICOMP</name>
  1205. <file> 324</file>
  1206. </tool>
  1207. </outputs>
  1208. <inputs>
  1209. <tool>
  1210. <name>ICCARM</name>
  1211. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1212. </tool>
  1213. </inputs>
  1214. </file>
  1215. <file>
  1216. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smbus_ex.c</name>
  1217. <outputs>
  1218. <tool>
  1219. <name>ICCARM</name>
  1220. <file> 79</file>
  1221. </tool>
  1222. <tool>
  1223. <name>BICOMP</name>
  1224. <file> 18</file>
  1225. </tool>
  1226. </outputs>
  1227. <inputs>
  1228. <tool>
  1229. <name>ICCARM</name>
  1230. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1231. </tool>
  1232. </inputs>
  1233. </file>
  1234. <file>
  1235. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smbus.c</name>
  1236. <outputs>
  1237. <tool>
  1238. <name>ICCARM</name>
  1239. <file> 228</file>
  1240. </tool>
  1241. <tool>
  1242. <name>BICOMP</name>
  1243. <file> 62</file>
  1244. </tool>
  1245. </outputs>
  1246. <inputs>
  1247. <tool>
  1248. <name>ICCARM</name>
  1249. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1250. </tool>
  1251. </inputs>
  1252. </file>
  1253. <file>
  1254. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_uart_ex.c</name>
  1255. <outputs>
  1256. <tool>
  1257. <name>ICCARM</name>
  1258. <file> 99</file>
  1259. </tool>
  1260. <tool>
  1261. <name>BICOMP</name>
  1262. <file> 285</file>
  1263. </tool>
  1264. </outputs>
  1265. <inputs>
  1266. <tool>
  1267. <name>ICCARM</name>
  1268. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1269. </tool>
  1270. </inputs>
  1271. </file>
  1272. <file>
  1273. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_usart.c</name>
  1274. <outputs>
  1275. <tool>
  1276. <name>ICCARM</name>
  1277. <file> 80</file>
  1278. </tool>
  1279. <tool>
  1280. <name>BICOMP</name>
  1281. <file> 177</file>
  1282. </tool>
  1283. </outputs>
  1284. <inputs>
  1285. <tool>
  1286. <name>ICCARM</name>
  1287. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1288. </tool>
  1289. </inputs>
  1290. </file>
  1291. <file>
  1292. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_wwdg.c</name>
  1293. <outputs>
  1294. <tool>
  1295. <name>ICCARM</name>
  1296. <file> 121</file>
  1297. </tool>
  1298. <tool>
  1299. <name>BICOMP</name>
  1300. <file> 123</file>
  1301. </tool>
  1302. </outputs>
  1303. <inputs>
  1304. <tool>
  1305. <name>ICCARM</name>
  1306. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1307. </tool>
  1308. </inputs>
  1309. </file>
  1310. <file>
  1311. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_tim_ex.c</name>
  1312. <outputs>
  1313. <tool>
  1314. <name>ICCARM</name>
  1315. <file> 113</file>
  1316. </tool>
  1317. <tool>
  1318. <name>BICOMP</name>
  1319. <file> 356</file>
  1320. </tool>
  1321. </outputs>
  1322. <inputs>
  1323. <tool>
  1324. <name>ICCARM</name>
  1325. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1326. </tool>
  1327. </inputs>
  1328. </file>
  1329. <file>
  1330. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\system\startup_stm32g431xx.s</name>
  1331. <outputs>
  1332. <tool>
  1333. <name>AARM</name>
  1334. <file> 38</file>
  1335. </tool>
  1336. </outputs>
  1337. </file>
  1338. <file>
  1339. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\croutine.c</name>
  1340. <outputs>
  1341. <tool>
  1342. <name>ICCARM</name>
  1343. <file> 235</file>
  1344. </tool>
  1345. <tool>
  1346. <name>BICOMP</name>
  1347. <file> 352</file>
  1348. </tool>
  1349. </outputs>
  1350. <inputs>
  1351. <tool>
  1352. <name>ICCARM</name>
  1353. <file> 85 310 13 120 39 266 365 359 31 302 322 311 108 95 361 364 338 44 86 54 90</file>
  1354. </tool>
  1355. </inputs>
  1356. </file>
  1357. <file>
  1358. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\event_groups.c</name>
  1359. <outputs>
  1360. <tool>
  1361. <name>ICCARM</name>
  1362. <file> 34</file>
  1363. </tool>
  1364. <tool>
  1365. <name>BICOMP</name>
  1366. <file> 10</file>
  1367. </tool>
  1368. </outputs>
  1369. <inputs>
  1370. <tool>
  1371. <name>ICCARM</name>
  1372. <file> 92 13 120 39 266 365 359 244 85 310 31 302 322 311 108 95 361 364 338 44 86 54 14 107</file>
  1373. </tool>
  1374. </inputs>
  1375. </file>
  1376. <file>
  1377. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\portable\IAR\ARM_CM4F\port.c</name>
  1378. <outputs>
  1379. <tool>
  1380. <name>ICCARM</name>
  1381. <file> 341</file>
  1382. </tool>
  1383. <tool>
  1384. <name>BICOMP</name>
  1385. <file> 268</file>
  1386. </tool>
  1387. </outputs>
  1388. <inputs>
  1389. <tool>
  1390. <name>ICCARM</name>
  1391. <file> 361 364 120 39 266 365 338 85 310 13 359 31 302 322 311 108 95 44 86 54</file>
  1392. </tool>
  1393. </inputs>
  1394. </file>
  1395. <file>
  1396. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\queue.c</name>
  1397. <outputs>
  1398. <tool>
  1399. <name>ICCARM</name>
  1400. <file> 68</file>
  1401. </tool>
  1402. <tool>
  1403. <name>BICOMP</name>
  1404. <file> 271</file>
  1405. </tool>
  1406. </outputs>
  1407. <inputs>
  1408. <tool>
  1409. <name>ICCARM</name>
  1410. <file> 92 13 120 39 266 365 359 244 1 252 85 310 31 302 322 311 108 95 361 364 338 44 86 54 332</file>
  1411. </tool>
  1412. </inputs>
  1413. </file>
  1414. <file>
  1415. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\timers.c</name>
  1416. <outputs>
  1417. <tool>
  1418. <name>ICCARM</name>
  1419. <file> 42</file>
  1420. </tool>
  1421. <tool>
  1422. <name>BICOMP</name>
  1423. <file> 184</file>
  1424. </tool>
  1425. </outputs>
  1426. <inputs>
  1427. <tool>
  1428. <name>ICCARM</name>
  1429. <file> 92 13 120 39 266 365 359 244 85 310 31 302 322 311 108 95 361 364 338 44 86 54 332 14</file>
  1430. </tool>
  1431. </inputs>
  1432. </file>
  1433. <file>
  1434. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\list.c</name>
  1435. <outputs>
  1436. <tool>
  1437. <name>ICCARM</name>
  1438. <file> 60</file>
  1439. </tool>
  1440. <tool>
  1441. <name>BICOMP</name>
  1442. <file> 260</file>
  1443. </tool>
  1444. </outputs>
  1445. <inputs>
  1446. <tool>
  1447. <name>ICCARM</name>
  1448. <file> 92 13 120 39 266 365 359 244 85 310 31 302 322 311 108 95 361 364 338 44 54</file>
  1449. </tool>
  1450. </inputs>
  1451. </file>
  1452. <file>
  1453. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\tasks.c</name>
  1454. <outputs>
  1455. <tool>
  1456. <name>ICCARM</name>
  1457. <file> 264</file>
  1458. </tool>
  1459. <tool>
  1460. <name>BICOMP</name>
  1461. <file> 237</file>
  1462. </tool>
  1463. </outputs>
  1464. <inputs>
  1465. <tool>
  1466. <name>ICCARM</name>
  1467. <file> 92 13 120 39 266 365 359 244 1 252 85 310 31 302 322 311 108 95 361 364 338 44 86 54 14 27</file>
  1468. </tool>
  1469. </inputs>
  1470. </file>
  1471. <file>
  1472. <name>$PROJ_DIR$\..\..\..\thirdparty_libs\microrl\microrl.c</name>
  1473. <outputs>
  1474. <tool>
  1475. <name>ICCARM</name>
  1476. <file> 75</file>
  1477. </tool>
  1478. <tool>
  1479. <name>BICOMP</name>
  1480. <file> 275</file>
  1481. </tool>
  1482. </outputs>
  1483. <inputs>
  1484. <tool>
  1485. <name>ICCARM</name>
  1486. <file> 1 13 120 39 266 365 359 252 19 92 244 284 236</file>
  1487. </tool>
  1488. </inputs>
  1489. </file>
  1490. <file>
  1491. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\freertos\stream_buffer.c</name>
  1492. <outputs>
  1493. <tool>
  1494. <name>ICCARM</name>
  1495. <file> 51</file>
  1496. </tool>
  1497. <tool>
  1498. <name>BICOMP</name>
  1499. <file> 104</file>
  1500. </tool>
  1501. </outputs>
  1502. <inputs>
  1503. <tool>
  1504. <name>ICCARM</name>
  1505. <file> 31 13 120 39 266 365 1 359 252 85 310 302 322 311 108 95 361 364 338 44 86 54 117</file>
  1506. </tool>
  1507. </inputs>
  1508. </file>
  1509. <file>
  1510. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_sram.c</name>
  1511. <outputs>
  1512. <tool>
  1513. <name>ICCARM</name>
  1514. <file> 304</file>
  1515. </tool>
  1516. <tool>
  1517. <name>BICOMP</name>
  1518. <file> 286</file>
  1519. </tool>
  1520. </outputs>
  1521. <inputs>
  1522. <tool>
  1523. <name>ICCARM</name>
  1524. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1525. </tool>
  1526. </inputs>
  1527. </file>
  1528. <file>
  1529. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pcd_ex.c</name>
  1530. <outputs>
  1531. <tool>
  1532. <name>ICCARM</name>
  1533. <file> 110</file>
  1534. </tool>
  1535. <tool>
  1536. <name>BICOMP</name>
  1537. <file> 249</file>
  1538. </tool>
  1539. </outputs>
  1540. <inputs>
  1541. <tool>
  1542. <name>ICCARM</name>
  1543. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1544. </tool>
  1545. </inputs>
  1546. </file>
  1547. <file>
  1548. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pwr.c</name>
  1549. <outputs>
  1550. <tool>
  1551. <name>ICCARM</name>
  1552. <file> 321</file>
  1553. </tool>
  1554. <tool>
  1555. <name>BICOMP</name>
  1556. <file> 326</file>
  1557. </tool>
  1558. </outputs>
  1559. <inputs>
  1560. <tool>
  1561. <name>ICCARM</name>
  1562. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1563. </tool>
  1564. </inputs>
  1565. </file>
  1566. <file>
  1567. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rcc.c</name>
  1568. <outputs>
  1569. <tool>
  1570. <name>ICCARM</name>
  1571. <file> 4</file>
  1572. </tool>
  1573. <tool>
  1574. <name>BICOMP</name>
  1575. <file> 344</file>
  1576. </tool>
  1577. </outputs>
  1578. <inputs>
  1579. <tool>
  1580. <name>ICCARM</name>
  1581. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1582. </tool>
  1583. </inputs>
  1584. </file>
  1585. <file>
  1586. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rcc_ex.c</name>
  1587. <outputs>
  1588. <tool>
  1589. <name>ICCARM</name>
  1590. <file> 56</file>
  1591. </tool>
  1592. <tool>
  1593. <name>BICOMP</name>
  1594. <file> 327</file>
  1595. </tool>
  1596. </outputs>
  1597. <inputs>
  1598. <tool>
  1599. <name>ICCARM</name>
  1600. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1601. </tool>
  1602. </inputs>
  1603. </file>
  1604. <file>
  1605. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rng.c</name>
  1606. <outputs>
  1607. <tool>
  1608. <name>ICCARM</name>
  1609. <file> 5</file>
  1610. </tool>
  1611. <tool>
  1612. <name>BICOMP</name>
  1613. <file> 303</file>
  1614. </tool>
  1615. </outputs>
  1616. <inputs>
  1617. <tool>
  1618. <name>ICCARM</name>
  1619. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1620. </tool>
  1621. </inputs>
  1622. </file>
  1623. <file>
  1624. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_qspi.c</name>
  1625. <outputs>
  1626. <tool>
  1627. <name>ICCARM</name>
  1628. <file> 93</file>
  1629. </tool>
  1630. <tool>
  1631. <name>BICOMP</name>
  1632. <file> 329</file>
  1633. </tool>
  1634. </outputs>
  1635. <inputs>
  1636. <tool>
  1637. <name>ICCARM</name>
  1638. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1639. </tool>
  1640. </inputs>
  1641. </file>
  1642. <file>
  1643. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rtc.c</name>
  1644. <outputs>
  1645. <tool>
  1646. <name>ICCARM</name>
  1647. <file> 77</file>
  1648. </tool>
  1649. <tool>
  1650. <name>BICOMP</name>
  1651. <file> 63</file>
  1652. </tool>
  1653. </outputs>
  1654. <inputs>
  1655. <tool>
  1656. <name>ICCARM</name>
  1657. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1658. </tool>
  1659. </inputs>
  1660. </file>
  1661. <file>
  1662. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_rtc_ex.c</name>
  1663. <outputs>
  1664. <tool>
  1665. <name>ICCARM</name>
  1666. <file> 8</file>
  1667. </tool>
  1668. <tool>
  1669. <name>BICOMP</name>
  1670. <file> 251</file>
  1671. </tool>
  1672. </outputs>
  1673. <inputs>
  1674. <tool>
  1675. <name>ICCARM</name>
  1676. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1677. </tool>
  1678. </inputs>
  1679. </file>
  1680. <file>
  1681. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_sai.c</name>
  1682. <outputs>
  1683. <tool>
  1684. <name>ICCARM</name>
  1685. <file> 180</file>
  1686. </tool>
  1687. <tool>
  1688. <name>BICOMP</name>
  1689. <file> 65</file>
  1690. </tool>
  1691. </outputs>
  1692. <inputs>
  1693. <tool>
  1694. <name>ICCARM</name>
  1695. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1696. </tool>
  1697. </inputs>
  1698. </file>
  1699. <file>
  1700. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_sai_ex.c</name>
  1701. <outputs>
  1702. <tool>
  1703. <name>ICCARM</name>
  1704. <file> 126</file>
  1705. </tool>
  1706. <tool>
  1707. <name>BICOMP</name>
  1708. <file> 48</file>
  1709. </tool>
  1710. </outputs>
  1711. <inputs>
  1712. <tool>
  1713. <name>ICCARM</name>
  1714. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1715. </tool>
  1716. </inputs>
  1717. </file>
  1718. <file>
  1719. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_smartcard.c</name>
  1720. <outputs>
  1721. <tool>
  1722. <name>ICCARM</name>
  1723. <file> 163</file>
  1724. </tool>
  1725. <tool>
  1726. <name>BICOMP</name>
  1727. <file> 330</file>
  1728. </tool>
  1729. </outputs>
  1730. <inputs>
  1731. <tool>
  1732. <name>ICCARM</name>
  1733. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1734. </tool>
  1735. </inputs>
  1736. </file>
  1737. <file>
  1738. <name>$PROJ_DIR$\..\..\..\desk\libs\stm32\hal\Src\stm32g4xx_hal_pwr_ex.c</name>
  1739. <outputs>
  1740. <tool>
  1741. <name>ICCARM</name>
  1742. <file> 109</file>
  1743. </tool>
  1744. <tool>
  1745. <name>BICOMP</name>
  1746. <file> 37</file>
  1747. </tool>
  1748. </outputs>
  1749. <inputs>
  1750. <tool>
  1751. <name>ICCARM</name>
  1752. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1753. </tool>
  1754. </inputs>
  1755. </file>
  1756. <file>
  1757. <name>$PROJ_DIR$\..\..\..\desk\user\main.cpp</name>
  1758. <outputs>
  1759. <tool>
  1760. <name>ICCARM</name>
  1761. <file> 350</file>
  1762. </tool>
  1763. <tool>
  1764. <name>BICOMP</name>
  1765. <file> 289</file>
  1766. </tool>
  1767. </outputs>
  1768. <inputs>
  1769. <tool>
  1770. <name>ICCARM</name>
  1771. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 52 85 302 322 311 108 95 361 338 44 86 54 14 332 273 107 259 166 243 23 284 236 245 50 265 325 363</file>
  1772. </tool>
  1773. </inputs>
  1774. </file>
  1775. <file>
  1776. <name>$PROJ_DIR$\..\..\..\desk\user\hal_callback.cpp</name>
  1777. <outputs>
  1778. <tool>
  1779. <name>ICCARM</name>
  1780. <file> 61</file>
  1781. </tool>
  1782. <tool>
  1783. <name>BICOMP</name>
  1784. <file> 22</file>
  1785. </tool>
  1786. </outputs>
  1787. <inputs>
  1788. <tool>
  1789. <name>ICCARM</name>
  1790. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 337 245 23 284 236 363</file>
  1791. </tool>
  1792. </inputs>
  1793. </file>
  1794. <file>
  1795. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\i2c.c</name>
  1796. <outputs>
  1797. <tool>
  1798. <name>ICCARM</name>
  1799. <file> 43</file>
  1800. </tool>
  1801. <tool>
  1802. <name>BICOMP</name>
  1803. <file> 283</file>
  1804. </tool>
  1805. </outputs>
  1806. <inputs>
  1807. <tool>
  1808. <name>ICCARM</name>
  1809. <file> 259 166 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1810. </tool>
  1811. </inputs>
  1812. </file>
  1813. <file>
  1814. <name>$PROJ_DIR$\..\..\..\desk\user\stm32g4xx_it.c</name>
  1815. <outputs>
  1816. <tool>
  1817. <name>ICCARM</name>
  1818. <file> 254</file>
  1819. </tool>
  1820. <tool>
  1821. <name>BICOMP</name>
  1822. <file> 169</file>
  1823. </tool>
  1824. </outputs>
  1825. <inputs>
  1826. <tool>
  1827. <name>ICCARM</name>
  1828. <file> 166 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 28 85 302 322 311 108 95 361 338 44 86 54</file>
  1829. </tool>
  1830. </inputs>
  1831. </file>
  1832. <file>
  1833. <name>$PROJ_DIR$\..\..\..\desk\user\stm32g4xx_hal_msp.c</name>
  1834. <outputs>
  1835. <tool>
  1836. <name>ICCARM</name>
  1837. <file> 288</file>
  1838. </tool>
  1839. <tool>
  1840. <name>BICOMP</name>
  1841. <file> 20</file>
  1842. </tool>
  1843. </outputs>
  1844. <inputs>
  1845. <tool>
  1846. <name>ICCARM</name>
  1847. <file> 166 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1848. </tool>
  1849. </inputs>
  1850. </file>
  1851. <file>
  1852. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\GFX_SSD1327.c</name>
  1853. <outputs>
  1854. <tool>
  1855. <name>ICCARM</name>
  1856. <file> 315</file>
  1857. </tool>
  1858. <tool>
  1859. <name>BICOMP</name>
  1860. <file> 267</file>
  1861. </tool>
  1862. </outputs>
  1863. <inputs>
  1864. <tool>
  1865. <name>ICCARM</name>
  1866. <file> 166 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 24 16 92 244</file>
  1867. </tool>
  1868. </inputs>
  1869. </file>
  1870. <file>
  1871. <name>$PROJ_DIR$\..\..\..\desk\modules\menu\control.cpp</name>
  1872. <outputs>
  1873. <tool>
  1874. <name>ICCARM</name>
  1875. <file> 274</file>
  1876. </tool>
  1877. <tool>
  1878. <name>BICOMP</name>
  1879. <file> 287</file>
  1880. </tool>
  1881. </outputs>
  1882. <inputs>
  1883. <tool>
  1884. <name>ICCARM</name>
  1885. <file> 50 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 52 85 302 322 311 108 95 361 338 44 86 54 14 332 273 107 363</file>
  1886. </tool>
  1887. </inputs>
  1888. </file>
  1889. <file>
  1890. <name>$PROJ_DIR$\..\..\..\desk\modules\settings\settings.cpp</name>
  1891. <outputs>
  1892. <tool>
  1893. <name>ICCARM</name>
  1894. <file> 308</file>
  1895. </tool>
  1896. <tool>
  1897. <name>BICOMP</name>
  1898. <file> 313</file>
  1899. </tool>
  1900. </outputs>
  1901. <inputs>
  1902. <tool>
  1903. <name>ICCARM</name>
  1904. <file> 325 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 52 85 302 322 311 108 95 361 338 44 86 54 14 332 273 107 294 1 252</file>
  1905. </tool>
  1906. </inputs>
  1907. </file>
  1908. <file>
  1909. <name>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal.cpp</name>
  1910. <outputs>
  1911. <tool>
  1912. <name>ICCARM</name>
  1913. <file> 41</file>
  1914. </tool>
  1915. <tool>
  1916. <name>BICOMP</name>
  1917. <file> 89</file>
  1918. </tool>
  1919. </outputs>
  1920. <inputs>
  1921. <tool>
  1922. <name>ICCARM</name>
  1923. <file> 23 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 284 236 1 252 171</file>
  1924. </tool>
  1925. </inputs>
  1926. </file>
  1927. <file>
  1928. <name>$PROJ_DIR$\..\..\..\desk\modules\ssd_1327\i2c_bridge.cpp</name>
  1929. <outputs>
  1930. <tool>
  1931. <name>ICCARM</name>
  1932. <file> 15</file>
  1933. </tool>
  1934. <tool>
  1935. <name>BICOMP</name>
  1936. <file> 342</file>
  1937. </tool>
  1938. </outputs>
  1939. <inputs>
  1940. <tool>
  1941. <name>ICCARM</name>
  1942. <file> 349 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  1943. </tool>
  1944. </inputs>
  1945. </file>
  1946. <file>
  1947. <name>$PROJ_DIR$\..\..\..\desk\modules\ssd_1327\oled_common.cpp</name>
  1948. <outputs>
  1949. <tool>
  1950. <name>ICCARM</name>
  1951. <file> 29</file>
  1952. </tool>
  1953. <tool>
  1954. <name>BICOMP</name>
  1955. <file> 2</file>
  1956. </tool>
  1957. </outputs>
  1958. <inputs>
  1959. <tool>
  1960. <name>ICCARM</name>
  1961. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 265 349 300 189 188 16 24</file>
  1962. </tool>
  1963. </inputs>
  1964. </file>
  1965. <file>
  1966. <name>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal_usartbridge.cpp</name>
  1967. <outputs>
  1968. <tool>
  1969. <name>ICCARM</name>
  1970. <file> 164</file>
  1971. </tool>
  1972. <tool>
  1973. <name>BICOMP</name>
  1974. <file> 168</file>
  1975. </tool>
  1976. </outputs>
  1977. <inputs>
  1978. <tool>
  1979. <name>ICCARM</name>
  1980. <file> 245 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 23 284 236 243 52 85 302 322 311 108 95 361 338 44 86 54 14 332 273 107 1 252 363</file>
  1981. </tool>
  1982. </inputs>
  1983. </file>
  1984. <file>
  1985. <name>$PROJ_DIR$\..\..\..\desk\modules\terminal\terminal_user.cpp</name>
  1986. <outputs>
  1987. <tool>
  1988. <name>ICCARM</name>
  1989. <file> 281</file>
  1990. </tool>
  1991. <tool>
  1992. <name>BICOMP</name>
  1993. <file> 360</file>
  1994. </tool>
  1995. </outputs>
  1996. <inputs>
  1997. <tool>
  1998. <name>ICCARM</name>
  1999. <file> 243 52 85 310 13 120 39 266 365 359 31 302 322 311 108 95 361 364 338 44 86 54 14 332 273 107 23 12 232 11 282 186 69 82 182 0 263 353 3 17 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 284 236 363 92 244 1 252 358</file>
  2000. </tool>
  2001. </inputs>
  2002. </file>
  2003. <file>
  2004. <name>$PROJ_DIR$\..\..\..\desk\user\app_freertos.c</name>
  2005. <outputs>
  2006. <tool>
  2007. <name>ICCARM</name>
  2008. <file> 74</file>
  2009. </tool>
  2010. <tool>
  2011. <name>BICOMP</name>
  2012. <file> 124</file>
  2013. </tool>
  2014. </outputs>
  2015. <inputs>
  2016. <tool>
  2017. <name>ICCARM</name>
  2018. <file> 85 310 13 120 39 266 365 359 31 302 322 311 108 95 361 364 338 44 86 54 166 12 232 11 282 186 69 82 182 0 263 353 3 17 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21</file>
  2019. </tool>
  2020. </inputs>
  2021. </file>
  2022. <file>
  2023. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\OLED_SSD1327.c</name>
  2024. <outputs>
  2025. <tool>
  2026. <name>ICCARM</name>
  2027. <file> 53</file>
  2028. </tool>
  2029. <tool>
  2030. <name>BICOMP</name>
  2031. <file> 111</file>
  2032. </tool>
  2033. </outputs>
  2034. <inputs>
  2035. <tool>
  2036. <name>ICCARM</name>
  2037. <file> 166 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 318 307 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 16 1 252</file>
  2038. </tool>
  2039. </inputs>
  2040. </file>
  2041. <file>
  2042. <name>$PROJ_DIR$\..\..\..\desk\modules\settings\settings_api.c</name>
  2043. <outputs>
  2044. <tool>
  2045. <name>ICCARM</name>
  2046. <file> 312</file>
  2047. </tool>
  2048. <tool>
  2049. <name>BICOMP</name>
  2050. <file> 317</file>
  2051. </tool>
  2052. </outputs>
  2053. </file>
  2054. <file>
  2055. <name>$PROJ_DIR$\..\..\..\desk\modules\settings\settings_api.cpp</name>
  2056. <outputs>
  2057. <tool>
  2058. <name>BICOMP</name>
  2059. <file> 317</file>
  2060. </tool>
  2061. </outputs>
  2062. <inputs>
  2063. <tool>
  2064. <name>ICCARM</name>
  2065. <file> 12 232 11 282 186 69 82 31 13 120 39 266 365 182 0 263 364 353 3 17 310 359 261 175 78 115 269 250 233 339 333 240 118 49 46 229 227 347 276 234 88 84 340 21 323</file>
  2066. </tool>
  2067. </inputs>
  2068. </file>
  2069. <forcedrebuild>
  2070. <name>$PROJ_DIR$\..\..\..\desk\libs\thirdparty\oled_ssd1327\i2c.c</name>
  2071. <tool>ICCARM</tool>
  2072. </forcedrebuild>
  2073. </configuration>
  2074. <configuration>
  2075. <name>Release</name>
  2076. <outputs />
  2077. <forcedrebuild>
  2078. <name>[MULTI_TOOL]</name>
  2079. <tool>ILINK</tool>
  2080. </forcedrebuild>
  2081. </configuration>
  2082. </project>