Project_GD32F30X_HD.dep 265 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889
  1. Dependencies for Project 'Project', Target 'GD32F30X_HD': (DO NOT MODIFY !)
  2. CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARM_Compiler_5.06u7
  3. F (..\gd32f30x_it.c)(0x661DDF49)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_it.o --omf_browse .\output\gd32f30x_it.crf --depend .\output\gd32f30x_it.d)
  4. I (..\gd32f30x_it.h)(0x65F931E5)
  5. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  6. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  7. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  8. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  9. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  10. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  11. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  12. I (..\gd32f30x_libopt.h)(0x61CC215B)
  13. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  14. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  15. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  16. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  17. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  18. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  19. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  20. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  21. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  22. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  23. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  24. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  25. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  26. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  27. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  28. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  29. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  30. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  31. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  32. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  33. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  34. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  35. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  36. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  37. I (..\main.h)(0x61CC215A)
  38. I (..\systick.h)(0x61CC215B)
  39. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  40. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  41. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  42. I (..\All_define.h)(0x672369EA)
  43. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  44. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  45. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  46. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  47. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  48. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  49. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  50. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  51. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  52. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  53. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  54. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  55. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  56. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  57. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  58. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  59. I (..\task\lcd_task.h)(0x67237853)
  60. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  61. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  62. F (..\main.c)(0x67232F2A)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\main.o --omf_browse .\output\main.crf --depend .\output\main.d)
  63. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  64. I (..\gd32f30x_it.h)(0x65F931E5)
  65. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  66. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  67. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  68. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  69. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  70. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  71. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  72. I (..\gd32f30x_libopt.h)(0x61CC215B)
  73. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  74. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  75. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  76. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  77. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  78. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  79. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  80. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  81. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  82. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  83. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  84. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  85. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  86. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  87. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  88. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  89. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  90. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  91. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  92. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  93. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  94. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  95. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  96. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  97. I (..\SYSTEM\delay\delay.h)(0x64C27C52)
  98. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  99. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  100. I (..\HARDWARE\LED\led.h)(0x66067445)
  101. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  102. I (..\HARDWARE\PWM\pwm.h)(0x65F931E5)
  103. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  104. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  105. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  106. I (..\All_define.h)(0x672369EA)
  107. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  108. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  109. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  110. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  111. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  112. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  113. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  114. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  115. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  116. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  117. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  118. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  119. I (..\task\lcd_task.h)(0x67237853)
  120. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  121. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  122. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  123. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  124. I (..\task\led_task.h)(0x65B8E5B9)
  125. I (..\task\zigbee_task.h)(0x66029A1C)
  126. I (..\task\key_task.h)(0x65B8E592)
  127. I (..\task\MB_RTU_task.h)(0x66190E3F)
  128. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  129. I (..\task\relay_task.h)(0x65B8E5B2)
  130. I (..\ZIGBEE\uart.h)(0x65FC2E0A)
  131. I (..\./mcu_sdk/zigbee.h)(0x6560036E)
  132. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  133. I (..\./mcu_sdk/system.h)(0x660644CF)
  134. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  135. I (..\HARDWARE\HT16C22\HT16C22.h)(0x6721DCD6)
  136. F (..\systick.c)(0x61CC215A)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\systick.o --omf_browse .\output\systick.crf --depend .\output\systick.d)
  137. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  138. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  139. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  140. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  141. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  142. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  143. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  144. I (..\gd32f30x_libopt.h)(0x61CC215B)
  145. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  146. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  147. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  148. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  149. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  150. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  151. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  152. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  153. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  154. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  155. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  156. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  157. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  158. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  159. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  160. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  161. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  162. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  163. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  164. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  165. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  166. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  167. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  168. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  169. I (..\systick.h)(0x61CC215B)
  170. F (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)()
  171. F (..\..\Firmware\CMSIS\GD\GD32F30x\Source\system_gd32f30x.c)(0x67024946)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\system_gd32f30x.o --omf_browse .\output\system_gd32f30x.crf --depend .\output\system_gd32f30x.d)
  172. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  173. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  174. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  175. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  176. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  177. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  178. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  179. I (..\gd32f30x_libopt.h)(0x61CC215B)
  180. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  181. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  182. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  183. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  184. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  185. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  186. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  187. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  188. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  189. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  190. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  191. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  192. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  193. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  194. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  195. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  196. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  197. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  198. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  199. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  200. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  201. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  202. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  203. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  204. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_adc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_adc.o --omf_browse .\output\gd32f30x_adc.crf --depend .\output\gd32f30x_adc.d)
  205. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  206. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  207. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  208. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  209. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  210. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  211. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  212. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  213. I (..\gd32f30x_libopt.h)(0x61CC215B)
  214. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  215. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  216. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  217. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  218. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  219. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  220. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  221. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  222. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  223. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  224. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  225. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  226. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  227. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  228. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  229. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  230. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  231. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  232. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  233. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  234. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  235. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  236. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  237. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_bkp.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_bkp.o --omf_browse .\output\gd32f30x_bkp.crf --depend .\output\gd32f30x_bkp.d)
  238. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  239. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  240. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  241. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  242. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  243. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  244. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  245. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  246. I (..\gd32f30x_libopt.h)(0x61CC215B)
  247. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  248. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  249. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  250. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  251. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  252. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  253. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  254. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  255. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  256. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  257. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  258. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  259. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  260. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  261. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  262. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  263. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  264. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  265. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  266. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  267. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  268. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  269. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  270. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_can.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_can.o --omf_browse .\output\gd32f30x_can.crf --depend .\output\gd32f30x_can.d)
  271. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  272. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  273. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  274. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  275. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  276. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  277. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  278. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  279. I (..\gd32f30x_libopt.h)(0x61CC215B)
  280. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  281. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  282. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  283. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  284. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  285. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  286. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  287. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  288. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  289. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  290. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  291. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  292. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  293. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  294. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  295. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  296. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  297. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  298. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  299. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  300. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  301. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  302. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  303. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  304. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_crc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_crc.o --omf_browse .\output\gd32f30x_crc.crf --depend .\output\gd32f30x_crc.d)
  305. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  306. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  307. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  308. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  309. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  310. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  311. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  312. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  313. I (..\gd32f30x_libopt.h)(0x61CC215B)
  314. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  315. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  316. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  317. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  318. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  319. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  320. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  321. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  322. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  323. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  324. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  325. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  326. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  327. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  328. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  329. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  330. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  331. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  332. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  333. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  334. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  335. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  336. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  337. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_ctc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_ctc.o --omf_browse .\output\gd32f30x_ctc.crf --depend .\output\gd32f30x_ctc.d)
  338. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  339. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  340. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  341. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  342. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  343. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  344. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  345. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  346. I (..\gd32f30x_libopt.h)(0x61CC215B)
  347. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  348. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  349. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  350. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  351. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  352. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  353. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  354. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  355. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  356. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  357. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  358. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  359. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  360. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  361. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  362. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  363. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  364. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  365. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  366. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  367. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  368. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  369. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  370. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_dac.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_dac.o --omf_browse .\output\gd32f30x_dac.crf --depend .\output\gd32f30x_dac.d)
  371. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  372. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  373. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  374. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  375. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  376. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  377. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  378. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  379. I (..\gd32f30x_libopt.h)(0x61CC215B)
  380. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  381. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  382. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  383. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  384. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  385. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  386. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  387. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  388. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  389. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  390. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  391. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  392. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  393. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  394. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  395. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  396. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  397. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  398. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  399. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  400. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  401. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  402. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  403. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_dbg.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_dbg.o --omf_browse .\output\gd32f30x_dbg.crf --depend .\output\gd32f30x_dbg.d)
  404. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  405. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  406. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  407. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  408. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  409. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  410. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  411. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  412. I (..\gd32f30x_libopt.h)(0x61CC215B)
  413. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  414. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  415. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  416. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  417. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  418. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  419. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  420. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  421. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  422. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  423. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  424. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  425. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  426. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  427. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  428. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  429. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  430. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  431. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  432. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  433. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  434. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  435. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  436. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_dma.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_dma.o --omf_browse .\output\gd32f30x_dma.crf --depend .\output\gd32f30x_dma.d)
  437. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  438. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  439. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  440. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  441. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  442. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  443. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  444. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  445. I (..\gd32f30x_libopt.h)(0x61CC215B)
  446. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  447. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  448. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  449. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  450. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  451. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  452. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  453. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  454. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  455. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  456. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  457. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  458. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  459. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  460. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  461. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  462. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  463. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  464. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  465. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  466. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  467. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  468. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  469. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  470. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_enet.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_enet.o --omf_browse .\output\gd32f30x_enet.crf --depend .\output\gd32f30x_enet.d)
  471. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  472. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  473. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  474. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  475. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  476. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  477. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  478. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  479. I (..\gd32f30x_libopt.h)(0x61CC215B)
  480. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  481. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  482. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  483. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  484. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  485. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  486. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  487. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  488. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  489. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  490. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  491. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  492. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  493. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  494. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  495. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  496. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  497. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  498. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  499. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  500. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  501. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  502. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  503. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  504. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_exmc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_exmc.o --omf_browse .\output\gd32f30x_exmc.crf --depend .\output\gd32f30x_exmc.d)
  505. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  506. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  507. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  508. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  509. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  510. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  511. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  512. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  513. I (..\gd32f30x_libopt.h)(0x61CC215B)
  514. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  515. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  516. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  517. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  518. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  519. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  520. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  521. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  522. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  523. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  524. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  525. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  526. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  527. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  528. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  529. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  530. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  531. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  532. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  533. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  534. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  535. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  536. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  537. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_exti.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_exti.o --omf_browse .\output\gd32f30x_exti.crf --depend .\output\gd32f30x_exti.d)
  538. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  539. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  540. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  541. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  542. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  543. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  544. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  545. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  546. I (..\gd32f30x_libopt.h)(0x61CC215B)
  547. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  548. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  549. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  550. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  551. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  552. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  553. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  554. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  555. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  556. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  557. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  558. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  559. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  560. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  561. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  562. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  563. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  564. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  565. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  566. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  567. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  568. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  569. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  570. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_fmc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_fmc.o --omf_browse .\output\gd32f30x_fmc.crf --depend .\output\gd32f30x_fmc.d)
  571. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  572. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  573. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  574. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  575. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  576. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  577. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  578. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  579. I (..\gd32f30x_libopt.h)(0x61CC215B)
  580. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  581. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  582. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  583. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  584. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  585. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  586. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  587. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  588. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  589. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  590. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  591. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  592. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  593. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  594. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  595. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  596. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  597. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  598. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  599. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  600. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  601. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  602. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  603. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_fwdgt.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_fwdgt.o --omf_browse .\output\gd32f30x_fwdgt.crf --depend .\output\gd32f30x_fwdgt.d)
  604. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  605. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  606. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  607. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  608. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  609. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  610. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  611. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  612. I (..\gd32f30x_libopt.h)(0x61CC215B)
  613. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  614. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  615. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  616. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  617. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  618. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  619. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  620. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  621. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  622. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  623. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  624. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  625. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  626. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  627. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  628. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  629. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  630. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  631. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  632. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  633. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  634. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  635. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  636. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_gpio.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_gpio.o --omf_browse .\output\gd32f30x_gpio.crf --depend .\output\gd32f30x_gpio.d)
  637. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  638. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  639. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  640. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  641. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  642. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  643. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  644. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  645. I (..\gd32f30x_libopt.h)(0x61CC215B)
  646. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  647. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  648. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  649. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  650. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  651. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  652. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  653. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  654. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  655. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  656. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  657. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  658. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  659. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  660. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  661. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  662. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  663. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  664. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  665. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  666. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  667. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  668. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  669. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_i2c.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_i2c.o --omf_browse .\output\gd32f30x_i2c.crf --depend .\output\gd32f30x_i2c.d)
  670. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  671. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  672. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  673. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  674. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  675. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  676. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  677. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  678. I (..\gd32f30x_libopt.h)(0x61CC215B)
  679. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  680. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  681. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  682. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  683. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  684. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  685. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  686. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  687. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  688. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  689. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  690. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  691. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  692. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  693. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  694. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  695. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  696. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  697. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  698. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  699. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  700. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  701. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  702. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_misc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_misc.o --omf_browse .\output\gd32f30x_misc.crf --depend .\output\gd32f30x_misc.d)
  703. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  704. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  705. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  706. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  707. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  708. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  709. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  710. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  711. I (..\gd32f30x_libopt.h)(0x61CC215B)
  712. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  713. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  714. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  715. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  716. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  717. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  718. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  719. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  720. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  721. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  722. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  723. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  724. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  725. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  726. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  727. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  728. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  729. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  730. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  731. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  732. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  733. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  734. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  735. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_pmu.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_pmu.o --omf_browse .\output\gd32f30x_pmu.crf --depend .\output\gd32f30x_pmu.d)
  736. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  737. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  738. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  739. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  740. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  741. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  742. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  743. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  744. I (..\gd32f30x_libopt.h)(0x61CC215B)
  745. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  746. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  747. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  748. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  749. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  750. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  751. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  752. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  753. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  754. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  755. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  756. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  757. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  758. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  759. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  760. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  761. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  762. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  763. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  764. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  765. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  766. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  767. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  768. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_rcu.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_rcu.o --omf_browse .\output\gd32f30x_rcu.crf --depend .\output\gd32f30x_rcu.d)
  769. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  770. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  771. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  772. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  773. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  774. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  775. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  776. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  777. I (..\gd32f30x_libopt.h)(0x61CC215B)
  778. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  779. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  780. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  781. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  782. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  783. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  784. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  785. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  786. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  787. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  788. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  789. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  790. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  791. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  792. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  793. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  794. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  795. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  796. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  797. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  798. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  799. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  800. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  801. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_rtc.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_rtc.o --omf_browse .\output\gd32f30x_rtc.crf --depend .\output\gd32f30x_rtc.d)
  802. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  803. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  804. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  805. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  806. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  807. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  808. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  809. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  810. I (..\gd32f30x_libopt.h)(0x61CC215B)
  811. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  812. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  813. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  814. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  815. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  816. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  817. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  818. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  819. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  820. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  821. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  822. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  823. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  824. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  825. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  826. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  827. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  828. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  829. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  830. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  831. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  832. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  833. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  834. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_sdio.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_sdio.o --omf_browse .\output\gd32f30x_sdio.crf --depend .\output\gd32f30x_sdio.d)
  835. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  836. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  837. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  838. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  839. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  840. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  841. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  842. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  843. I (..\gd32f30x_libopt.h)(0x61CC215B)
  844. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  845. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  846. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  847. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  848. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  849. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  850. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  851. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  852. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  853. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  854. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  855. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  856. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  857. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  858. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  859. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  860. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  861. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  862. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  863. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  864. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  865. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  866. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  867. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_spi.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_spi.o --omf_browse .\output\gd32f30x_spi.crf --depend .\output\gd32f30x_spi.d)
  868. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  869. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  870. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  871. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  872. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  873. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  874. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  875. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  876. I (..\gd32f30x_libopt.h)(0x61CC215B)
  877. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  878. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  879. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  880. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  881. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  882. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  883. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  884. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  885. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  886. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  887. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  888. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  889. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  890. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  891. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  892. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  893. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  894. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  895. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  896. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  897. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  898. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  899. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  900. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_timer.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_timer.o --omf_browse .\output\gd32f30x_timer.crf --depend .\output\gd32f30x_timer.d)
  901. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  902. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  903. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  904. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  905. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  906. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  907. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  908. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  909. I (..\gd32f30x_libopt.h)(0x61CC215B)
  910. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  911. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  912. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  913. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  914. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  915. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  916. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  917. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  918. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  919. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  920. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  921. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  922. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  923. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  924. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  925. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  926. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  927. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  928. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  929. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  930. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  931. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  932. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  933. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_usart.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_usart.o --omf_browse .\output\gd32f30x_usart.crf --depend .\output\gd32f30x_usart.d)
  934. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  935. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  936. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  937. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  938. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  939. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  940. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  941. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  942. I (..\gd32f30x_libopt.h)(0x61CC215B)
  943. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  944. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  945. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  946. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  947. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  948. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  949. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  950. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  951. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  952. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  953. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  954. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  955. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  956. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  957. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  958. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  959. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  960. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  961. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  962. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  963. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  964. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  965. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  966. F (..\..\Firmware\GD32F30x_standard_peripheral\Source\gd32f30x_wwdgt.c)(0x661621A2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f30x_wwdgt.o --omf_browse .\output\gd32f30x_wwdgt.crf --depend .\output\gd32f30x_wwdgt.d)
  967. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  968. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  969. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  970. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  971. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  972. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  973. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  974. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  975. I (..\gd32f30x_libopt.h)(0x61CC215B)
  976. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  977. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  978. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  979. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  980. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  981. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  982. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  983. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  984. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  985. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  986. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  987. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  988. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  989. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  990. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  991. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  992. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  993. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  994. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  995. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  996. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  997. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  998. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  999. F (..\..\Firmware\CMSIS\GD\GD32F30x\Source\ARM\startup_gd32f30x_hd.s)(0x661621A2)(--cpu Cortex-M4.fp.sp -g --apcs=interwork --pd "__MICROLIB SETA 1" -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include --pd "__UVISION_VERSION SETA 538" --pd "_RTE_ SETA 1" --pd "GD32F30X_HD SETA 1" --pd "_RTE_ SETA 1" --list .\list\startup_gd32f30x_hd.lst --xref -o .\output\startup_gd32f30x_hd.o --depend .\output\startup_gd32f30x_hd.d)
  1000. F (E:\down\GD32F30x_Firmware_Library_V2.2.0\Utilities\gd32f303e_eval.c)(0x61CC215B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gd32f303e_eval.o --omf_browse .\output\gd32f303e_eval.crf --depend .\output\gd32f303e_eval.d)
  1001. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1002. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1003. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1004. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1005. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1006. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1007. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1008. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1009. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1010. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1011. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1012. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1013. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1014. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1015. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1016. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1017. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1018. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1019. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1020. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1021. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1022. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1023. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1024. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1025. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1026. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1027. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1028. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1029. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1030. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1031. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1032. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1033. I (E:\down\GD32F30x_Firmware_Library_V2.2.0\Utilities\gd32f303e_eval.h)(0x65F9425B)
  1034. F (..\readme.txt)(0x61CC215A)()
  1035. F (..\mcu_sdk\mcu_api.c)(0x66052DAF)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\mcu_api.o --omf_browse .\output\mcu_api.crf --depend .\output\mcu_api.d)
  1036. I (..\./mcu_sdk/zigbee.h)(0x6560036E)
  1037. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  1038. I (..\./mcu_sdk/system.h)(0x660644CF)
  1039. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  1040. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1041. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1042. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1043. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1044. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1045. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1046. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1047. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1048. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1049. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1050. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1051. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1052. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1053. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1054. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1055. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1056. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1057. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1058. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1059. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1060. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1061. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1062. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1063. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1064. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1065. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1066. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1067. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1068. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1069. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1070. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1071. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1072. F (..\mcu_sdk\protocol.c)(0x661F6B95)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\protocol.o --omf_browse .\output\protocol.crf --depend .\output\protocol.d)
  1073. I (..\./mcu_sdk/zigbee.h)(0x6560036E)
  1074. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  1075. I (..\./mcu_sdk/system.h)(0x660644CF)
  1076. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  1077. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  1078. I (..\gd32f30x_it.h)(0x65F931E5)
  1079. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1080. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1081. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1082. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1083. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1084. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1085. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1086. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1087. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1088. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1089. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1090. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1091. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1092. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1093. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1094. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1095. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1096. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1097. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1098. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1099. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1100. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1101. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1102. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1103. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1104. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1105. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1106. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1107. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1108. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1109. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1110. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1111. I (..\systick.h)(0x61CC215B)
  1112. I (..\ZIGBEE\GLOBAL.h)(0x65FBA25E)
  1113. I (..\ZIGBEE\gpio_ctl.h)(0x6560036E)
  1114. I (..\ZIGBEE\uart.h)(0x65FC2E0A)
  1115. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1116. I (..\key_proc\key_proc.h)(0x66037F51)
  1117. I (..\key_proc\flexible_button.h)(0x6618E514)
  1118. I (..\task\lcd_task.h)(0x67237853)
  1119. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1120. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1121. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1122. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1123. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1124. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1125. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1126. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1127. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1128. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1129. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1130. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1131. I (..\key_proc\key_operate.h)(0x672363D1)
  1132. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1133. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1134. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  1135. I (..\All_define.h)(0x672369EA)
  1136. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1137. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1138. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1139. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1140. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  1141. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  1142. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  1143. I (..\HARDWARE\LED\led.h)(0x66067445)
  1144. I (..\task\MB_RTU_task.h)(0x66190E3F)
  1145. F (..\mcu_sdk\system.c)(0x6721C2BD)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\system.o --omf_browse .\output\system.crf --depend .\output\system.d)
  1146. I (..\./mcu_sdk/zigbee.h)(0x6560036E)
  1147. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  1148. I (..\./mcu_sdk/system.h)(0x660644CF)
  1149. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  1150. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1151. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1152. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1153. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1154. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1155. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1156. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1157. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1158. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1159. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1160. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1161. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1162. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1163. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1164. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1165. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1166. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1167. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1168. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1169. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1170. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1171. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1172. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1173. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1174. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1175. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1176. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1177. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1178. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1179. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1180. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1181. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1182. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1183. F (..\HARDWARE\CRC16\crc16.c)(0x661DDCFA)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\crc16.o --omf_browse .\output\crc16.crf --depend .\output\crc16.d)
  1184. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1185. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1186. I (..\gd32f30x_it.h)(0x65F931E5)
  1187. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1188. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1189. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1190. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1191. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1192. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1193. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1194. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1195. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1196. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1197. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1198. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1199. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1200. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1201. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1202. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1203. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1204. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1205. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1206. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1207. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1208. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1209. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1210. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1211. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1212. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1213. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1214. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1215. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1216. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1217. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1218. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1219. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1220. F (..\HARDWARE\flash\Sim_EEPROM.c)(0x67237E34)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\sim_eeprom.o --omf_browse .\output\sim_eeprom.crf --depend .\output\sim_eeprom.d)
  1221. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  1222. I (..\gd32f30x_it.h)(0x65F931E5)
  1223. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1224. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1225. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1226. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1227. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1228. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1229. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1230. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1231. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1232. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1233. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1234. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1235. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1236. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1237. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1238. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1239. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1240. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1241. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1242. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1243. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1244. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1245. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1246. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1247. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1248. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1249. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1250. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1251. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1252. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1253. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1254. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1255. I (..\All_define.h)(0x672369EA)
  1256. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1257. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1258. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1259. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1260. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1261. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1262. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1263. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1264. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1265. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1266. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1267. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1268. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1269. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1270. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1271. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1272. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1273. I (..\task\lcd_task.h)(0x67237853)
  1274. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1275. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1276. F (..\HARDWARE\HT16C22\HT16C22.c)(0x672374F2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\ht16c22.o --omf_browse .\output\ht16c22.crf --depend .\output\ht16c22.d)
  1277. I (..\HARDWARE\HT16C22\HT16C22.h)(0x6721DCD6)
  1278. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1279. I (..\gd32f30x_it.h)(0x65F931E5)
  1280. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1281. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1282. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1283. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1284. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1285. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1286. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1287. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1288. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1289. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1290. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1291. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1292. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1293. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1294. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1295. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1296. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1297. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1298. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1299. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1300. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1301. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1302. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1303. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1304. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1305. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1306. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1307. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1308. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1309. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1310. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1311. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1312. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1313. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1314. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1315. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\math.h)(0x5E8E3CC2)
  1316. F (..\HARDWARE\USART2\modbus.c)(0x661A09B6)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\modbus.o --omf_browse .\output\modbus.crf --depend .\output\modbus.d)
  1317. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  1318. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1319. I (..\gd32f30x_it.h)(0x65F931E5)
  1320. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1321. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1322. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1323. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1324. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1325. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1326. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1327. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1328. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1329. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1330. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1331. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1332. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1333. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1334. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1335. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1336. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1337. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1338. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1339. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1340. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1341. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1342. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1343. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1344. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1345. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1346. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1347. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1348. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1349. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1350. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1351. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1352. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  1353. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  1354. I (..\All_define.h)(0x672369EA)
  1355. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1356. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1357. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1358. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1359. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1360. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1361. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1362. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1363. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1364. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1365. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1366. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1367. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1368. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1369. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1370. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1371. I (..\task\lcd_task.h)(0x67237853)
  1372. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1373. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1374. F (..\HARDWARE\USART2\usart2.c)(0x661DDCCA)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\usart2.o --omf_browse .\output\usart2.crf --depend .\output\usart2.d)
  1375. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  1376. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1377. I (..\gd32f30x_it.h)(0x65F931E5)
  1378. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1379. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1380. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1381. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1382. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1383. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1384. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1385. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1386. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1387. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1388. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1389. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1390. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1391. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1392. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1393. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1394. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1395. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1396. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1397. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1398. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1399. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1400. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1401. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1402. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1403. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1404. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1405. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1406. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1407. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1408. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1409. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1410. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  1411. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  1412. I (..\All_define.h)(0x672369EA)
  1413. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1414. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1415. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1416. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1417. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1418. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1419. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1420. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1421. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1422. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1423. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1424. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1425. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1426. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1427. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1428. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1429. I (..\task\lcd_task.h)(0x67237853)
  1430. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1431. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1432. F (..\HARDWARE\TIM2\tim2.c)(0x661DD8DA)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\tim2.o --omf_browse .\output\tim2.crf --depend .\output\tim2.d)
  1433. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  1434. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1435. I (..\gd32f30x_it.h)(0x65F931E5)
  1436. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1437. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1438. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1439. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1440. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1441. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1442. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1443. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1444. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1445. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1446. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1447. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1448. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1449. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1450. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1451. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1452. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1453. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1454. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1455. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1456. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1457. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1458. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1459. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1460. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1461. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1462. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1463. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1464. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1465. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1466. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1467. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1468. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  1469. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  1470. I (..\All_define.h)(0x672369EA)
  1471. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1472. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1473. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1474. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1475. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1476. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1477. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1478. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1479. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1480. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1481. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1482. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1483. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1484. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1485. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1486. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1487. I (..\task\lcd_task.h)(0x67237853)
  1488. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1489. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1490. F (..\HARDWARE\SHT2X\SHT2X.c)(0x66152D5B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\sht2x.o --omf_browse .\output\sht2x.crf --depend .\output\sht2x.d)
  1491. I (..\HARDWARE\SHT2X\SHT2x.h)(0x66152CC6)
  1492. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1493. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1494. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1495. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1496. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1497. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1498. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1499. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1500. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1501. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1502. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1503. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1504. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1505. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1506. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1507. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1508. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1509. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1510. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1511. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1512. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1513. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1514. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1515. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1516. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1517. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1518. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1519. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1520. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1521. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1522. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1523. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1524. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1525. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1526. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1527. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1528. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1529. I (..\gd32f30x_it.h)(0x65F931E5)
  1530. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1531. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1532. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1533. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1534. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1535. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1536. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1537. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1538. F (..\HARDWARE\relay\relay.c)(0x67232AE1)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\relay.o --omf_browse .\output\relay.crf --depend .\output\relay.d)
  1539. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1540. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1541. I (..\gd32f30x_it.h)(0x65F931E5)
  1542. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1543. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1544. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1545. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1546. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1547. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1548. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1549. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1550. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1551. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1552. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1553. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1554. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1555. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1556. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1557. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1558. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1559. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1560. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1561. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1562. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1563. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1564. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1565. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1566. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1567. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1568. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1569. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1570. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1571. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1572. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1573. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1574. I (..\All_define.h)(0x672369EA)
  1575. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1576. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1577. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1578. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1579. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1580. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1581. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1582. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1583. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1584. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1585. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1586. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1587. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1588. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1589. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1590. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1591. I (..\task\lcd_task.h)(0x67237853)
  1592. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1593. F (..\HARDWARE\PWM\pwm.c)(0x67122F66)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\pwm.o --omf_browse .\output\pwm.crf --depend .\output\pwm.d)
  1594. I (..\HARDWARE\PWM\pwm.h)(0x65F931E5)
  1595. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1596. I (..\gd32f30x_it.h)(0x65F931E5)
  1597. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1598. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1599. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1600. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1601. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1602. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1603. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1604. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1605. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1606. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1607. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1608. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1609. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1610. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1611. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1612. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1613. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1614. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1615. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1616. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1617. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1618. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1619. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1620. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1621. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1622. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1623. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1624. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1625. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1626. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1627. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1628. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1629. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1630. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1631. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1632. I (..\HARDWARE\LED\led.h)(0x66067445)
  1633. I (..\All_define.h)(0x672369EA)
  1634. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1635. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1636. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1637. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1638. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1639. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1640. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1641. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1642. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1643. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1644. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1645. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1646. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1647. I (..\task\lcd_task.h)(0x67237853)
  1648. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1649. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1650. F (..\HARDWARE\LED\led.c)(0x67238241)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\led.o --omf_browse .\output\led.crf --depend .\output\led.d)
  1651. I (..\HARDWARE\LED\led.h)(0x66067445)
  1652. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1653. I (..\gd32f30x_it.h)(0x65F931E5)
  1654. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1655. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1656. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1657. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1658. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1659. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1660. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1661. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1662. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1663. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1664. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1665. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1666. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1667. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1668. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1669. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1670. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1671. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1672. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1673. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1674. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1675. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1676. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1677. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1678. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1679. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1680. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1681. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1682. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1683. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1684. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1685. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1686. I (..\HARDWARE\KEY\key.h)(0x67163C01)
  1687. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1688. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1689. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1690. I (..\HARDWARE\HT16C22\HT16C22.h)(0x6721DCD6)
  1691. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1692. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1693. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1694. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1695. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1696. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1697. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1698. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1699. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1700. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1701. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1702. I (..\HARDWARE\PWM\pwm.h)(0x65F931E5)
  1703. I (..\All_define.h)(0x672369EA)
  1704. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  1705. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  1706. I (..\task\lcd_task.h)(0x67237853)
  1707. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  1708. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  1709. F (..\HARDWARE\KEY\key.c)(0x6710D7F6)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\key.o --omf_browse .\output\key.crf --depend .\output\key.d)
  1710. I (..\HARDWARE\KEY\key.h)(0x67163C01)
  1711. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1712. I (..\gd32f30x_it.h)(0x65F931E5)
  1713. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1714. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1715. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1716. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1717. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1718. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1719. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1720. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1721. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1722. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1723. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1724. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1725. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1726. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1727. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1728. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1729. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1730. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1731. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1732. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1733. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1734. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1735. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1736. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1737. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1738. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1739. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1740. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1741. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1742. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1743. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1744. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1745. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1746. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1747. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1748. F (..\ZIGBEE\GLOBAL.c)(0x65FAC1E4)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\global.o --omf_browse .\output\global.crf --depend .\output\global.d)
  1749. I (..\ZIGBEE\GLOBAL.h)(0x65FBA25E)
  1750. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1751. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1752. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1753. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1754. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1755. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1756. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1757. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1758. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1759. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1760. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1761. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1762. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1763. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1764. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1765. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1766. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1767. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1768. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1769. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1770. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1771. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1772. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1773. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1774. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1775. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1776. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1777. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1778. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1779. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1780. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1781. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1782. F (..\ZIGBEE\uart.c)(0x66D0373C)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\uart.o --omf_browse .\output\uart.crf --depend .\output\uart.d)
  1783. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1784. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1785. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1786. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1787. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1788. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1789. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1790. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1791. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1792. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1793. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1794. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1795. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1796. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1797. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1798. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1799. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1800. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1801. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1802. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1803. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1804. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1805. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1806. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1807. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1808. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1809. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1810. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1811. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1812. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1813. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1814. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1815. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1816. I (..\systick.h)(0x61CC215B)
  1817. I (..\ZIGBEE\uart.h)(0x65FC2E0A)
  1818. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  1819. F (..\ZIGBEE\gpio_ctl.c)(0x65FCFB20)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\gpio_ctl.o --omf_browse .\output\gpio_ctl.crf --depend .\output\gpio_ctl.d)
  1820. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1821. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1822. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1823. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1824. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1825. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1826. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1827. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1828. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1829. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1830. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1831. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1832. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1833. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1834. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1835. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1836. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1837. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1838. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1839. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1840. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1841. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1842. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1843. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1844. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1845. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1846. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1847. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1848. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1849. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1850. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1851. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1852. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1853. I (..\systick.h)(0x61CC215B)
  1854. I (..\ZIGBEE\gpio_ctl.h)(0x6560036E)
  1855. I (..\ZIGBEE\GLOBAL.h)(0x65FBA25E)
  1856. I (..\./mcu_sdk/zigbee.h)(0x6560036E)
  1857. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  1858. I (..\./mcu_sdk/system.h)(0x660644CF)
  1859. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  1860. F (..\SYSTEM\delay\delay.c)(0x66151C23)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\delay.o --omf_browse .\output\delay.crf --depend .\output\delay.d)
  1861. I (..\SYSTEM\delay\delay.h)(0x64C27C52)
  1862. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1863. I (..\gd32f30x_it.h)(0x65F931E5)
  1864. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1865. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1866. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1867. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1868. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1869. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1870. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1871. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1872. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1873. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1874. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1875. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1876. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1877. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1878. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1879. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1880. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1881. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1882. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1883. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1884. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1885. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1886. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1887. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1888. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1889. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1890. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1891. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1892. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1893. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1894. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1895. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1896. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1897. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1898. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1899. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1900. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1901. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1902. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1903. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1904. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1905. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1906. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1907. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1908. F (..\SYSTEM\sys\sys.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\sys.o --omf_browse .\output\sys.crf --depend .\output\sys.d)
  1909. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1910. I (..\gd32f30x_it.h)(0x65F931E5)
  1911. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1912. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1913. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1914. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1915. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1916. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1917. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1918. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1919. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1920. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1921. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1922. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1923. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1924. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1925. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1926. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1927. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1928. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1929. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1930. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1931. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1932. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1933. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1934. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1935. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1936. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1937. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1938. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1939. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1940. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1941. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1942. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1943. F (..\key_proc\flexible_button.c)(0x6618E547)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\flexible_button.o --omf_browse .\output\flexible_button.crf --depend .\output\flexible_button.d)
  1944. I (..\key_proc\flexible_button.h)(0x6618E514)
  1945. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1946. F (..\key_proc\Key_operate.c)(0x67237B70)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\key_operate.o --omf_browse .\output\key_operate.crf --depend .\output\key_operate.d)
  1947. I (..\key_proc\key_operate.h)(0x672363D1)
  1948. I (..\key_proc\flexible_button.h)(0x6618E514)
  1949. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  1950. I (..\task\lcd_task.h)(0x67237853)
  1951. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  1952. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  1953. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  1954. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  1955. I (..\gd32f30x_it.h)(0x65F931E5)
  1956. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  1957. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  1958. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  1959. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  1960. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  1961. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  1962. I (..\gd32f30x_libopt.h)(0x61CC215B)
  1963. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  1964. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  1965. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  1966. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  1967. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  1968. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  1969. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  1970. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  1971. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  1972. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  1973. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  1974. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  1975. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  1976. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  1977. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  1978. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  1979. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  1980. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  1981. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  1982. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  1983. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  1984. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  1985. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  1986. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  1987. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  1988. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  1989. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  1990. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  1991. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  1992. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  1993. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  1994. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  1995. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  1996. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  1997. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  1998. I (..\All_define.h)(0x672369EA)
  1999. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2000. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2001. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2002. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2003. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  2004. F (..\key_proc\key_proc.c)(0x67237A61)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\key_proc.o --omf_browse .\output\key_proc.crf --depend .\output\key_proc.d)
  2005. I (..\key_proc\key_proc.h)(0x66037F51)
  2006. I (..\key_proc\flexible_button.h)(0x6618E514)
  2007. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2008. I (..\HARDWARE\KEY\key.h)(0x67163C01)
  2009. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2010. I (..\gd32f30x_it.h)(0x65F931E5)
  2011. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2012. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2013. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2014. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2015. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2016. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2017. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2018. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2019. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2020. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2021. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2022. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2023. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2024. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2025. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2026. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2027. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2028. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2029. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2030. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2031. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2032. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2033. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2034. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2035. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2036. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2037. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2038. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2039. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2040. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2041. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2042. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2043. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2044. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2045. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2046. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2047. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2048. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2049. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2050. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2051. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2052. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2053. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2054. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2055. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2056. I (..\task\led_task.h)(0x65B8E5B9)
  2057. I (..\task\lcd_task.h)(0x67237853)
  2058. I (..\All_define.h)(0x672369EA)
  2059. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2060. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2061. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2062. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2063. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  2064. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  2065. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  2066. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  2067. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  2068. I (..\key_proc\key_operate.h)(0x672363D1)
  2069. I (..\mcu_sdk\system.h)(0x660644CF)
  2070. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  2071. I (..\HARDWARE\LED\led.h)(0x66067445)
  2072. F (..\FreeRTOS\croutine.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\croutine.o --omf_browse .\output\croutine.crf --depend .\output\croutine.d)
  2073. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2074. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2075. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2076. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2077. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2078. I (..\gd32f30x_it.h)(0x65F931E5)
  2079. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2080. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2081. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2082. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2083. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2084. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2085. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2086. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2087. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2088. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2089. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2090. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2091. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2092. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2093. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2094. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2095. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2096. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2097. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2098. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2099. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2100. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2101. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2102. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2103. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2104. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2105. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2106. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2107. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2108. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2109. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2110. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2111. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2112. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2113. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2114. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2115. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2116. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2117. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2118. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2119. I (..\FreeRTOS\include\croutine.h)(0x64C27C52)
  2120. F (..\FreeRTOS\event_groups.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\event_groups.o --omf_browse .\output\event_groups.crf --depend .\output\event_groups.d)
  2121. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2122. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2123. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2124. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2125. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2126. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2127. I (..\gd32f30x_it.h)(0x65F931E5)
  2128. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2129. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2130. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2131. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2132. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2133. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2134. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2135. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2136. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2137. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2138. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2139. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2140. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2141. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2142. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2143. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2144. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2145. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2146. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2147. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2148. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2149. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2150. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2151. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2152. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2153. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2154. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2155. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2156. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2157. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2158. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2159. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2160. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2161. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2162. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2163. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2164. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2165. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2166. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2167. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2168. I (..\FreeRTOS\include\timers.h)(0x64C27C52)
  2169. I (..\FreeRTOS\include\event_groups.h)(0x64C27C52)
  2170. F (..\FreeRTOS\list.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\list.o --omf_browse .\output\list.crf --depend .\output\list.d)
  2171. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2172. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2173. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2174. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2175. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2176. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2177. I (..\gd32f30x_it.h)(0x65F931E5)
  2178. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2179. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2180. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2181. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2182. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2183. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2184. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2185. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2186. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2187. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2188. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2189. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2190. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2191. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2192. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2193. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2194. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2195. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2196. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2197. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2198. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2199. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2200. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2201. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2202. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2203. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2204. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2205. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2206. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2207. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2208. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2209. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2210. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2211. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2212. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2213. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2214. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2215. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2216. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2217. F (..\FreeRTOS\queue.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\queue.o --omf_browse .\output\queue.crf --depend .\output\queue.d)
  2218. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2219. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2220. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2221. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2222. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2223. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2224. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2225. I (..\gd32f30x_it.h)(0x65F931E5)
  2226. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2227. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2228. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2229. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2230. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2231. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2232. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2233. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2234. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2235. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2236. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2237. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2238. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2239. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2240. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2241. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2242. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2243. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2244. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2245. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2246. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2247. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2248. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2249. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2250. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2251. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2252. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2253. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2254. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2255. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2256. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2257. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2258. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2259. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2260. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2261. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2262. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2263. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2264. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2265. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2266. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2267. F (..\FreeRTOS\tasks.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\tasks.o --omf_browse .\output\tasks.crf --depend .\output\tasks.d)
  2268. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2269. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2270. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2271. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2272. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2273. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2274. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2275. I (..\gd32f30x_it.h)(0x65F931E5)
  2276. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2277. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2278. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2279. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2280. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2281. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2282. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2283. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2284. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2285. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2286. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2287. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2288. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2289. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2290. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2291. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2292. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2293. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2294. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2295. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2296. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2297. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2298. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2299. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2300. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2301. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2302. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2303. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2304. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2305. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2306. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2307. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2308. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2309. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2310. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2311. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2312. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2313. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2314. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2315. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2316. I (..\FreeRTOS\include\timers.h)(0x64C27C52)
  2317. I (..\FreeRTOS\include\StackMacros.h)(0x64C27C52)
  2318. F (..\FreeRTOS\timers.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\timers.o --omf_browse .\output\timers.crf --depend .\output\timers.d)
  2319. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2320. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2321. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2322. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2323. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2324. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2325. I (..\gd32f30x_it.h)(0x65F931E5)
  2326. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2327. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2328. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2329. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2330. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2331. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2332. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2333. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2334. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2335. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2336. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2337. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2338. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2339. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2340. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2341. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2342. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2343. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2344. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2345. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2346. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2347. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2348. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2349. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2350. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2351. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2352. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2353. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2354. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2355. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2356. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2357. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2358. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2359. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2360. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2361. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2362. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2363. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2364. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2365. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2366. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2367. I (..\FreeRTOS\include\timers.h)(0x64C27C52)
  2368. F (..\FreeRTOS\portable\MemMang\heap_4.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\heap_4.o --omf_browse .\output\heap_4.crf --depend .\output\heap_4.d)
  2369. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2370. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2371. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2372. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2373. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2374. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2375. I (..\gd32f30x_it.h)(0x65F931E5)
  2376. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2377. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2378. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2379. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2380. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2381. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2382. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2383. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2384. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2385. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2386. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2387. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2388. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2389. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2390. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2391. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2392. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2393. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2394. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2395. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2396. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2397. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2398. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2399. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2400. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2401. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2402. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2403. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2404. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2405. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2406. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2407. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2408. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2409. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2410. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2411. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2412. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2413. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2414. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2415. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2416. F (..\FreeRTOS\portable\RVDS\ARM_CM4F\port.c)(0x64C27C52)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\port.o --omf_browse .\output\port.crf --depend .\output\port.d)
  2417. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2418. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2419. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2420. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2421. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2422. I (..\gd32f30x_it.h)(0x65F931E5)
  2423. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2424. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2425. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2426. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2427. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2428. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2429. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2430. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2431. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2432. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2433. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2434. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2435. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2436. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2437. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2438. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2439. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2440. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2441. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2442. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2443. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2444. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2445. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2446. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2447. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2448. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2449. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2450. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2451. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2452. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2453. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2454. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2455. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2456. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2457. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2458. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2459. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2460. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2461. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2462. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2463. F (..\task\key_task.c)(0x65B8E4FE)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\key_task.o --omf_browse .\output\key_task.crf --depend .\output\key_task.d)
  2464. I (..\task\key_task.h)(0x65B8E592)
  2465. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2466. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2467. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2468. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2469. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2470. I (..\gd32f30x_it.h)(0x65F931E5)
  2471. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2472. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2473. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2474. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2475. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2476. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2477. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2478. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2479. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2480. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2481. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2482. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2483. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2484. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2485. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2486. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2487. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2488. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2489. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2490. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2491. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2492. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2493. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2494. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2495. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2496. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2497. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2498. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2499. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2500. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2501. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2502. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2503. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2504. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2505. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2506. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2507. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2508. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2509. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2510. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2511. I (..\key_proc\flexible_button.h)(0x6618E514)
  2512. I (..\key_proc\key_proc.h)(0x66037F51)
  2513. F (..\task\lcd_task.c)(0x67237B59)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\lcd_task.o --omf_browse .\output\lcd_task.crf --depend .\output\lcd_task.d)
  2514. I (..\task\lcd_task.h)(0x67237853)
  2515. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2516. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2517. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2518. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2519. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2520. I (..\gd32f30x_it.h)(0x65F931E5)
  2521. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2522. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2523. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2524. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2525. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2526. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2527. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2528. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2529. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2530. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2531. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2532. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2533. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2534. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2535. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2536. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2537. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2538. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2539. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2540. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2541. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2542. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2543. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2544. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2545. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2546. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2547. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2548. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2549. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2550. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2551. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2552. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2553. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2554. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2555. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2556. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2557. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2558. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2559. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2560. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2561. I (..\HARDWARE\HT16C22\HT16C22.h)(0x6721DCD6)
  2562. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2563. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2564. I (..\HARDWARE\SHT2X\SHT2x.h)(0x66152CC6)
  2565. I (..\HARDWARE\PWM\pwm.h)(0x65F931E5)
  2566. I (..\HARDWARE\KEY\key.h)(0x67163C01)
  2567. I (..\HARDWARE\LED\led.h)(0x66067445)
  2568. I (..\All_define.h)(0x672369EA)
  2569. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2570. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2571. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2572. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2573. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  2574. I (..\mcu_sdk\mcu_api.h)(0x6560036E)
  2575. I (..\mcu_sdk\protocol.h)(0x661F4B08)
  2576. I (..\mcu_sdk\system.h)(0x660644CF)
  2577. F (..\task\led_task.c)(0x67232AE1)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\led_task.o --omf_browse .\output\led_task.crf --depend .\output\led_task.d)
  2578. I (..\task\led_task.h)(0x65B8E5B9)
  2579. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2580. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2581. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2582. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2583. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2584. I (..\gd32f30x_it.h)(0x65F931E5)
  2585. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2586. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2587. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2588. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2589. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2590. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2591. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2592. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2593. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2594. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2595. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2596. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2597. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2598. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2599. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2600. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2601. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2602. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2603. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2604. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2605. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2606. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2607. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2608. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2609. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2610. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2611. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2612. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2613. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2614. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2615. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2616. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2617. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2618. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2619. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2620. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2621. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2622. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2623. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2624. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2625. I (..\HARDWARE\KEY\key.h)(0x67163C01)
  2626. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2627. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2628. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  2629. I (..\HARDWARE\LED\led.h)(0x66067445)
  2630. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  2631. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  2632. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  2633. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\limits.h)(0x5E8E3CC2)
  2634. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  2635. I (..\All_define.h)(0x672369EA)
  2636. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2637. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2638. I (..\task\lcd_task.h)(0x67237853)
  2639. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2640. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2641. F (..\task\MB_RTU_deal_task.c)(0x661DDE07)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\mb_rtu_deal_task.o --omf_browse .\output\mb_rtu_deal_task.crf --depend .\output\mb_rtu_deal_task.d)
  2642. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  2643. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2644. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2645. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2646. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2647. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2648. I (..\gd32f30x_it.h)(0x65F931E5)
  2649. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2650. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2651. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2652. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2653. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2654. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2655. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2656. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2657. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2658. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2659. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2660. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2661. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2662. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2663. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2664. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2665. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2666. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2667. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2668. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2669. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2670. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2671. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2672. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2673. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2674. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2675. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2676. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2677. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2678. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2679. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2680. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2681. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2682. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2683. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2684. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2685. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2686. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2687. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2688. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2689. I (..\task\MB_RTU_task.h)(0x66190E3F)
  2690. I (..\All_define.h)(0x672369EA)
  2691. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2692. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2693. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2694. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2695. I (..\task\lcd_task.h)(0x67237853)
  2696. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2697. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2698. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  2699. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  2700. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  2701. I (..\mcu_sdk\protocol.h)(0x661F4B08)
  2702. F (..\task\MB_RTU_task.c)(0x67232C7B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\mb_rtu_task.o --omf_browse .\output\mb_rtu_task.crf --depend .\output\mb_rtu_task.d)
  2703. I (..\task\MB_RTU_task.h)(0x66190E3F)
  2704. I (..\All_define.h)(0x672369EA)
  2705. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2706. I (..\gd32f30x_it.h)(0x65F931E5)
  2707. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2708. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2709. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2710. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2711. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2712. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2713. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2714. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2715. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2716. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2717. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2718. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2719. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2720. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2721. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2722. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2723. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2724. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2725. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2726. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2727. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2728. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2729. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2730. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2731. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2732. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2733. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2734. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2735. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2736. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2737. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2738. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2739. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2740. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2741. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2742. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2743. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2744. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2745. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2746. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2747. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2748. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2749. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2750. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2751. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2752. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2753. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2754. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2755. I (..\task\lcd_task.h)(0x67237853)
  2756. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2757. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2758. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  2759. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  2760. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  2761. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  2762. I (..\key_proc\key_operate.h)(0x672363D1)
  2763. I (..\key_proc\flexible_button.h)(0x6618E514)
  2764. I (..\mcu_sdk\protocol.h)(0x661F4B08)
  2765. F (..\task\relay_task.c)(0x67237F51)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\relay_task.o --omf_browse .\output\relay_task.crf --depend .\output\relay_task.d)
  2766. I (..\task\relay_task.h)(0x65B8E5B2)
  2767. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2768. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2769. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2770. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2771. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2772. I (..\gd32f30x_it.h)(0x65F931E5)
  2773. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2774. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2775. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2776. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2777. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2778. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2779. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2780. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2781. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2782. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2783. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2784. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2785. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2786. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2787. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2788. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2789. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2790. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2791. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2792. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2793. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2794. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2795. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2796. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2797. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2798. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2799. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2800. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2801. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2802. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2803. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2804. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2805. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2806. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2807. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2808. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2809. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2810. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2811. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2812. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2813. I (..\All_define.h)(0x672369EA)
  2814. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2815. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2816. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2817. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2818. I (..\task\lcd_task.h)(0x67237853)
  2819. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2820. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2821. F (..\task\zigbee_task.c)(0x66052D24)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ..\..\Firmware\CMSIS -I ..\..\Firmware\CMSIS\GD\GD32F30x\Include -I ..\..\Firmware\GD32F30x_standard_peripheral\Include -I ..\..\Utilities -I ..\ -I ..\..\Template -I ..\HARDWARE\CRC16 -I ..\HARDWARE\flash -I ..\HARDWARE\HT16C22 -I ..\HARDWARE\KEY -I ..\HARDWARE\LED -I ..\HARDWARE\PWM -I ..\HARDWARE\relay -I ..\HARDWARE\SHT2X -I ..\HARDWARE\TIM2 -I ..\HARDWARE\USART2 -I ..\mcu_sdk -I ..\SYSTEM\delay -I ..\SYSTEM\sys -I ..\key_proc -I ..\FreeRTOS -I ..\FreeRTOS\portable\MemMang -I ..\FreeRTOS\portable\RVDS\ARM_CM4F -I ..\FreeRTOS\include -I ..\task -I ..\SYSTEM\usart -I ..\ZIGBEE -I.\RTE\_GD32F30X_HD -IC:\Users\Dell\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include -IC:\Users\Dell\AppData\Local\Arm\Packs\GigaDevice\GD32F30x_DFP\2.2.3\Device\Include -D__UVISION_VERSION="538" -D_RTE_ -DGD32F30X_HD -D_RTE_ -DUSE_STDPERIPH_DRIVER -DGD32F30X_HD -o .\output\zigbee_task.o --omf_browse .\output\zigbee_task.crf --depend .\output\zigbee_task.d)
  2822. I (..\task\led_task.h)(0x65B8E5B9)
  2823. I (..\FreeRTOS\include\FreeRTOS.h)(0x64C27C52)
  2824. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stddef.h)(0x5E8E3CC2)
  2825. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdint.h)(0x5E8E3CC2)
  2826. I (..\FreeRTOS\include\FreeRTOSConfig.h)(0x65FBC5FA)
  2827. I (..\SYSTEM\sys\sys.h)(0x65F7EBEB)
  2828. I (..\gd32f30x_it.h)(0x65F931E5)
  2829. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\gd32f30x.h)(0x661621A2)
  2830. I (..\..\Firmware\CMSIS\core_cm4.h)(0x661621A2)
  2831. I (..\..\Firmware\CMSIS\core_cmInstr.h)(0x661621A2)
  2832. I (..\..\Firmware\CMSIS\core_cmFunc.h)(0x661621A2)
  2833. I (..\..\Firmware\CMSIS\core_cm4_simd.h)(0x661621A2)
  2834. I (..\..\Firmware\CMSIS\GD\GD32F30x\Include\system_gd32f30x.h)(0x661621A2)
  2835. I (..\gd32f30x_libopt.h)(0x61CC215B)
  2836. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rcu.h)(0x661621A2)
  2837. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_adc.h)(0x661621A2)
  2838. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_can.h)(0x661621A2)
  2839. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_crc.h)(0x661621A2)
  2840. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_ctc.h)(0x661621A2)
  2841. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dac.h)(0x661621A2)
  2842. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dbg.h)(0x661621A2)
  2843. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_dma.h)(0x661621A2)
  2844. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exti.h)(0x661621A2)
  2845. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fmc.h)(0x661621A2)
  2846. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_fwdgt.h)(0x661621A2)
  2847. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_gpio.h)(0x661621A2)
  2848. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_i2c.h)(0x661621A2)
  2849. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_pmu.h)(0x661621A2)
  2850. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_bkp.h)(0x661621A2)
  2851. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_rtc.h)(0x661621A2)
  2852. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_sdio.h)(0x661621A2)
  2853. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_spi.h)(0x661621A2)
  2854. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_timer.h)(0x661621A2)
  2855. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_usart.h)(0x661621A2)
  2856. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_wwdgt.h)(0x661621A2)
  2857. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_misc.h)(0x661621A2)
  2858. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_enet.h)(0x661621A2)
  2859. I (..\..\Firmware\GD32F30x_standard_peripheral\Include\gd32f30x_exmc.h)(0x661621A2)
  2860. I (..\SYSTEM\usart\usart.h)(0x64C27C52)
  2861. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdio.h)(0x5E8E3CC2)
  2862. I (..\FreeRTOS\include\projdefs.h)(0x64C27C52)
  2863. I (..\FreeRTOS\include\portable.h)(0x64C27C52)
  2864. I (..\FreeRTOS\include\deprecated_definitions.h)(0x64C27C52)
  2865. I (..\FreeRTOS\portable\RVDS\ARM_CM4F\portmacro.h)(0x64C27C52)
  2866. I (..\FreeRTOS\include\mpu_wrappers.h)(0x64C27C52)
  2867. I (..\FreeRTOS\include\task.h)(0x64C27C52)
  2868. I (..\FreeRTOS\include\list.h)(0x64C27C52)
  2869. I (..\HARDWARE\KEY\key.h)(0x67163C01)
  2870. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\stdlib.h)(0x5E8E3CC2)
  2871. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\string.h)(0x5E8E3CC2)
  2872. I (..\HARDWARE\flash\SIM_EEPROM.h)(0x65FCF962)
  2873. I (..\HARDWARE\LED\led.h)(0x66067445)
  2874. I (..\HARDWARE\USART2\modbus.h)(0x65B8E551)
  2875. I (..\HARDWARE\USART2\usart2.h)(0x6614E30C)
  2876. I (..\HARDWARE\TIM2\tim2.h)(0x65B8E5B9)
  2877. I (C:\Keil_v5\ARM\ARM_Compiler_5.06u7\include\limits.h)(0x5E8E3CC2)
  2878. I (..\task\MB_RTU_deal_task.h)(0x6605403A)
  2879. I (..\All_define.h)(0x672369EA)
  2880. I (..\FreeRTOS\include\queue.h)(0x64C27C52)
  2881. I (..\FreeRTOS\include\semphr.h)(0x64C27C52)
  2882. I (..\task\lcd_task.h)(0x67237853)
  2883. I (..\HARDWARE\CRC16\crc16.h)(0x64C27C52)
  2884. I (..\HARDWARE\relay\relay.h)(0x67232AE1)
  2885. I (..\./mcu_sdk/zigbee.h)(0x6560036E)
  2886. I (..\./mcu_sdk/protocol.h)(0x661F4B08)
  2887. I (..\./mcu_sdk/system.h)(0x660644CF)
  2888. I (..\./mcu_sdk/mcu_api.h)(0x6560036E)
  2889. I (..\task\zigbee_task.h)(0x66029A1C)