HC32_4G04.htm 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088
  1. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  2. <html><head>
  3. <title>Static Call Graph - [.\Objects\HC32_4G04.axf]</title></head>
  4. <body><HR>
  5. <H1>Static Call Graph for image .\Objects\HC32_4G04.axf</H1><HR>
  6. <BR><P>#&#060CALLGRAPH&#062# ARM Linker, 5060750: Last Updated: Wed Jul 19 11:36:38 2023
  7. <BR><P>
  8. <H3>Maximum Stack Usage = 240 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
  9. Call chain for Maximum Stack Depth:</H3>
  10. MCAN1_INT0_Handler &rArr; xQueueGenericSendFromISR &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  11. <P>
  12. <H3>
  13. Mutually Recursive functions
  14. </H3> <LI><a href="#[2]">NMI_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[2]">NMI_Handler</a><BR>
  15. <LI><a href="#[3]">HardFault_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[3]">HardFault_Handler</a><BR>
  16. <LI><a href="#[4]">MemManage_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[4]">MemManage_Handler</a><BR>
  17. <LI><a href="#[5]">BusFault_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[5]">BusFault_Handler</a><BR>
  18. <LI><a href="#[6]">UsageFault_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[6]">UsageFault_Handler</a><BR>
  19. <LI><a href="#[8]">DebugMon_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[8]">DebugMon_Handler</a><BR>
  20. <LI><a href="#[8b]">ADC1_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[8b]">ADC1_Handler</a><BR>
  21. </UL>
  22. <P>
  23. <H3>
  24. Function Pointers
  25. </H3><UL>
  26. <LI><a href="#[8b]">ADC1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  27. <LI><a href="#[8c]">ADC2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  28. <LI><a href="#[8d]">ADC3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  29. <LI><a href="#[5]">BusFault_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  30. <LI><a href="#[43]">CLK_XtalStop_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  31. <LI><a href="#[64]">CMP1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  32. <LI><a href="#[65]">CMP2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  33. <LI><a href="#[66]">CMP3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  34. <LI><a href="#[67]">CMP4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  35. <LI><a href="#[8a]">CTC_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  36. <LI><a href="#[35]">DCU1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  37. <LI><a href="#[36]">DCU2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  38. <LI><a href="#[37]">DCU3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  39. <LI><a href="#[38]">DCU4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  40. <LI><a href="#[2b]">DMA1_Error_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  41. <LI><a href="#[2c]">DMA1_TC0_BTC0_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  42. <LI><a href="#[2d]">DMA1_TC1_BTC1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  43. <LI><a href="#[2e]">DMA1_TC2_BTC2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  44. <LI><a href="#[2f]">DMA1_TC3_BTC3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  45. <LI><a href="#[30]">DMA1_TC4_BTC4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  46. <LI><a href="#[31]">DMA1_TC5_BTC5_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  47. <LI><a href="#[39]">DMA2_Error_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  48. <LI><a href="#[3a]">DMA2_TC0_BTC0_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  49. <LI><a href="#[3b]">DMA2_TC1_BTC1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  50. <LI><a href="#[3c]">DMA2_TC2_BTC2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  51. <LI><a href="#[3d]">DMA2_TC3_BTC3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  52. <LI><a href="#[3e]">DMA2_TC4_BTC4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  53. <LI><a href="#[3f]">DMA2_TC5_BTC5_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  54. <LI><a href="#[98]">DMA_TransCompleteCallback</a> from hal_ec600g.o(i.DMA_TransCompleteCallback) referenced from hal_ec600g.o(i.spi_mpu_init_hc)
  55. <LI><a href="#[8]">DebugMon_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  56. <LI><a href="#[33]">EFM_OpEnd_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  57. <LI><a href="#[32]">EFM_PEError_ReadCol_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  58. <LI><a href="#[79]">EMB_GR0_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  59. <LI><a href="#[7a]">EMB_GR1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  60. <LI><a href="#[7b]">EMB_GR2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  61. <LI><a href="#[7c]">EMB_GR3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  62. <LI><a href="#[6f]">EVENT_PORT1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  63. <LI><a href="#[70]">EVENT_PORT2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  64. <LI><a href="#[71]">EVENT_PORT3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  65. <LI><a href="#[72]">EVENT_PORT4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  66. <LI><a href="#[1b]">EXTINT00_SWINT16_Handler</a> from hal_gpio.o(i.EXTINT00_SWINT16_Handler) referenced from startup_hc32f448mcti.o(RESET)
  67. <LI><a href="#[1c]">EXTINT01_SWINT17_Handler</a> from hal_gpio.o(i.EXTINT01_SWINT17_Handler) referenced from startup_hc32f448mcti.o(RESET)
  68. <LI><a href="#[1d]">EXTINT02_SWINT18_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  69. <LI><a href="#[1e]">EXTINT03_SWINT19_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  70. <LI><a href="#[1f]">EXTINT04_SWINT20_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  71. <LI><a href="#[20]">EXTINT05_SWINT21_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  72. <LI><a href="#[21]">EXTINT06_SWINT22_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  73. <LI><a href="#[22]">EXTINT07_SWINT23_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  74. <LI><a href="#[23]">EXTINT08_SWINT24_Handler</a> from hal_gpio.o(i.EXTINT08_SWINT24_Handler) referenced from startup_hc32f448mcti.o(RESET)
  75. <LI><a href="#[24]">EXTINT09_SWINT25_Handler</a> from hal_gpio.o(i.EXTINT09_SWINT25_Handler) referenced from startup_hc32f448mcti.o(RESET)
  76. <LI><a href="#[25]">EXTINT10_SWINT26_Handler</a> from hal_gpio.o(i.EXTINT10_SWINT26_Handler) referenced from startup_hc32f448mcti.o(RESET)
  77. <LI><a href="#[26]">EXTINT11_SWINT27_Handler</a> from hal_gpio.o(i.EXTINT11_SWINT27_Handler) referenced from startup_hc32f448mcti.o(RESET)
  78. <LI><a href="#[27]">EXTINT12_SWINT28_Handler</a> from hal_gpio.o(i.EXTINT12_SWINT28_Handler) referenced from startup_hc32f448mcti.o(RESET)
  79. <LI><a href="#[28]">EXTINT13_SWINT29_Handler</a> from hal_gpio.o(i.EXTINT13_SWINT29_Handler) referenced from startup_hc32f448mcti.o(RESET)
  80. <LI><a href="#[29]">EXTINT14_SWINT30_Handler</a> from hal_gpio.o(i.EXTINT14_SWINT30_Handler) referenced from startup_hc32f448mcti.o(RESET)
  81. <LI><a href="#[2a]">EXTINT15_SWINT31_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  82. <LI><a href="#[88]">FCM_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  83. <LI><a href="#[3]">HardFault_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  84. <LI><a href="#[62]">I2C1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  85. <LI><a href="#[63]">I2C2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  86. <LI><a href="#[b]">IRQ000_Handler</a> from hc32_ll_interrupts.o(i.IRQ000_Handler) referenced from startup_hc32f448mcti.o(RESET)
  87. <LI><a href="#[c]">IRQ001_Handler</a> from hc32_ll_interrupts.o(i.IRQ001_Handler) referenced from startup_hc32f448mcti.o(RESET)
  88. <LI><a href="#[d]">IRQ002_Handler</a> from hc32_ll_interrupts.o(i.IRQ002_Handler) referenced from startup_hc32f448mcti.o(RESET)
  89. <LI><a href="#[e]">IRQ003_Handler</a> from hc32_ll_interrupts.o(i.IRQ003_Handler) referenced from startup_hc32f448mcti.o(RESET)
  90. <LI><a href="#[f]">IRQ004_Handler</a> from hc32_ll_interrupts.o(i.IRQ004_Handler) referenced from startup_hc32f448mcti.o(RESET)
  91. <LI><a href="#[10]">IRQ005_Handler</a> from hc32_ll_interrupts.o(i.IRQ005_Handler) referenced from startup_hc32f448mcti.o(RESET)
  92. <LI><a href="#[11]">IRQ006_Handler</a> from hc32_ll_interrupts.o(i.IRQ006_Handler) referenced from startup_hc32f448mcti.o(RESET)
  93. <LI><a href="#[12]">IRQ007_Handler</a> from hc32_ll_interrupts.o(i.IRQ007_Handler) referenced from startup_hc32f448mcti.o(RESET)
  94. <LI><a href="#[13]">IRQ008_Handler</a> from hc32_ll_interrupts.o(i.IRQ008_Handler) referenced from startup_hc32f448mcti.o(RESET)
  95. <LI><a href="#[14]">IRQ009_Handler</a> from hc32_ll_interrupts.o(i.IRQ009_Handler) referenced from startup_hc32f448mcti.o(RESET)
  96. <LI><a href="#[15]">IRQ010_Handler</a> from hc32_ll_interrupts.o(i.IRQ010_Handler) referenced from startup_hc32f448mcti.o(RESET)
  97. <LI><a href="#[16]">IRQ011_Handler</a> from hc32_ll_interrupts.o(i.IRQ011_Handler) referenced from startup_hc32f448mcti.o(RESET)
  98. <LI><a href="#[17]">IRQ012_Handler</a> from hc32_ll_interrupts.o(i.IRQ012_Handler) referenced from startup_hc32f448mcti.o(RESET)
  99. <LI><a href="#[18]">IRQ013_Handler</a> from hc32_ll_interrupts.o(i.IRQ013_Handler) referenced from startup_hc32f448mcti.o(RESET)
  100. <LI><a href="#[19]">IRQ014_Handler</a> from hc32_ll_interrupts.o(i.IRQ014_Handler) referenced from startup_hc32f448mcti.o(RESET)
  101. <LI><a href="#[1a]">IRQ015_Handler</a> from hc32_ll_interrupts.o(i.IRQ015_Handler) referenced from startup_hc32f448mcti.o(RESET)
  102. <LI><a href="#[81]">MCAN1_INT0_Handler</a> from hal_can.o(i.MCAN1_INT0_Handler) referenced from startup_hc32f448mcti.o(RESET)
  103. <LI><a href="#[82]">MCAN1_INT1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  104. <LI><a href="#[83]">MCAN2_INT0_Handler</a> from hal_can.o(i.MCAN2_INT0_Handler) referenced from startup_hc32f448mcti.o(RESET)
  105. <LI><a href="#[84]">MCAN2_INT1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  106. <LI><a href="#[4]">MemManage_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  107. <LI><a href="#[2]">NMI_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  108. <LI><a href="#[86]">PWC_LVD1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  109. <LI><a href="#[87]">PWC_LVD2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  110. <LI><a href="#[44]">PWC_WKTM_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  111. <LI><a href="#[9]">PendSV_Handler</a> from port.o(.emb_text) referenced from startup_hc32f448mcti.o(RESET)
  112. <LI><a href="#[34]">QSPI_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  113. <LI><a href="#[42]">RTC_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  114. <LI><a href="#[1]">Reset_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  115. <LI><a href="#[6c]">SPI1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  116. <LI><a href="#[77]">SPI2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  117. <LI><a href="#[78]">SPI3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  118. <LI><a href="#[97]">SPI_IDLECallback</a> from hal_ec600g.o(i.SPI_IDLECallback) referenced from hal_ec600g.o(i.spi_mpu_init_hc)
  119. <LI><a href="#[7]">SVC_Handler</a> from port.o(.emb_text) referenced from startup_hc32f448mcti.o(RESET)
  120. <LI><a href="#[45]">SWDT_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  121. <LI><a href="#[a]">SysTick_Handler</a> from port.o(i.SysTick_Handler) referenced from startup_hc32f448mcti.o(RESET)
  122. <LI><a href="#[90]">SystemInit</a> from system_hc32f448mcti.o(i.SystemInit) referenced from startup_hc32f448mcti.o(.text)
  123. <LI><a href="#[40]">TMR0_1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  124. <LI><a href="#[41]">TMR0_2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  125. <LI><a href="#[56]">TMR4_1_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  126. <LI><a href="#[57]">TMR4_1_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  127. <LI><a href="#[58]">TMR4_1_Reload_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  128. <LI><a href="#[59]">TMR4_1_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  129. <LI><a href="#[5a]">TMR4_2_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  130. <LI><a href="#[5b]">TMR4_2_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  131. <LI><a href="#[5c]">TMR4_2_Reload_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  132. <LI><a href="#[5d]">TMR4_2_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  133. <LI><a href="#[5e]">TMR4_3_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  134. <LI><a href="#[5f]">TMR4_3_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  135. <LI><a href="#[60]">TMR4_3_Reload_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  136. <LI><a href="#[61]">TMR4_3_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  137. <LI><a href="#[46]">TMR6_1_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  138. <LI><a href="#[48]">TMR6_1_GDet_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  139. <LI><a href="#[47]">TMR6_1_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  140. <LI><a href="#[49]">TMR6_1_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  141. <LI><a href="#[4c]">TMR6_2_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  142. <LI><a href="#[4e]">TMR6_2_GDet_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  143. <LI><a href="#[4d]">TMR6_2_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  144. <LI><a href="#[4f]">TMR6_2_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  145. <LI><a href="#[4b]">TMRA_1_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  146. <LI><a href="#[4a]">TMRA_1_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  147. <LI><a href="#[51]">TMRA_2_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  148. <LI><a href="#[50]">TMRA_2_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  149. <LI><a href="#[53]">TMRA_3_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  150. <LI><a href="#[52]">TMRA_3_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  151. <LI><a href="#[55]">TMRA_4_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  152. <LI><a href="#[54]">TMRA_4_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  153. <LI><a href="#[6e]">TMRA_5_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  154. <LI><a href="#[6d]">TMRA_5_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  155. <LI><a href="#[8e]">TRNG_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  156. <LI><a href="#[68]">USART1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  157. <LI><a href="#[69]">USART1_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  158. <LI><a href="#[85]">USART1_WKUP_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  159. <LI><a href="#[6a]">USART2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  160. <LI><a href="#[6b]">USART2_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  161. <LI><a href="#[73]">USART3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  162. <LI><a href="#[74]">USART3_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  163. <LI><a href="#[75]">USART4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  164. <LI><a href="#[76]">USART4_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  165. <LI><a href="#[7d]">USART5_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  166. <LI><a href="#[7e]">USART5_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  167. <LI><a href="#[7f]">USART6_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  168. <LI><a href="#[80]">USART6_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  169. <LI><a href="#[6]">UsageFault_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  170. <LI><a href="#[89]">WDT_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
  171. <LI><a href="#[91]">__main</a> from entry.o(.ARM.Collect$$$$00000000) referenced from startup_hc32f448mcti.o(.text)
  172. <LI><a href="#[94]">ec600g_task</a> from hal_ec600g.o(i.ec600g_task) referenced from main.o(i.main)
  173. <LI><a href="#[92]">fputc</a> from hal_clk_func.o(i.fputc) referenced from printf8.o(i.__0printf$8)
  174. <LI><a href="#[8f]">main</a> from main.o(i.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
  175. <LI><a href="#[95]">mpu_task</a> from main.o(i.mpu_task) referenced from main.o(i.main)
  176. <LI><a href="#[93]">nca9555_task</a> from hal_nca9555.o(i.nca9555_task) referenced from main.o(i.main)
  177. <LI><a href="#[99]">prvIdleTask</a> from tasks.o(i.prvIdleTask) referenced from tasks.o(i.vTaskStartScheduler)
  178. <LI><a href="#[96]">prvTaskExitError</a> from port.o(i.prvTaskExitError) referenced from port.o(i.pxPortInitialiseStack)
  179. <LI><a href="#[9a]">prvTimerTask</a> from timers.o(i.prvTimerTask) referenced from timers.o(i.xTimerCreateTimerTask)
  180. </UL>
  181. <P>
  182. <H3>
  183. Global Symbols
  184. </H3>
  185. <P><STRONG><a name="[91]"></a>__main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000))
  186. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(.text)
  187. </UL>
  188. <P><STRONG><a name="[136]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
  189. <P><STRONG><a name="[9b]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
  190. <BR><BR>[Calls]<UL><LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  191. </UL>
  192. <P><STRONG><a name="[a4]"></a>__main_after_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
  193. <BR><BR>[Called By]<UL><LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  194. </UL>
  195. <P><STRONG><a name="[137]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
  196. <P><STRONG><a name="[138]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
  197. <P><STRONG><a name="[139]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
  198. <P><STRONG><a name="[13a]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000D))
  199. <P><STRONG><a name="[13b]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F))
  200. <P><STRONG><a name="[7]"></a>SVC_Handler</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, port.o(.emb_text))
  201. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  202. </UL>
  203. <P><STRONG><a name="[131]"></a>__asm___6_port_c_39a90d8d__prvStartFirstTask</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, port.o(.emb_text))
  204. <BR><BR>[Called By]<UL><LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xPortStartScheduler
  205. </UL>
  206. <P><STRONG><a name="[130]"></a>__asm___6_port_c_39a90d8d__prvEnableVFP</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, port.o(.emb_text))
  207. <BR><BR>[Called By]<UL><LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xPortStartScheduler
  208. </UL>
  209. <P><STRONG><a name="[9]"></a>PendSV_Handler</STRONG> (Thumb, 88 bytes, Stack size 0 bytes, port.o(.emb_text))
  210. <BR><BR>[Calls]<UL><LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSwitchContext
  211. </UL>
  212. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  213. </UL>
  214. <P><STRONG><a name="[12a]"></a>vPortGetIPSR</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, port.o(.emb_text))
  215. <BR><BR>[Called By]<UL><LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortValidateInterruptPriority
  216. </UL>
  217. <P><STRONG><a name="[1]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  218. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  219. </UL>
  220. <P><STRONG><a name="[2]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  221. <BR><BR>[Calls]<UL><LI><a href="#[2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NMI_Handler
  222. </UL>
  223. <BR>[Called By]<UL><LI><a href="#[2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NMI_Handler
  224. </UL>
  225. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  226. </UL>
  227. <P><STRONG><a name="[3]"></a>HardFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  228. <BR><BR>[Calls]<UL><LI><a href="#[3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HardFault_Handler
  229. </UL>
  230. <BR>[Called By]<UL><LI><a href="#[3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HardFault_Handler
  231. </UL>
  232. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  233. </UL>
  234. <P><STRONG><a name="[4]"></a>MemManage_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  235. <BR><BR>[Calls]<UL><LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MemManage_Handler
  236. </UL>
  237. <BR>[Called By]<UL><LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MemManage_Handler
  238. </UL>
  239. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  240. </UL>
  241. <P><STRONG><a name="[5]"></a>BusFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  242. <BR><BR>[Calls]<UL><LI><a href="#[5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BusFault_Handler
  243. </UL>
  244. <BR>[Called By]<UL><LI><a href="#[5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BusFault_Handler
  245. </UL>
  246. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  247. </UL>
  248. <P><STRONG><a name="[6]"></a>UsageFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  249. <BR><BR>[Calls]<UL><LI><a href="#[6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UsageFault_Handler
  250. </UL>
  251. <BR>[Called By]<UL><LI><a href="#[6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UsageFault_Handler
  252. </UL>
  253. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  254. </UL>
  255. <P><STRONG><a name="[8]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  256. <BR><BR>[Calls]<UL><LI><a href="#[8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DebugMon_Handler
  257. </UL>
  258. <BR>[Called By]<UL><LI><a href="#[8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DebugMon_Handler
  259. </UL>
  260. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  261. </UL>
  262. <P><STRONG><a name="[8b]"></a>ADC1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  263. <BR><BR>[Calls]<UL><LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC1_Handler
  264. </UL>
  265. <BR>[Called By]<UL><LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC1_Handler
  266. </UL>
  267. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  268. </UL>
  269. <P><STRONG><a name="[8c]"></a>ADC2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  270. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  271. </UL>
  272. <P><STRONG><a name="[8d]"></a>ADC3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  273. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  274. </UL>
  275. <P><STRONG><a name="[43]"></a>CLK_XtalStop_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  276. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  277. </UL>
  278. <P><STRONG><a name="[64]"></a>CMP1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  279. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  280. </UL>
  281. <P><STRONG><a name="[65]"></a>CMP2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  282. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  283. </UL>
  284. <P><STRONG><a name="[66]"></a>CMP3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  285. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  286. </UL>
  287. <P><STRONG><a name="[67]"></a>CMP4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  288. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  289. </UL>
  290. <P><STRONG><a name="[8a]"></a>CTC_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  291. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  292. </UL>
  293. <P><STRONG><a name="[35]"></a>DCU1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  294. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  295. </UL>
  296. <P><STRONG><a name="[36]"></a>DCU2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  297. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  298. </UL>
  299. <P><STRONG><a name="[37]"></a>DCU3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  300. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  301. </UL>
  302. <P><STRONG><a name="[38]"></a>DCU4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  303. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  304. </UL>
  305. <P><STRONG><a name="[2b]"></a>DMA1_Error_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  306. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  307. </UL>
  308. <P><STRONG><a name="[2c]"></a>DMA1_TC0_BTC0_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  309. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  310. </UL>
  311. <P><STRONG><a name="[2d]"></a>DMA1_TC1_BTC1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  312. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  313. </UL>
  314. <P><STRONG><a name="[2e]"></a>DMA1_TC2_BTC2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  315. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  316. </UL>
  317. <P><STRONG><a name="[2f]"></a>DMA1_TC3_BTC3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  318. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  319. </UL>
  320. <P><STRONG><a name="[30]"></a>DMA1_TC4_BTC4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  321. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  322. </UL>
  323. <P><STRONG><a name="[31]"></a>DMA1_TC5_BTC5_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  324. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  325. </UL>
  326. <P><STRONG><a name="[39]"></a>DMA2_Error_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  327. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  328. </UL>
  329. <P><STRONG><a name="[3a]"></a>DMA2_TC0_BTC0_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  330. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  331. </UL>
  332. <P><STRONG><a name="[3b]"></a>DMA2_TC1_BTC1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  333. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  334. </UL>
  335. <P><STRONG><a name="[3c]"></a>DMA2_TC2_BTC2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  336. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  337. </UL>
  338. <P><STRONG><a name="[3d]"></a>DMA2_TC3_BTC3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  339. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  340. </UL>
  341. <P><STRONG><a name="[3e]"></a>DMA2_TC4_BTC4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  342. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  343. </UL>
  344. <P><STRONG><a name="[3f]"></a>DMA2_TC5_BTC5_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  345. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  346. </UL>
  347. <P><STRONG><a name="[33]"></a>EFM_OpEnd_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  348. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  349. </UL>
  350. <P><STRONG><a name="[32]"></a>EFM_PEError_ReadCol_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  351. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  352. </UL>
  353. <P><STRONG><a name="[79]"></a>EMB_GR0_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  354. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  355. </UL>
  356. <P><STRONG><a name="[7a]"></a>EMB_GR1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  357. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  358. </UL>
  359. <P><STRONG><a name="[7b]"></a>EMB_GR2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  360. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  361. </UL>
  362. <P><STRONG><a name="[7c]"></a>EMB_GR3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  363. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  364. </UL>
  365. <P><STRONG><a name="[6f]"></a>EVENT_PORT1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  366. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  367. </UL>
  368. <P><STRONG><a name="[70]"></a>EVENT_PORT2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  369. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  370. </UL>
  371. <P><STRONG><a name="[71]"></a>EVENT_PORT3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  372. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  373. </UL>
  374. <P><STRONG><a name="[72]"></a>EVENT_PORT4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  375. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  376. </UL>
  377. <P><STRONG><a name="[1d]"></a>EXTINT02_SWINT18_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  378. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  379. </UL>
  380. <P><STRONG><a name="[1e]"></a>EXTINT03_SWINT19_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  381. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  382. </UL>
  383. <P><STRONG><a name="[1f]"></a>EXTINT04_SWINT20_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  384. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  385. </UL>
  386. <P><STRONG><a name="[20]"></a>EXTINT05_SWINT21_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  387. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  388. </UL>
  389. <P><STRONG><a name="[21]"></a>EXTINT06_SWINT22_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  390. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  391. </UL>
  392. <P><STRONG><a name="[22]"></a>EXTINT07_SWINT23_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  393. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  394. </UL>
  395. <P><STRONG><a name="[2a]"></a>EXTINT15_SWINT31_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  396. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  397. </UL>
  398. <P><STRONG><a name="[88]"></a>FCM_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  399. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  400. </UL>
  401. <P><STRONG><a name="[62]"></a>I2C1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  402. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  403. </UL>
  404. <P><STRONG><a name="[63]"></a>I2C2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  405. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  406. </UL>
  407. <P><STRONG><a name="[82]"></a>MCAN1_INT1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  408. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  409. </UL>
  410. <P><STRONG><a name="[84]"></a>MCAN2_INT1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  411. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  412. </UL>
  413. <P><STRONG><a name="[86]"></a>PWC_LVD1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  414. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  415. </UL>
  416. <P><STRONG><a name="[87]"></a>PWC_LVD2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  417. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  418. </UL>
  419. <P><STRONG><a name="[44]"></a>PWC_WKTM_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  420. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  421. </UL>
  422. <P><STRONG><a name="[34]"></a>QSPI_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  423. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  424. </UL>
  425. <P><STRONG><a name="[42]"></a>RTC_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  426. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  427. </UL>
  428. <P><STRONG><a name="[6c]"></a>SPI1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  429. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  430. </UL>
  431. <P><STRONG><a name="[77]"></a>SPI2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  432. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  433. </UL>
  434. <P><STRONG><a name="[78]"></a>SPI3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  435. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  436. </UL>
  437. <P><STRONG><a name="[45]"></a>SWDT_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  438. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  439. </UL>
  440. <P><STRONG><a name="[40]"></a>TMR0_1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  441. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  442. </UL>
  443. <P><STRONG><a name="[41]"></a>TMR0_2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  444. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  445. </UL>
  446. <P><STRONG><a name="[56]"></a>TMR4_1_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  447. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  448. </UL>
  449. <P><STRONG><a name="[57]"></a>TMR4_1_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  450. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  451. </UL>
  452. <P><STRONG><a name="[58]"></a>TMR4_1_Reload_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  453. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  454. </UL>
  455. <P><STRONG><a name="[59]"></a>TMR4_1_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  456. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  457. </UL>
  458. <P><STRONG><a name="[5a]"></a>TMR4_2_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  459. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  460. </UL>
  461. <P><STRONG><a name="[5b]"></a>TMR4_2_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  462. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  463. </UL>
  464. <P><STRONG><a name="[5c]"></a>TMR4_2_Reload_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  465. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  466. </UL>
  467. <P><STRONG><a name="[5d]"></a>TMR4_2_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  468. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  469. </UL>
  470. <P><STRONG><a name="[5e]"></a>TMR4_3_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  471. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  472. </UL>
  473. <P><STRONG><a name="[5f]"></a>TMR4_3_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  474. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  475. </UL>
  476. <P><STRONG><a name="[60]"></a>TMR4_3_Reload_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  477. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  478. </UL>
  479. <P><STRONG><a name="[61]"></a>TMR4_3_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  480. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  481. </UL>
  482. <P><STRONG><a name="[46]"></a>TMR6_1_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  483. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  484. </UL>
  485. <P><STRONG><a name="[48]"></a>TMR6_1_GDet_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  486. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  487. </UL>
  488. <P><STRONG><a name="[47]"></a>TMR6_1_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  489. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  490. </UL>
  491. <P><STRONG><a name="[49]"></a>TMR6_1_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  492. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  493. </UL>
  494. <P><STRONG><a name="[4c]"></a>TMR6_2_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  495. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  496. </UL>
  497. <P><STRONG><a name="[4e]"></a>TMR6_2_GDet_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  498. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  499. </UL>
  500. <P><STRONG><a name="[4d]"></a>TMR6_2_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  501. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  502. </UL>
  503. <P><STRONG><a name="[4f]"></a>TMR6_2_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  504. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  505. </UL>
  506. <P><STRONG><a name="[4b]"></a>TMRA_1_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  507. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  508. </UL>
  509. <P><STRONG><a name="[4a]"></a>TMRA_1_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  510. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  511. </UL>
  512. <P><STRONG><a name="[51]"></a>TMRA_2_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  513. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  514. </UL>
  515. <P><STRONG><a name="[50]"></a>TMRA_2_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  516. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  517. </UL>
  518. <P><STRONG><a name="[53]"></a>TMRA_3_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  519. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  520. </UL>
  521. <P><STRONG><a name="[52]"></a>TMRA_3_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  522. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  523. </UL>
  524. <P><STRONG><a name="[55]"></a>TMRA_4_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  525. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  526. </UL>
  527. <P><STRONG><a name="[54]"></a>TMRA_4_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  528. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  529. </UL>
  530. <P><STRONG><a name="[6e]"></a>TMRA_5_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  531. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  532. </UL>
  533. <P><STRONG><a name="[6d]"></a>TMRA_5_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  534. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  535. </UL>
  536. <P><STRONG><a name="[8e]"></a>TRNG_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  537. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  538. </UL>
  539. <P><STRONG><a name="[68]"></a>USART1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  540. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  541. </UL>
  542. <P><STRONG><a name="[69]"></a>USART1_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  543. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  544. </UL>
  545. <P><STRONG><a name="[85]"></a>USART1_WKUP_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  546. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  547. </UL>
  548. <P><STRONG><a name="[6a]"></a>USART2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  549. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  550. </UL>
  551. <P><STRONG><a name="[6b]"></a>USART2_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  552. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  553. </UL>
  554. <P><STRONG><a name="[73]"></a>USART3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  555. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  556. </UL>
  557. <P><STRONG><a name="[74]"></a>USART3_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  558. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  559. </UL>
  560. <P><STRONG><a name="[75]"></a>USART4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  561. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  562. </UL>
  563. <P><STRONG><a name="[76]"></a>USART4_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  564. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  565. </UL>
  566. <P><STRONG><a name="[7d]"></a>USART5_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  567. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  568. </UL>
  569. <P><STRONG><a name="[7e]"></a>USART5_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  570. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  571. </UL>
  572. <P><STRONG><a name="[7f]"></a>USART6_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  573. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  574. </UL>
  575. <P><STRONG><a name="[80]"></a>USART6_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  576. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  577. </UL>
  578. <P><STRONG><a name="[89]"></a>WDT_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
  579. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  580. </UL>
  581. <P><STRONG><a name="[9e]"></a>__aeabi_uldivmod</STRONG> (Thumb, 98 bytes, Stack size 40 bytes, uldiv.o(.text), UNUSED)
  582. <BR><BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  583. <LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  584. </UL>
  585. <BR>[Called By]<UL><LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  586. </UL>
  587. <P><STRONG><a name="[a0]"></a>__aeabi_llsl</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
  588. <BR><BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  589. </UL>
  590. <P><STRONG><a name="[13c]"></a>_ll_shift_l</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
  591. <P><STRONG><a name="[f4]"></a>__aeabi_memcpy</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, memcpya.o(.text))
  592. <BR><BR>[Called By]<UL><LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCopyDataToQueue
  593. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCopyDataFromQueue
  594. </UL>
  595. <P><STRONG><a name="[13d]"></a>__aeabi_memcpy4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED)
  596. <P><STRONG><a name="[13e]"></a>__aeabi_memcpy8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED)
  597. <P><STRONG><a name="[a2]"></a>__aeabi_memset</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, memseta.o(.text))
  598. <BR><BR>[Called By]<UL><LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseNewTask
  599. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;memset
  600. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  601. </UL>
  602. <P><STRONG><a name="[13f]"></a>__aeabi_memset4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  603. <P><STRONG><a name="[140]"></a>__aeabi_memset8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  604. <P><STRONG><a name="[a1]"></a>__aeabi_memclr</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  605. <BR><BR>[Calls]<UL><LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memset
  606. </UL>
  607. <P><STRONG><a name="[141]"></a>__aeabi_memclr4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  608. <P><STRONG><a name="[142]"></a>__aeabi_memclr8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  609. <P><STRONG><a name="[a3]"></a>memset</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, memseta.o(.text), UNUSED)
  610. <BR><BR>[Calls]<UL><LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memset
  611. </UL>
  612. <P><STRONG><a name="[9f]"></a>__aeabi_llsr</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
  613. <BR><BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  614. </UL>
  615. <P><STRONG><a name="[143]"></a>_ll_ushift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
  616. <P><STRONG><a name="[9c]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
  617. <BR><BR>[Calls]<UL><LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__main_after_scatterload
  618. </UL>
  619. <BR>[Called By]<UL><LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_main_scatterload
  620. </UL>
  621. <P><STRONG><a name="[144]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
  622. <P><STRONG><a name="[145]"></a>__decompress</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl.o(.text), UNUSED)
  623. <P><STRONG><a name="[146]"></a>__decompress0</STRONG> (Thumb, 58 bytes, Stack size unknown bytes, __dczerorl.o(.text), UNUSED)
  624. <P><STRONG><a name="[11f]"></a>AOS_SetTriggerEventSrc</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, hc32_ll_aos.o(i.AOS_SetTriggerEventSrc))
  625. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  626. </UL>
  627. <P><STRONG><a name="[ad]"></a>CLK_GetStableStatus</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, hc32_ll_clk.o(i.CLK_GetStableStatus))
  628. <BR><BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_WaitStable
  629. </UL>
  630. <P><STRONG><a name="[a5]"></a>CLK_PLLCmd</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_PLLCmd))
  631. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = CLK_PLLCmd &rArr; CLK_WaitStable
  632. </UL>
  633. <BR>[Calls]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_WaitStable
  634. </UL>
  635. <BR>[Called By]<UL><LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_PLLInit
  636. </UL>
  637. <P><STRONG><a name="[a7]"></a>CLK_PLLInit</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_PLLInit))
  638. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = CLK_PLLInit &rArr; CLK_PLLCmd &rArr; CLK_WaitStable
  639. </UL>
  640. <BR>[Calls]<UL><LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_PLLCmd
  641. </UL>
  642. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  643. </UL>
  644. <P><STRONG><a name="[123]"></a>CLK_PLLStructInit</STRONG> (Thumb, 82 bytes, Stack size 0 bytes, hc32_ll_clk.o(i.CLK_PLLStructInit))
  645. <BR><BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  646. </UL>
  647. <P><STRONG><a name="[a8]"></a>CLK_SetClockDiv</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_SetClockDiv))
  648. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = CLK_SetClockDiv &rArr; SetSysClockDiv &rArr; CLK_Delay
  649. </UL>
  650. <BR>[Calls]<UL><LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SystemCoreClockUpdate
  651. <LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockDiv
  652. </UL>
  653. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  654. </UL>
  655. <P><STRONG><a name="[ab]"></a>CLK_SetSysClockSrc</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, hc32_ll_clk.o(i.CLK_SetSysClockSrc))
  656. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = CLK_SetSysClockSrc &rArr; SetSysClockSrc &rArr; CLK_Delay
  657. </UL>
  658. <BR>[Calls]<UL><LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SystemCoreClockUpdate
  659. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockSrc
  660. </UL>
  661. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  662. </UL>
  663. <P><STRONG><a name="[ae]"></a>CLK_XtalCmd</STRONG> (Thumb, 94 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_XtalCmd))
  664. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = CLK_XtalCmd &rArr; CLK_WaitStable
  665. </UL>
  666. <BR>[Calls]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_WaitStable
  667. </UL>
  668. <BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_XtalInit
  669. </UL>
  670. <P><STRONG><a name="[af]"></a>CLK_XtalInit</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_XtalInit))
  671. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = CLK_XtalInit &rArr; CLK_XtalCmd &rArr; CLK_WaitStable
  672. </UL>
  673. <BR>[Calls]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_XtalCmd
  674. </UL>
  675. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  676. </UL>
  677. <P><STRONG><a name="[122]"></a>CLK_XtalStructInit</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, hc32_ll_clk.o(i.CLK_XtalStructInit))
  678. <BR><BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  679. </UL>
  680. <P><STRONG><a name="[b4]"></a>DMA_ChCmd</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_ChCmd))
  681. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  682. <LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ReloadConfig
  683. </UL>
  684. <P><STRONG><a name="[b5]"></a>DMA_ClearTransCompleteStatus</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_ClearTransCompleteStatus))
  685. <BR><BR>[Called By]<UL><LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_TransCompleteCallback
  686. </UL>
  687. <P><STRONG><a name="[120]"></a>DMA_Cmd</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_Cmd))
  688. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  689. </UL>
  690. <P><STRONG><a name="[11e]"></a>DMA_Init</STRONG> (Thumb, 96 bytes, Stack size 20 bytes, hc32_ll_dma.o(i.DMA_Init))
  691. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = DMA_Init
  692. </UL>
  693. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  694. </UL>
  695. <P><STRONG><a name="[b3]"></a>DMA_SetDestAddr</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_SetDestAddr))
  696. <BR><BR>[Called By]<UL><LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ReloadConfig
  697. </UL>
  698. <P><STRONG><a name="[b1]"></a>DMA_SetSrcAddr</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_SetSrcAddr))
  699. <BR><BR>[Called By]<UL><LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ReloadConfig
  700. </UL>
  701. <P><STRONG><a name="[b2]"></a>DMA_SetTransCount</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, hc32_ll_dma.o(i.DMA_SetTransCount))
  702. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DMA_SetTransCount
  703. </UL>
  704. <BR>[Called By]<UL><LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ReloadConfig
  705. </UL>
  706. <P><STRONG><a name="[11d]"></a>DMA_StructInit</STRONG> (Thumb, 34 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_StructInit))
  707. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  708. </UL>
  709. <P><STRONG><a name="[125]"></a>EFM_SetWaitCycle</STRONG> (Thumb, 68 bytes, Stack size 0 bytes, hc32_ll_efm.o(i.EFM_SetWaitCycle))
  710. <BR><BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  711. </UL>
  712. <P><STRONG><a name="[1b]"></a>EXTINT00_SWINT16_Handler</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT00_SWINT16_Handler))
  713. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT00_SWINT16_Handler
  714. </UL>
  715. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  716. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  717. </UL>
  718. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  719. </UL>
  720. <P><STRONG><a name="[1c]"></a>EXTINT01_SWINT17_Handler</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT01_SWINT17_Handler))
  721. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = EXTINT01_SWINT17_Handler &rArr; __2printf
  722. </UL>
  723. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  724. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  725. <LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2printf
  726. </UL>
  727. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  728. </UL>
  729. <P><STRONG><a name="[23]"></a>EXTINT08_SWINT24_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT08_SWINT24_Handler))
  730. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT08_SWINT24_Handler
  731. </UL>
  732. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  733. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  734. </UL>
  735. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  736. </UL>
  737. <P><STRONG><a name="[24]"></a>EXTINT09_SWINT25_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT09_SWINT25_Handler))
  738. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT09_SWINT25_Handler
  739. </UL>
  740. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  741. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  742. </UL>
  743. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  744. </UL>
  745. <P><STRONG><a name="[25]"></a>EXTINT10_SWINT26_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT10_SWINT26_Handler))
  746. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT10_SWINT26_Handler
  747. </UL>
  748. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  749. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  750. </UL>
  751. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  752. </UL>
  753. <P><STRONG><a name="[26]"></a>EXTINT11_SWINT27_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT11_SWINT27_Handler))
  754. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT11_SWINT27_Handler
  755. </UL>
  756. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  757. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  758. </UL>
  759. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  760. </UL>
  761. <P><STRONG><a name="[27]"></a>EXTINT12_SWINT28_Handler</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT12_SWINT28_Handler))
  762. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT12_SWINT28_Handler
  763. </UL>
  764. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ReadInputPins
  765. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  766. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  767. </UL>
  768. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  769. </UL>
  770. <P><STRONG><a name="[28]"></a>EXTINT13_SWINT29_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT13_SWINT29_Handler))
  771. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT13_SWINT29_Handler
  772. </UL>
  773. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  774. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  775. </UL>
  776. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  777. </UL>
  778. <P><STRONG><a name="[29]"></a>EXTINT14_SWINT30_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT14_SWINT30_Handler))
  779. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT14_SWINT30_Handler
  780. </UL>
  781. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_GetExtIntStatus
  782. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT_ClearExtIntStatus
  783. </UL>
  784. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  785. </UL>
  786. <P><STRONG><a name="[b7]"></a>EXTINT_ClearExtIntStatus</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, hc32_ll_interrupts.o(i.EXTINT_ClearExtIntStatus))
  787. <BR><BR>[Called By]<UL><LI><a href="#[29]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT14_SWINT30_Handler
  788. <LI><a href="#[28]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT13_SWINT29_Handler
  789. <LI><a href="#[27]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT12_SWINT28_Handler
  790. <LI><a href="#[26]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT11_SWINT27_Handler
  791. <LI><a href="#[25]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT10_SWINT26_Handler
  792. <LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT09_SWINT25_Handler
  793. <LI><a href="#[23]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT08_SWINT24_Handler
  794. <LI><a href="#[1c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT01_SWINT17_Handler
  795. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT00_SWINT16_Handler
  796. </UL>
  797. <P><STRONG><a name="[b6]"></a>EXTINT_GetExtIntStatus</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, hc32_ll_interrupts.o(i.EXTINT_GetExtIntStatus))
  798. <BR><BR>[Called By]<UL><LI><a href="#[29]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT14_SWINT30_Handler
  799. <LI><a href="#[28]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT13_SWINT29_Handler
  800. <LI><a href="#[27]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT12_SWINT28_Handler
  801. <LI><a href="#[26]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT11_SWINT27_Handler
  802. <LI><a href="#[25]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT10_SWINT26_Handler
  803. <LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT09_SWINT25_Handler
  804. <LI><a href="#[23]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT08_SWINT24_Handler
  805. <LI><a href="#[1c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT01_SWINT17_Handler
  806. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT00_SWINT16_Handler
  807. </UL>
  808. <P><STRONG><a name="[11c]"></a>FCG_Fcg0PeriphClockCmd</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, hc32_ll_fcg.o(i.FCG_Fcg0PeriphClockCmd))
  809. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  810. </UL>
  811. <P><STRONG><a name="[115]"></a>FCG_Fcg1PeriphClockCmd</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, hc32_ll_fcg.o(i.FCG_Fcg1PeriphClockCmd))
  812. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  813. </UL>
  814. <P><STRONG><a name="[121]"></a>GPIO_AnalogCmd</STRONG> (Thumb, 60 bytes, Stack size 12 bytes, hc32_ll_gpio.o(i.GPIO_AnalogCmd))
  815. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = GPIO_AnalogCmd
  816. </UL>
  817. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  818. </UL>
  819. <P><STRONG><a name="[c5]"></a>GPIO_Init</STRONG> (Thumb, 174 bytes, Stack size 24 bytes, hc32_ll_gpio.o(i.GPIO_Init))
  820. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = GPIO_Init
  821. </UL>
  822. <BR>[Called By]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mpu_ctr_init
  823. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic1_init
  824. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_OUT1
  825. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_IN1
  826. </UL>
  827. <P><STRONG><a name="[b9]"></a>GPIO_ReadInputPins</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hc32_ll_gpio.o(i.GPIO_ReadInputPins))
  828. <BR><BR>[Called By]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  829. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_recive_byte
  830. <LI><a href="#[27]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT12_SWINT28_Handler
  831. </UL>
  832. <P><STRONG><a name="[d6]"></a>GPIO_ResetPins</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hc32_ll_gpio.o(i.GPIO_ResetPins))
  833. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = GPIO_ResetPins
  834. </UL>
  835. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mpu_task
  836. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  837. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  838. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_start
  839. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_send_byte
  840. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_recive_byte
  841. </UL>
  842. <P><STRONG><a name="[114]"></a>GPIO_SetFunc</STRONG> (Thumb, 38 bytes, Stack size 12 bytes, hc32_ll_gpio.o(i.GPIO_SetFunc))
  843. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = GPIO_SetFunc
  844. </UL>
  845. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  846. </UL>
  847. <P><STRONG><a name="[d4]"></a>GPIO_SetPins</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hc32_ll_gpio.o(i.GPIO_SetPins))
  848. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = GPIO_SetPins
  849. </UL>
  850. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mpu_task
  851. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  852. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  853. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_start
  854. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_send_byte
  855. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_recive_byte
  856. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic1_init
  857. </UL>
  858. <P><STRONG><a name="[126]"></a>GPIO_SetReadWaitCycle</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, hc32_ll_gpio.o(i.GPIO_SetReadWaitCycle))
  859. <BR><BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  860. </UL>
  861. <P><STRONG><a name="[d3]"></a>GPIO_StructInit</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, hc32_ll_gpio.o(i.GPIO_StructInit))
  862. <BR><BR>[Called By]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mpu_ctr_init
  863. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic1_init
  864. </UL>
  865. <P><STRONG><a name="[117]"></a>INTC_IrqSignIn</STRONG> (Thumb, 100 bytes, Stack size 12 bytes, hc32_ll_interrupts.o(i.INTC_IrqSignIn))
  866. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = INTC_IrqSignIn
  867. </UL>
  868. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  869. </UL>
  870. <P><STRONG><a name="[b]"></a>IRQ000_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ000_Handler))
  871. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ000_Handler
  872. </UL>
  873. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  874. </UL>
  875. <P><STRONG><a name="[c]"></a>IRQ001_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ001_Handler))
  876. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ001_Handler
  877. </UL>
  878. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  879. </UL>
  880. <P><STRONG><a name="[d]"></a>IRQ002_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ002_Handler))
  881. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ002_Handler
  882. </UL>
  883. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  884. </UL>
  885. <P><STRONG><a name="[e]"></a>IRQ003_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ003_Handler))
  886. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ003_Handler
  887. </UL>
  888. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  889. </UL>
  890. <P><STRONG><a name="[f]"></a>IRQ004_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ004_Handler))
  891. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ004_Handler
  892. </UL>
  893. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  894. </UL>
  895. <P><STRONG><a name="[10]"></a>IRQ005_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ005_Handler))
  896. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ005_Handler
  897. </UL>
  898. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  899. </UL>
  900. <P><STRONG><a name="[11]"></a>IRQ006_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ006_Handler))
  901. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ006_Handler
  902. </UL>
  903. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  904. </UL>
  905. <P><STRONG><a name="[12]"></a>IRQ007_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ007_Handler))
  906. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ007_Handler
  907. </UL>
  908. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  909. </UL>
  910. <P><STRONG><a name="[13]"></a>IRQ008_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ008_Handler))
  911. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ008_Handler
  912. </UL>
  913. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  914. </UL>
  915. <P><STRONG><a name="[14]"></a>IRQ009_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ009_Handler))
  916. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ009_Handler
  917. </UL>
  918. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  919. </UL>
  920. <P><STRONG><a name="[15]"></a>IRQ010_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ010_Handler))
  921. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ010_Handler
  922. </UL>
  923. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  924. </UL>
  925. <P><STRONG><a name="[16]"></a>IRQ011_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ011_Handler))
  926. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ011_Handler
  927. </UL>
  928. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  929. </UL>
  930. <P><STRONG><a name="[17]"></a>IRQ012_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ012_Handler))
  931. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ012_Handler
  932. </UL>
  933. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  934. </UL>
  935. <P><STRONG><a name="[18]"></a>IRQ013_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ013_Handler))
  936. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ013_Handler
  937. </UL>
  938. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  939. </UL>
  940. <P><STRONG><a name="[19]"></a>IRQ014_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ014_Handler))
  941. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ014_Handler
  942. </UL>
  943. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  944. </UL>
  945. <P><STRONG><a name="[1a]"></a>IRQ015_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ015_Handler))
  946. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ015_Handler
  947. </UL>
  948. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  949. </UL>
  950. <P><STRONG><a name="[ba]"></a>LL_PERIPH_WE</STRONG> (Thumb, 122 bytes, Stack size 8 bytes, hc32_ll.o(i.LL_PERIPH_WE))
  951. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = LL_PERIPH_WE
  952. </UL>
  953. <BR>[Calls]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PWC_REG_Unlock
  954. </UL>
  955. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  956. </UL>
  957. <P><STRONG><a name="[bc]"></a>LL_PERIPH_WP</STRONG> (Thumb, 114 bytes, Stack size 8 bytes, hc32_ll.o(i.LL_PERIPH_WP))
  958. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = LL_PERIPH_WP
  959. </UL>
  960. <BR>[Calls]<UL><LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PWC_REG_Lock
  961. </UL>
  962. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  963. </UL>
  964. <P><STRONG><a name="[81]"></a>MCAN1_INT0_Handler</STRONG> (Thumb, 384 bytes, Stack size 136 bytes, hal_can.o(i.MCAN1_INT0_Handler))
  965. <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = MCAN1_INT0_Handler &rArr; xQueueGenericSendFromISR &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  966. </UL>
  967. <BR>[Calls]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericSendFromISR
  968. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_GetStatus
  969. <LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_GetRxMsg
  970. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_EnableTxBufferRequest
  971. <LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_ClearStatus
  972. <LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2printf
  973. </UL>
  974. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  975. </UL>
  976. <P><STRONG><a name="[83]"></a>MCAN2_INT0_Handler</STRONG> (Thumb, 332 bytes, Stack size 136 bytes, hal_can.o(i.MCAN2_INT0_Handler))
  977. <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = MCAN2_INT0_Handler &rArr; xQueueGenericSendFromISR &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  978. </UL>
  979. <BR>[Calls]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericSendFromISR
  980. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_GetStatus
  981. <LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_GetRxMsg
  982. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_EnableTxBufferRequest
  983. <LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_ClearStatus
  984. <LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2printf
  985. </UL>
  986. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  987. </UL>
  988. <P><STRONG><a name="[bf]"></a>MCAN_ClearStatus</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_ClearStatus))
  989. <BR><BR>[Called By]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN2_INT0_Handler
  990. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN1_INT0_Handler
  991. </UL>
  992. <P><STRONG><a name="[c2]"></a>MCAN_EnableTxBufferRequest</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_EnableTxBufferRequest))
  993. <BR><BR>[Called By]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN2_INT0_Handler
  994. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN1_INT0_Handler
  995. </UL>
  996. <P><STRONG><a name="[c0]"></a>MCAN_GetRxMsg</STRONG> (Thumb, 500 bytes, Stack size 48 bytes, hc32_ll_mcan.o(i.MCAN_GetRxMsg))
  997. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = MCAN_GetRxMsg
  998. </UL>
  999. <BR>[Calls]<UL><LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_GetRxBufferNum
  1000. </UL>
  1001. <BR>[Called By]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN2_INT0_Handler
  1002. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN1_INT0_Handler
  1003. </UL>
  1004. <P><STRONG><a name="[be]"></a>MCAN_GetStatus</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_GetStatus))
  1005. <BR><BR>[Called By]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN2_INT0_Handler
  1006. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN1_INT0_Handler
  1007. </UL>
  1008. <P><STRONG><a name="[11b]"></a>SPI_Init</STRONG> (Thumb, 120 bytes, Stack size 12 bytes, hc32_ll_spi.o(i.SPI_Init))
  1009. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = SPI_Init
  1010. </UL>
  1011. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  1012. </UL>
  1013. <P><STRONG><a name="[116]"></a>SPI_StructInit</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, hc32_ll_spi.o(i.SPI_StructInit))
  1014. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  1015. </UL>
  1016. <P><STRONG><a name="[124]"></a>SRAM_SetWaitCycle</STRONG> (Thumb, 88 bytes, Stack size 8 bytes, hc32_ll_sram.o(i.SRAM_SetWaitCycle))
  1017. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SRAM_SetWaitCycle
  1018. </UL>
  1019. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  1020. </UL>
  1021. <P><STRONG><a name="[a]"></a>SysTick_Handler</STRONG> (Thumb, 46 bytes, Stack size 8 bytes, port.o(i.SysTick_Handler))
  1022. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = SysTick_Handler &rArr; xTaskIncrementTick
  1023. </UL>
  1024. <BR>[Calls]<UL><LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskIncrementTick
  1025. </UL>
  1026. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
  1027. </UL>
  1028. <P><STRONG><a name="[aa]"></a>SystemCoreClockUpdate</STRONG> (Thumb, 174 bytes, Stack size 16 bytes, system_hc32f448mcti.o(i.SystemCoreClockUpdate))
  1029. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = SystemCoreClockUpdate
  1030. </UL>
  1031. <BR>[Called By]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SystemInit
  1032. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_SetClockDiv
  1033. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_SetSysClockSrc
  1034. </UL>
  1035. <P><STRONG><a name="[90]"></a>SystemInit</STRONG> (Thumb, 30 bytes, Stack size 4 bytes, system_hc32f448mcti.o(i.SystemInit))
  1036. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = SystemInit &rArr; SystemCoreClockUpdate
  1037. </UL>
  1038. <BR>[Calls]<UL><LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SystemCoreClockUpdate
  1039. </UL>
  1040. <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(.text)
  1041. </UL>
  1042. <P><STRONG><a name="[cc]"></a>USART_GetStatus</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hc32_ll_usart.o(i.USART_GetStatus))
  1043. <BR><BR>[Called By]<UL><LI><a href="#[ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_WaitStatus
  1044. </UL>
  1045. <P><STRONG><a name="[c9]"></a>USART_UART_Trans</STRONG> (Thumb, 118 bytes, Stack size 32 bytes, hc32_ll_usart.o(i.USART_UART_Trans))
  1046. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = USART_UART_Trans &rArr; USART_WaitStatus
  1047. </UL>
  1048. <BR>[Calls]<UL><LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_WriteData
  1049. <LI><a href="#[ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_WaitStatus
  1050. </UL>
  1051. <BR>[Called By]<UL><LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;fputc
  1052. </UL>
  1053. <P><STRONG><a name="[cb]"></a>USART_WriteData</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hc32_ll_usart.o(i.USART_WriteData))
  1054. <BR><BR>[Called By]<UL><LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_UART_Trans
  1055. </UL>
  1056. <P><STRONG><a name="[cd]"></a>__0printf$8</STRONG> (Thumb, 22 bytes, Stack size 24 bytes, printf8.o(i.__0printf$8), UNUSED)
  1057. <BR><BR>[Calls]<UL><LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  1058. </UL>
  1059. <P><STRONG><a name="[147]"></a>__1printf$8</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printf8.o(i.__0printf$8), UNUSED)
  1060. <P><STRONG><a name="[b8]"></a>__2printf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printf8.o(i.__0printf$8))
  1061. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = __2printf
  1062. </UL>
  1063. <BR>[Called By]<UL><LI><a href="#[1c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTINT01_SWINT17_Handler
  1064. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN2_INT0_Handler
  1065. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN1_INT0_Handler
  1066. </UL>
  1067. <P><STRONG><a name="[148]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
  1068. <P><STRONG><a name="[149]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
  1069. <P><STRONG><a name="[14a]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
  1070. <P><STRONG><a name="[127]"></a>eTaskConfirmSleepModeStatus</STRONG> (Thumb, 52 bytes, Stack size 0 bytes, tasks.o(i.eTaskConfirmSleepModeStatus))
  1071. <BR><BR>[Called By]<UL><LI><a href="#[fa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortSuppressTicksAndSleep
  1072. </UL>
  1073. <P><STRONG><a name="[94]"></a>ec600g_task</STRONG> (Thumb, 36 bytes, Stack size 24 bytes, hal_ec600g.o(i.ec600g_task))
  1074. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = ec600g_task &rArr; vTaskDelay &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1075. </UL>
  1076. <BR>[Calls]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskDelay
  1077. <LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ReloadConfig
  1078. </UL>
  1079. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  1080. </UL>
  1081. <P><STRONG><a name="[92]"></a>fputc</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, hal_clk_func.o(i.fputc))
  1082. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = fputc &rArr; USART_UART_Trans &rArr; USART_WaitStatus
  1083. </UL>
  1084. <BR>[Calls]<UL><LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_UART_Trans
  1085. </UL>
  1086. <BR>[Address Reference Count : 1]<UL><LI> printf8.o(i.__0printf$8)
  1087. </UL>
  1088. <P><STRONG><a name="[8f]"></a>main</STRONG> (Thumb, 136 bytes, Stack size 16 bytes, main.o(i.main))
  1089. <BR><BR>[Stack]<UL><LI>Max Depth = 184<LI>Call Chain = main &rArr; vTaskStartScheduler &rArr; xTimerCreateTimerTask &rArr; xTaskCreate &rArr; pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1090. </UL>
  1091. <BR>[Calls]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1092. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskStartScheduler
  1093. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sys_clk_init
  1094. <LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  1095. <LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_init
  1096. <LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;LL_PERIPH_WP
  1097. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;LL_PERIPH_WE
  1098. <LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mpu_ctr_init
  1099. </UL>
  1100. <BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
  1101. </UL>
  1102. <P><STRONG><a name="[de]"></a>mpu_ctr_init</STRONG> (Thumb, 48 bytes, Stack size 32 bytes, main.o(i.mpu_ctr_init))
  1103. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = mpu_ctr_init &rArr; GPIO_Init
  1104. </UL>
  1105. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_StructInit
  1106. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  1107. </UL>
  1108. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1109. </UL>
  1110. <P><STRONG><a name="[95]"></a>mpu_task</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, main.o(i.mpu_task))
  1111. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = mpu_task &rArr; vTaskDelay &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1112. </UL>
  1113. <BR>[Calls]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskDelay
  1114. <LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1115. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetPins
  1116. </UL>
  1117. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  1118. </UL>
  1119. <P><STRONG><a name="[df]"></a>nca9555_init</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, hal_nca9555.o(i.nca9555_init))
  1120. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = nca9555_init &rArr; iic1_init &rArr; GPIO_Init
  1121. </UL>
  1122. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic1_init
  1123. </UL>
  1124. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1125. </UL>
  1126. <P><STRONG><a name="[e2]"></a>nca9555_read_byte</STRONG> (Thumb, 78 bytes, Stack size 24 bytes, hal_nca9555.o(i.nca9555_read_byte))
  1127. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = nca9555_read_byte &rArr; iic_wait_ack &rArr; iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1128. </UL>
  1129. <BR>[Calls]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  1130. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  1131. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_start
  1132. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_send_byte
  1133. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_recive_byte
  1134. </UL>
  1135. <BR>[Called By]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_set_output_mode
  1136. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_set_gpio_output_status
  1137. </UL>
  1138. <P><STRONG><a name="[e3]"></a>nca9555_set_gpio_output_status</STRONG> (Thumb, 140 bytes, Stack size 24 bytes, hal_nca9555.o(i.nca9555_set_gpio_output_status))
  1139. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = nca9555_set_gpio_output_status &rArr; nca9555_write_byte &rArr; iic_wait_ack &rArr; iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1140. </UL>
  1141. <BR>[Calls]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_write_byte
  1142. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1143. </UL>
  1144. <BR>[Called By]<UL><LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_task
  1145. </UL>
  1146. <P><STRONG><a name="[e5]"></a>nca9555_set_output_mode</STRONG> (Thumb, 94 bytes, Stack size 24 bytes, hal_nca9555.o(i.nca9555_set_output_mode))
  1147. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = nca9555_set_output_mode &rArr; nca9555_write_byte &rArr; iic_wait_ack &rArr; iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1148. </UL>
  1149. <BR>[Calls]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_write_byte
  1150. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1151. </UL>
  1152. <BR>[Called By]<UL><LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_task
  1153. </UL>
  1154. <P><STRONG><a name="[93]"></a>nca9555_task</STRONG> (Thumb, 54 bytes, Stack size 0 bytes, hal_nca9555.o(i.nca9555_task))
  1155. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = nca9555_task &rArr; nca9555_set_output_mode &rArr; nca9555_write_byte &rArr; iic_wait_ack &rArr; iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1156. </UL>
  1157. <BR>[Calls]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskDelay
  1158. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_set_output_mode
  1159. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_set_gpio_output_status
  1160. </UL>
  1161. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  1162. </UL>
  1163. <P><STRONG><a name="[e4]"></a>nca9555_write_byte</STRONG> (Thumb, 62 bytes, Stack size 24 bytes, hal_nca9555.o(i.nca9555_write_byte))
  1164. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = nca9555_write_byte &rArr; iic_wait_ack &rArr; iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1165. </UL>
  1166. <BR>[Calls]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  1167. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  1168. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_start
  1169. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_send_byte
  1170. </UL>
  1171. <BR>[Called By]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_set_output_mode
  1172. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_set_gpio_output_status
  1173. </UL>
  1174. <P><STRONG><a name="[111]"></a>pvPortMalloc</STRONG> (Thumb, 338 bytes, Stack size 24 bytes, heap_4.o(i.pvPortMalloc))
  1175. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1176. </UL>
  1177. <BR>[Calls]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1178. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSuspendAll
  1179. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInsertBlockIntoFreeList
  1180. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvHeapInit
  1181. </UL>
  1182. <BR>[Called By]<UL><LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericCreate
  1183. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1184. </UL>
  1185. <P><STRONG><a name="[100]"></a>pxPortInitialiseStack</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, port.o(i.pxPortInitialiseStack))
  1186. <BR><BR>[Called By]<UL><LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseNewTask
  1187. </UL>
  1188. <P><STRONG><a name="[dd]"></a>spi_mpu_init_hc</STRONG> (Thumb, 352 bytes, Stack size 88 bytes, hal_ec600g.o(i.spi_mpu_init_hc))
  1189. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = spi_mpu_init_hc &rArr; DMA_Init
  1190. </UL>
  1191. <BR>[Calls]<UL><LI><a href="#[117]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;INTC_IrqSignIn
  1192. <LI><a href="#[11c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FCG_Fcg0PeriphClockCmd
  1193. <LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_StructInit
  1194. <LI><a href="#[11e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Init
  1195. <LI><a href="#[120]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  1196. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ChCmd
  1197. <LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AOS_SetTriggerEventSrc
  1198. <LI><a href="#[116]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_StructInit
  1199. <LI><a href="#[11b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_Init
  1200. <LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetFunc
  1201. <LI><a href="#[115]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FCG_Fcg1PeriphClockCmd
  1202. <LI><a href="#[119]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_SetPriority
  1203. <LI><a href="#[11a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_EnableIRQ
  1204. <LI><a href="#[118]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_ClearPendingIRQ
  1205. </UL>
  1206. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1207. </UL>
  1208. <P><STRONG><a name="[dc]"></a>sys_clk_init</STRONG> (Thumb, 180 bytes, Stack size 16 bytes, hal_clk_func.o(i.sys_clk_init))
  1209. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = sys_clk_init &rArr; CLK_SetClockDiv &rArr; SetSysClockDiv &rArr; CLK_Delay
  1210. </UL>
  1211. <BR>[Calls]<UL><LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_SetClockDiv
  1212. <LI><a href="#[124]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SRAM_SetWaitCycle
  1213. <LI><a href="#[126]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetReadWaitCycle
  1214. <LI><a href="#[121]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_AnalogCmd
  1215. <LI><a href="#[125]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EFM_SetWaitCycle
  1216. <LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_XtalStructInit
  1217. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_XtalInit
  1218. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_SetSysClockSrc
  1219. <LI><a href="#[123]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_PLLStructInit
  1220. <LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_PLLInit
  1221. </UL>
  1222. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1223. </UL>
  1224. <P><STRONG><a name="[e7]"></a>uxListRemove</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, list.o(i.uxListRemove))
  1225. <BR><BR>[Called By]<UL><LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1226. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessExpiredTimer
  1227. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckTasksWaitingTermination
  1228. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddCurrentTaskToDelayedList
  1229. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskPriorityDisinherit
  1230. </UL>
  1231. <P><STRONG><a name="[ee]"></a>vListInitialise</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, list.o(i.vListInitialise))
  1232. <BR><BR>[Called By]<UL><LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckForValidListAndQueue
  1233. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseTaskLists
  1234. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericReset
  1235. </UL>
  1236. <P><STRONG><a name="[ff]"></a>vListInitialiseItem</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, list.o(i.vListInitialiseItem))
  1237. <BR><BR>[Called By]<UL><LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseNewTask
  1238. </UL>
  1239. <P><STRONG><a name="[e8]"></a>vListInsert</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, list.o(i.vListInsert))
  1240. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = vListInsert
  1241. </UL>
  1242. <BR>[Called By]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInsertTimerInActiveList
  1243. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddCurrentTaskToDelayedList
  1244. <LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskPlaceOnEventList
  1245. </UL>
  1246. <P><STRONG><a name="[ea]"></a>vPortEnterCritical</STRONG> (Thumb, 76 bytes, Stack size 0 bytes, port.o(i.vPortEnterCritical))
  1247. <BR><BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1248. <LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1249. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckForValidListAndQueue
  1250. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckTasksWaitingTermination
  1251. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddNewTaskToReadyList
  1252. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCheckForTimeOut
  1253. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericReset
  1254. <LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vQueueWaitForMessageRestricted
  1255. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1256. <LI><a href="#[102]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIsQueueEmpty
  1257. </UL>
  1258. <P><STRONG><a name="[ec]"></a>vPortExitCritical</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, port.o(i.vPortExitCritical))
  1259. <BR><BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1260. <LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1261. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckForValidListAndQueue
  1262. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckTasksWaitingTermination
  1263. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddNewTaskToReadyList
  1264. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCheckForTimeOut
  1265. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericReset
  1266. <LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vQueueWaitForMessageRestricted
  1267. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1268. <LI><a href="#[102]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIsQueueEmpty
  1269. </UL>
  1270. <P><STRONG><a name="[f7]"></a>vPortFree</STRONG> (Thumb, 150 bytes, Stack size 16 bytes, heap_4.o(i.vPortFree))
  1271. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = vPortFree &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1272. </UL>
  1273. <BR>[Calls]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1274. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSuspendAll
  1275. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInsertBlockIntoFreeList
  1276. </UL>
  1277. <BR>[Called By]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1278. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1279. <LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvDeleteTCB
  1280. </UL>
  1281. <P><STRONG><a name="[12f]"></a>vPortSetupTimerInterrupt</STRONG> (Thumb, 86 bytes, Stack size 0 bytes, port.o(i.vPortSetupTimerInterrupt))
  1282. <BR><BR>[Called By]<UL><LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xPortStartScheduler
  1283. </UL>
  1284. <P><STRONG><a name="[fa]"></a>vPortSuppressTicksAndSleep</STRONG> (Thumb, 320 bytes, Stack size 24 bytes, port.o(i.vPortSuppressTicksAndSleep))
  1285. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = vPortSuppressTicksAndSleep
  1286. </UL>
  1287. <BR>[Calls]<UL><LI><a href="#[128]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskStepTick
  1288. <LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;eTaskConfirmSleepModeStatus
  1289. </UL>
  1290. <BR>[Called By]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIdleTask
  1291. </UL>
  1292. <P><STRONG><a name="[129]"></a>vPortValidateInterruptPriority</STRONG> (Thumb, 106 bytes, Stack size 16 bytes, port.o(i.vPortValidateInterruptPriority))
  1293. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = vPortValidateInterruptPriority
  1294. </UL>
  1295. <BR>[Calls]<UL><LI><a href="#[12a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortGetIPSR
  1296. </UL>
  1297. <BR>[Called By]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericSendFromISR
  1298. </UL>
  1299. <P><STRONG><a name="[f0]"></a>vQueueAddToRegistry</STRONG> (Thumb, 90 bytes, Stack size 12 bytes, queue.o(i.vQueueAddToRegistry))
  1300. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = vQueueAddToRegistry
  1301. </UL>
  1302. <BR>[Called By]<UL><LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckForValidListAndQueue
  1303. </UL>
  1304. <P><STRONG><a name="[10b]"></a>vQueueWaitForMessageRestricted</STRONG> (Thumb, 74 bytes, Stack size 24 bytes, queue.o(i.vQueueWaitForMessageRestricted))
  1305. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = vQueueWaitForMessageRestricted &rArr; prvUnlockQueue &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1306. </UL>
  1307. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1308. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1309. <LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskPlaceOnEventListRestricted
  1310. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1311. </UL>
  1312. <BR>[Called By]<UL><LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessTimerOrBlockTask
  1313. </UL>
  1314. <P><STRONG><a name="[d1]"></a>vTaskDelay</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, tasks.o(i.vTaskDelay))
  1315. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = vTaskDelay &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1316. </UL>
  1317. <BR>[Calls]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1318. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSuspendAll
  1319. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddCurrentTaskToDelayedList
  1320. </UL>
  1321. <BR>[Called By]<UL><LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_task
  1322. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ec600g_task
  1323. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mpu_task
  1324. </UL>
  1325. <P><STRONG><a name="[133]"></a>vTaskInternalSetTimeOutState</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, tasks.o(i.vTaskInternalSetTimeOutState))
  1326. <BR><BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1327. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCheckForTimeOut
  1328. </UL>
  1329. <P><STRONG><a name="[110]"></a>vTaskMissedYield</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, tasks.o(i.vTaskMissedYield))
  1330. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1331. </UL>
  1332. <P><STRONG><a name="[12c]"></a>vTaskPlaceOnEventList</STRONG> (Thumb, 52 bytes, Stack size 16 bytes, tasks.o(i.vTaskPlaceOnEventList))
  1333. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = vTaskPlaceOnEventList &rArr; prvAddCurrentTaskToDelayedList &rArr; vListInsert
  1334. </UL>
  1335. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInsert
  1336. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddCurrentTaskToDelayedList
  1337. </UL>
  1338. <BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1339. </UL>
  1340. <P><STRONG><a name="[12b]"></a>vTaskPlaceOnEventListRestricted</STRONG> (Thumb, 94 bytes, Stack size 16 bytes, tasks.o(i.vTaskPlaceOnEventListRestricted))
  1341. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = vTaskPlaceOnEventListRestricted &rArr; prvAddCurrentTaskToDelayedList &rArr; vListInsert
  1342. </UL>
  1343. <BR>[Calls]<UL><LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddCurrentTaskToDelayedList
  1344. </UL>
  1345. <BR>[Called By]<UL><LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vQueueWaitForMessageRestricted
  1346. </UL>
  1347. <P><STRONG><a name="[e1]"></a>vTaskStartScheduler</STRONG> (Thumb, 122 bytes, Stack size 16 bytes, tasks.o(i.vTaskStartScheduler))
  1348. <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = vTaskStartScheduler &rArr; xTimerCreateTimerTask &rArr; xTaskCreate &rArr; pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1349. </UL>
  1350. <BR>[Calls]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1351. <LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTimerCreateTimerTask
  1352. <LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xPortStartScheduler
  1353. </UL>
  1354. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1355. </UL>
  1356. <P><STRONG><a name="[128]"></a>vTaskStepTick</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, tasks.o(i.vTaskStepTick))
  1357. <BR><BR>[Called By]<UL><LI><a href="#[fa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortSuppressTicksAndSleep
  1358. </UL>
  1359. <P><STRONG><a name="[f9]"></a>vTaskSuspendAll</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, tasks.o(i.vTaskSuspendAll))
  1360. <BR><BR>[Called By]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskDelay
  1361. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1362. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortFree
  1363. <LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pvPortMalloc
  1364. <LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessTimerOrBlockTask
  1365. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIdleTask
  1366. </UL>
  1367. <P><STRONG><a name="[9d]"></a>vTaskSwitchContext</STRONG> (Thumb, 118 bytes, Stack size 0 bytes, tasks.o(i.vTaskSwitchContext))
  1368. <BR><BR>[Called By]<UL><LI><a href="#[9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PendSV_Handler
  1369. </UL>
  1370. <P><STRONG><a name="[12e]"></a>xPortStartScheduler</STRONG> (Thumb, 330 bytes, Stack size 16 bytes, port.o(i.xPortStartScheduler))
  1371. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xPortStartScheduler
  1372. </UL>
  1373. <BR>[Calls]<UL><LI><a href="#[12f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortSetupTimerInterrupt
  1374. <LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__asm___6_port_c_39a90d8d__prvEnableVFP
  1375. <LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__asm___6_port_c_39a90d8d__prvStartFirstTask
  1376. </UL>
  1377. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskStartScheduler
  1378. </UL>
  1379. <P><STRONG><a name="[ef]"></a>xQueueGenericCreate</STRONG> (Thumb, 102 bytes, Stack size 32 bytes, queue.o(i.xQueueGenericCreate))
  1380. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = xQueueGenericCreate &rArr; pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1381. </UL>
  1382. <BR>[Calls]<UL><LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pvPortMalloc
  1383. <LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseNewQueue
  1384. </UL>
  1385. <BR>[Called By]<UL><LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckForValidListAndQueue
  1386. </UL>
  1387. <P><STRONG><a name="[fd]"></a>xQueueGenericReset</STRONG> (Thumb, 214 bytes, Stack size 24 bytes, queue.o(i.xQueueGenericReset))
  1388. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = xQueueGenericReset &rArr; xTaskRemoveFromEventList
  1389. </UL>
  1390. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1391. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1392. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInitialise
  1393. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskRemoveFromEventList
  1394. </UL>
  1395. <BR>[Called By]<UL><LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseNewQueue
  1396. </UL>
  1397. <P><STRONG><a name="[c1]"></a>xQueueGenericSendFromISR</STRONG> (Thumb, 310 bytes, Stack size 40 bytes, queue.o(i.xQueueGenericSendFromISR))
  1398. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = xQueueGenericSendFromISR &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1399. </UL>
  1400. <BR>[Calls]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskRemoveFromEventList
  1401. <LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortValidateInterruptPriority
  1402. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvNotifyQueueSetContainer
  1403. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCopyDataToQueue
  1404. </UL>
  1405. <BR>[Called By]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN2_INT0_Handler
  1406. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN1_INT0_Handler
  1407. </UL>
  1408. <P><STRONG><a name="[109]"></a>xQueueReceive</STRONG> (Thumb, 356 bytes, Stack size 48 bytes, queue.o(i.xQueueReceive))
  1409. <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = xQueueReceive &rArr; prvUnlockQueue &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1410. </UL>
  1411. <BR>[Calls]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1412. <LI><a href="#[132]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskGetSchedulerState
  1413. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSuspendAll
  1414. <LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1415. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1416. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskRemoveFromEventList
  1417. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCheckForTimeOut
  1418. <LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskPlaceOnEventList
  1419. <LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskInternalSetTimeOutState
  1420. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1421. <LI><a href="#[102]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIsQueueEmpty
  1422. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCopyDataFromQueue
  1423. </UL>
  1424. <BR>[Called By]<UL><LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1425. </UL>
  1426. <P><STRONG><a name="[134]"></a>xTaskCheckForTimeOut</STRONG> (Thumb, 136 bytes, Stack size 16 bytes, tasks.o(i.xTaskCheckForTimeOut))
  1427. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xTaskCheckForTimeOut
  1428. </UL>
  1429. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1430. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1431. <LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskInternalSetTimeOutState
  1432. </UL>
  1433. <BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1434. </UL>
  1435. <P><STRONG><a name="[e0]"></a>xTaskCreate</STRONG> (Thumb, 96 bytes, Stack size 72 bytes, tasks.o(i.xTaskCreate))
  1436. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = xTaskCreate &rArr; pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1437. </UL>
  1438. <BR>[Calls]<UL><LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortFree
  1439. <LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pvPortMalloc
  1440. <LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseNewTask
  1441. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddNewTaskToReadyList
  1442. </UL>
  1443. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskStartScheduler
  1444. <LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1445. <LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTimerCreateTimerTask
  1446. </UL>
  1447. <P><STRONG><a name="[132]"></a>xTaskGetSchedulerState</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, tasks.o(i.xTaskGetSchedulerState))
  1448. <BR><BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1449. </UL>
  1450. <P><STRONG><a name="[10c]"></a>xTaskGetTickCount</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, tasks.o(i.xTaskGetTickCount))
  1451. <BR><BR>[Called By]<UL><LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvSampleTimeNow
  1452. </UL>
  1453. <P><STRONG><a name="[c8]"></a>xTaskIncrementTick</STRONG> (Thumb, 398 bytes, Stack size 24 bytes, tasks.o(i.xTaskIncrementTick))
  1454. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = xTaskIncrementTick
  1455. </UL>
  1456. <BR>[Calls]<UL><LI><a href="#[135]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvResetNextTaskUnblockTime
  1457. </UL>
  1458. <BR>[Called By]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1459. <LI><a href="#[a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_Handler
  1460. </UL>
  1461. <P><STRONG><a name="[f6]"></a>xTaskPriorityDisinherit</STRONG> (Thumb, 226 bytes, Stack size 16 bytes, tasks.o(i.xTaskPriorityDisinherit))
  1462. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xTaskPriorityDisinherit
  1463. </UL>
  1464. <BR>[Calls]<UL><LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uxListRemove
  1465. </UL>
  1466. <BR>[Called By]<UL><LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCopyDataToQueue
  1467. </UL>
  1468. <P><STRONG><a name="[104]"></a>xTaskRemoveFromEventList</STRONG> (Thumb, 268 bytes, Stack size 16 bytes, tasks.o(i.xTaskRemoveFromEventList))
  1469. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xTaskRemoveFromEventList
  1470. </UL>
  1471. <BR>[Calls]<UL><LI><a href="#[135]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvResetNextTaskUnblockTime
  1472. </UL>
  1473. <BR>[Called By]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericSendFromISR
  1474. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1475. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericReset
  1476. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1477. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvNotifyQueueSetContainer
  1478. </UL>
  1479. <P><STRONG><a name="[fb]"></a>xTaskResumeAll</STRONG> (Thumb, 338 bytes, Stack size 16 bytes, tasks.o(i.xTaskResumeAll))
  1480. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = xTaskResumeAll &rArr; xTaskIncrementTick
  1481. </UL>
  1482. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1483. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1484. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskIncrementTick
  1485. <LI><a href="#[135]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvResetNextTaskUnblockTime
  1486. </UL>
  1487. <BR>[Called By]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskDelay
  1488. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1489. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortFree
  1490. <LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pvPortMalloc
  1491. <LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessTimerOrBlockTask
  1492. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIdleTask
  1493. </UL>
  1494. <P><STRONG><a name="[12d]"></a>xTimerCreateTimerTask</STRONG> (Thumb, 64 bytes, Stack size 16 bytes, timers.o(i.xTimerCreateTimerTask))
  1495. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = xTimerCreateTimerTask &rArr; xTaskCreate &rArr; pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1496. </UL>
  1497. <BR>[Calls]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1498. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckForValidListAndQueue
  1499. </UL>
  1500. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskStartScheduler
  1501. </UL>
  1502. <P>
  1503. <H3>
  1504. Local Symbols
  1505. </H3>
  1506. <P><STRONG><a name="[c4]"></a>SDA_IN1</STRONG> (Thumb, 26 bytes, Stack size 32 bytes, hal_nca9555.o(i.SDA_IN1))
  1507. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = SDA_IN1 &rArr; GPIO_Init
  1508. </UL>
  1509. <BR>[Calls]<UL><LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  1510. </UL>
  1511. <BR>[Called By]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  1512. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_recive_byte
  1513. </UL>
  1514. <P><STRONG><a name="[c6]"></a>SDA_OUT1</STRONG> (Thumb, 30 bytes, Stack size 32 bytes, hal_nca9555.o(i.SDA_OUT1))
  1515. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = SDA_OUT1 &rArr; GPIO_Init
  1516. </UL>
  1517. <BR>[Calls]<UL><LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  1518. </UL>
  1519. <BR>[Called By]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  1520. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  1521. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_start
  1522. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_send_byte
  1523. </UL>
  1524. <P><STRONG><a name="[d7]"></a>delay_us</STRONG> (Thumb, 362 bytes, Stack size 0 bytes, hal_nca9555.o(i.delay_us))
  1525. <BR><BR>[Called By]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  1526. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  1527. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_start
  1528. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_send_byte
  1529. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_recive_byte
  1530. </UL>
  1531. <P><STRONG><a name="[d2]"></a>iic1_init</STRONG> (Thumb, 70 bytes, Stack size 32 bytes, hal_nca9555.o(i.iic1_init))
  1532. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = iic1_init &rArr; GPIO_Init
  1533. </UL>
  1534. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_StructInit
  1535. <LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1536. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  1537. </UL>
  1538. <BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_init
  1539. </UL>
  1540. <P><STRONG><a name="[d5]"></a>iic_recive_byte</STRONG> (Thumb, 78 bytes, Stack size 16 bytes, hal_nca9555.o(i.iic_recive_byte))
  1541. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = iic_recive_byte &rArr; SDA_IN1 &rArr; GPIO_Init
  1542. </UL>
  1543. <BR>[Calls]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1544. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetPins
  1545. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_us
  1546. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_IN1
  1547. <LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ReadInputPins
  1548. </UL>
  1549. <BR>[Called By]<UL><LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1550. </UL>
  1551. <P><STRONG><a name="[d8]"></a>iic_send_byte</STRONG> (Thumb, 96 bytes, Stack size 16 bytes, hal_nca9555.o(i.iic_send_byte))
  1552. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = iic_send_byte &rArr; SDA_OUT1 &rArr; GPIO_Init
  1553. </UL>
  1554. <BR>[Calls]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1555. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetPins
  1556. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_us
  1557. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_OUT1
  1558. </UL>
  1559. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_write_byte
  1560. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1561. </UL>
  1562. <P><STRONG><a name="[d9]"></a>iic_start</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, hal_nca9555.o(i.iic_start))
  1563. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = iic_start &rArr; SDA_OUT1 &rArr; GPIO_Init
  1564. </UL>
  1565. <BR>[Calls]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1566. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetPins
  1567. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_us
  1568. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_OUT1
  1569. </UL>
  1570. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_write_byte
  1571. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1572. </UL>
  1573. <P><STRONG><a name="[da]"></a>iic_stop</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, hal_nca9555.o(i.iic_stop))
  1574. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1575. </UL>
  1576. <BR>[Calls]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1577. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetPins
  1578. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_us
  1579. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_OUT1
  1580. </UL>
  1581. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_write_byte
  1582. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1583. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_wait_ack
  1584. </UL>
  1585. <P><STRONG><a name="[db]"></a>iic_wait_ack</STRONG> (Thumb, 94 bytes, Stack size 8 bytes, hal_nca9555.o(i.iic_wait_ack))
  1586. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = iic_wait_ack &rArr; iic_stop &rArr; SDA_OUT1 &rArr; GPIO_Init
  1587. </UL>
  1588. <BR>[Calls]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetPins
  1589. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetPins
  1590. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iic_stop
  1591. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_us
  1592. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_OUT1
  1593. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SDA_IN1
  1594. <LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ReadInputPins
  1595. </UL>
  1596. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_write_byte
  1597. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;nca9555_read_byte
  1598. </UL>
  1599. <P><STRONG><a name="[b0]"></a>DMA_ReloadConfig</STRONG> (Thumb, 68 bytes, Stack size 8 bytes, hal_ec600g.o(i.DMA_ReloadConfig))
  1600. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = DMA_ReloadConfig &rArr; DMA_SetTransCount
  1601. </UL>
  1602. <BR>[Calls]<UL><LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_SetTransCount
  1603. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_SetSrcAddr
  1604. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ChCmd
  1605. <LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_SetDestAddr
  1606. </UL>
  1607. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ec600g_task
  1608. </UL>
  1609. <P><STRONG><a name="[98]"></a>DMA_TransCompleteCallback</STRONG> (Thumb, 12 bytes, Stack size 8 bytes, hal_ec600g.o(i.DMA_TransCompleteCallback))
  1610. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DMA_TransCompleteCallback
  1611. </UL>
  1612. <BR>[Calls]<UL><LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearTransCompleteStatus
  1613. </UL>
  1614. <BR>[Address Reference Count : 1]<UL><LI> hal_ec600g.o(i.spi_mpu_init_hc)
  1615. </UL>
  1616. <P><STRONG><a name="[97]"></a>SPI_IDLECallback</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hal_ec600g.o(i.SPI_IDLECallback))
  1617. <BR>[Address Reference Count : 1]<UL><LI> hal_ec600g.o(i.spi_mpu_init_hc)
  1618. </UL>
  1619. <P><STRONG><a name="[118]"></a>__NVIC_ClearPendingIRQ</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, hal_ec600g.o(i.__NVIC_ClearPendingIRQ))
  1620. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  1621. </UL>
  1622. <P><STRONG><a name="[11a]"></a>__NVIC_EnableIRQ</STRONG> (Thumb, 34 bytes, Stack size 0 bytes, hal_ec600g.o(i.__NVIC_EnableIRQ))
  1623. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  1624. </UL>
  1625. <P><STRONG><a name="[119]"></a>__NVIC_SetPriority</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, hal_ec600g.o(i.__NVIC_SetPriority))
  1626. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __NVIC_SetPriority
  1627. </UL>
  1628. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_mpu_init_hc
  1629. </UL>
  1630. <P><STRONG><a name="[bd]"></a>PWC_REG_Lock</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, hc32_ll.o(i.PWC_REG_Lock))
  1631. <BR><BR>[Called By]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;LL_PERIPH_WP
  1632. </UL>
  1633. <P><STRONG><a name="[bb]"></a>PWC_REG_Unlock</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, hc32_ll.o(i.PWC_REG_Unlock))
  1634. <BR><BR>[Called By]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;LL_PERIPH_WE
  1635. </UL>
  1636. <P><STRONG><a name="[c7]"></a>CLK_Delay</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hc32_ll_clk.o(i.CLK_Delay))
  1637. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CLK_Delay
  1638. </UL>
  1639. <BR>[Called By]<UL><LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockSrc
  1640. <LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockDiv
  1641. </UL>
  1642. <P><STRONG><a name="[a6]"></a>CLK_WaitStable</STRONG> (Thumb, 48 bytes, Stack size 12 bytes, hc32_ll_clk.o(i.CLK_WaitStable))
  1643. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = CLK_WaitStable
  1644. </UL>
  1645. <BR>[Calls]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_GetStableStatus
  1646. </UL>
  1647. <BR>[Called By]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_XtalCmd
  1648. <LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_PLLCmd
  1649. </UL>
  1650. <P><STRONG><a name="[a9]"></a>SetSysClockDiv</STRONG> (Thumb, 196 bytes, Stack size 40 bytes, hc32_ll_clk.o(i.SetSysClockDiv))
  1651. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = SetSysClockDiv &rArr; CLK_Delay
  1652. </UL>
  1653. <BR>[Calls]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_Delay
  1654. </UL>
  1655. <BR>[Called By]<UL><LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_SetClockDiv
  1656. </UL>
  1657. <P><STRONG><a name="[ac]"></a>SetSysClockSrc</STRONG> (Thumb, 180 bytes, Stack size 32 bytes, hc32_ll_clk.o(i.SetSysClockSrc))
  1658. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = SetSysClockSrc &rArr; CLK_Delay
  1659. </UL>
  1660. <BR>[Calls]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_Delay
  1661. </UL>
  1662. <BR>[Called By]<UL><LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CLK_SetSysClockSrc
  1663. </UL>
  1664. <P><STRONG><a name="[c3]"></a>MCAN_GetRxBufferNum</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_GetRxBufferNum))
  1665. <BR><BR>[Called By]<UL><LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MCAN_GetRxMsg
  1666. </UL>
  1667. <P><STRONG><a name="[ca]"></a>USART_WaitStatus</STRONG> (Thumb, 56 bytes, Stack size 24 bytes, hc32_ll_usart.o(i.USART_WaitStatus))
  1668. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = USART_WaitStatus
  1669. </UL>
  1670. <BR>[Calls]<UL><LI><a href="#[cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetStatus
  1671. </UL>
  1672. <BR>[Called By]<UL><LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_UART_Trans
  1673. </UL>
  1674. <P><STRONG><a name="[f3]"></a>prvCopyDataFromQueue</STRONG> (Thumb, 42 bytes, Stack size 16 bytes, queue.o(i.prvCopyDataFromQueue))
  1675. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = prvCopyDataFromQueue
  1676. </UL>
  1677. <BR>[Calls]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  1678. </UL>
  1679. <BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1680. </UL>
  1681. <P><STRONG><a name="[f5]"></a>prvCopyDataToQueue</STRONG> (Thumb, 126 bytes, Stack size 24 bytes, queue.o(i.prvCopyDataToQueue))
  1682. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1683. </UL>
  1684. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskPriorityDisinherit
  1685. <LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  1686. </UL>
  1687. <BR>[Called By]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericSendFromISR
  1688. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvNotifyQueueSetContainer
  1689. </UL>
  1690. <P><STRONG><a name="[fc]"></a>prvInitialiseNewQueue</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, queue.o(i.prvInitialiseNewQueue))
  1691. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvInitialiseNewQueue &rArr; xQueueGenericReset &rArr; xTaskRemoveFromEventList
  1692. </UL>
  1693. <BR>[Calls]<UL><LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericReset
  1694. </UL>
  1695. <BR>[Called By]<UL><LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericCreate
  1696. </UL>
  1697. <P><STRONG><a name="[102]"></a>prvIsQueueEmpty</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, queue.o(i.prvIsQueueEmpty))
  1698. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = prvIsQueueEmpty
  1699. </UL>
  1700. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1701. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1702. </UL>
  1703. <BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1704. </UL>
  1705. <P><STRONG><a name="[103]"></a>prvNotifyQueueSetContainer</STRONG> (Thumb, 172 bytes, Stack size 24 bytes, queue.o(i.prvNotifyQueueSetContainer))
  1706. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1707. </UL>
  1708. <BR>[Calls]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskRemoveFromEventList
  1709. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCopyDataToQueue
  1710. </UL>
  1711. <BR>[Called By]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericSendFromISR
  1712. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvUnlockQueue
  1713. </UL>
  1714. <P><STRONG><a name="[10f]"></a>prvUnlockQueue</STRONG> (Thumb, 144 bytes, Stack size 16 bytes, queue.o(i.prvUnlockQueue))
  1715. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = prvUnlockQueue &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1716. </UL>
  1717. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1718. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1719. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskRemoveFromEventList
  1720. <LI><a href="#[110]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskMissedYield
  1721. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvNotifyQueueSetContainer
  1722. </UL>
  1723. <BR>[Called By]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1724. <LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vQueueWaitForMessageRestricted
  1725. </UL>
  1726. <P><STRONG><a name="[e6]"></a>prvAddCurrentTaskToDelayedList</STRONG> (Thumb, 164 bytes, Stack size 24 bytes, tasks.o(i.prvAddCurrentTaskToDelayedList))
  1727. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = prvAddCurrentTaskToDelayedList &rArr; vListInsert
  1728. </UL>
  1729. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInsert
  1730. <LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uxListRemove
  1731. </UL>
  1732. <BR>[Called By]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskDelay
  1733. <LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskPlaceOnEventListRestricted
  1734. <LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskPlaceOnEventList
  1735. </UL>
  1736. <P><STRONG><a name="[e9]"></a>prvAddNewTaskToReadyList</STRONG> (Thumb, 206 bytes, Stack size 8 bytes, tasks.o(i.prvAddNewTaskToReadyList))
  1737. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = prvAddNewTaskToReadyList &rArr; prvInitialiseTaskLists
  1738. </UL>
  1739. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1740. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1741. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInitialiseTaskLists
  1742. </UL>
  1743. <BR>[Called By]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1744. </UL>
  1745. <P><STRONG><a name="[f1]"></a>prvCheckTasksWaitingTermination</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, tasks.o(i.prvCheckTasksWaitingTermination))
  1746. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = prvCheckTasksWaitingTermination &rArr; prvDeleteTCB &rArr; vPortFree &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1747. </UL>
  1748. <BR>[Calls]<UL><LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uxListRemove
  1749. <LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1750. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1751. <LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvDeleteTCB
  1752. </UL>
  1753. <BR>[Called By]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIdleTask
  1754. </UL>
  1755. <P><STRONG><a name="[f2]"></a>prvDeleteTCB</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, tasks.o(i.prvDeleteTCB))
  1756. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvDeleteTCB &rArr; vPortFree &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1757. </UL>
  1758. <BR>[Calls]<UL><LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortFree
  1759. </UL>
  1760. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckTasksWaitingTermination
  1761. </UL>
  1762. <P><STRONG><a name="[f8]"></a>prvGetExpectedIdleTime</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, tasks.o(i.prvGetExpectedIdleTime))
  1763. <BR><BR>[Called By]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvIdleTask
  1764. </UL>
  1765. <P><STRONG><a name="[99]"></a>prvIdleTask</STRONG> (Thumb, 108 bytes, Stack size 0 bytes, tasks.o(i.prvIdleTask))
  1766. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = prvIdleTask &rArr; prvCheckTasksWaitingTermination &rArr; prvDeleteTCB &rArr; vPortFree &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1767. </UL>
  1768. <BR>[Calls]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1769. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSuspendAll
  1770. <LI><a href="#[fa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortSuppressTicksAndSleep
  1771. <LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvGetExpectedIdleTime
  1772. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvCheckTasksWaitingTermination
  1773. </UL>
  1774. <BR>[Address Reference Count : 1]<UL><LI> tasks.o(i.vTaskStartScheduler)
  1775. </UL>
  1776. <P><STRONG><a name="[fe]"></a>prvInitialiseNewTask</STRONG> (Thumb, 224 bytes, Stack size 40 bytes, tasks.o(i.prvInitialiseNewTask))
  1777. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = prvInitialiseNewTask
  1778. </UL>
  1779. <BR>[Calls]<UL><LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInitialiseItem
  1780. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pxPortInitialiseStack
  1781. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memset
  1782. </UL>
  1783. <BR>[Called By]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskCreate
  1784. </UL>
  1785. <P><STRONG><a name="[eb]"></a>prvInitialiseTaskLists</STRONG> (Thumb, 70 bytes, Stack size 8 bytes, tasks.o(i.prvInitialiseTaskLists))
  1786. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = prvInitialiseTaskLists
  1787. </UL>
  1788. <BR>[Calls]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInitialise
  1789. </UL>
  1790. <BR>[Called By]<UL><LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvAddNewTaskToReadyList
  1791. </UL>
  1792. <P><STRONG><a name="[135]"></a>prvResetNextTaskUnblockTime</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, tasks.o(i.prvResetNextTaskUnblockTime))
  1793. <BR><BR>[Called By]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1794. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskIncrementTick
  1795. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskRemoveFromEventList
  1796. </UL>
  1797. <P><STRONG><a name="[ed]"></a>prvCheckForValidListAndQueue</STRONG> (Thumb, 72 bytes, Stack size 8 bytes, timers.o(i.prvCheckForValidListAndQueue))
  1798. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = prvCheckForValidListAndQueue &rArr; xQueueGenericCreate &rArr; pvPortMalloc &rArr; xTaskResumeAll &rArr; xTaskIncrementTick
  1799. </UL>
  1800. <BR>[Calls]<UL><LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueGenericCreate
  1801. <LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortExitCritical
  1802. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortEnterCritical
  1803. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInitialise
  1804. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vQueueAddToRegistry
  1805. </UL>
  1806. <BR>[Called By]<UL><LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTimerCreateTimerTask
  1807. </UL>
  1808. <P><STRONG><a name="[10e]"></a>prvGetNextExpireTime</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, timers.o(i.prvGetNextExpireTime))
  1809. <BR><BR>[Called By]<UL><LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvTimerTask
  1810. </UL>
  1811. <P><STRONG><a name="[101]"></a>prvInsertTimerInActiveList</STRONG> (Thumb, 80 bytes, Stack size 24 bytes, timers.o(i.prvInsertTimerInActiveList))
  1812. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = prvInsertTimerInActiveList &rArr; vListInsert
  1813. </UL>
  1814. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vListInsert
  1815. </UL>
  1816. <BR>[Called By]<UL><LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvReloadTimer
  1817. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1818. </UL>
  1819. <P><STRONG><a name="[105]"></a>prvProcessExpiredTimer</STRONG> (Thumb, 62 bytes, Stack size 16 bytes, timers.o(i.prvProcessExpiredTimer))
  1820. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvProcessExpiredTimer &rArr; prvReloadTimer &rArr; prvInsertTimerInActiveList &rArr; vListInsert
  1821. </UL>
  1822. <BR>[Calls]<UL><LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uxListRemove
  1823. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvReloadTimer
  1824. </UL>
  1825. <BR>[Called By]<UL><LI><a href="#[10d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvSwitchTimerLists
  1826. <LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessTimerOrBlockTask
  1827. </UL>
  1828. <P><STRONG><a name="[107]"></a>prvProcessReceivedCommands</STRONG> (Thumb, 280 bytes, Stack size 32 bytes, timers.o(i.prvProcessReceivedCommands))
  1829. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = prvProcessReceivedCommands &rArr; xQueueReceive &rArr; prvUnlockQueue &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1830. </UL>
  1831. <BR>[Calls]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xQueueReceive
  1832. <LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uxListRemove
  1833. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortFree
  1834. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvSampleTimeNow
  1835. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvReloadTimer
  1836. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInsertTimerInActiveList
  1837. </UL>
  1838. <BR>[Called By]<UL><LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvTimerTask
  1839. </UL>
  1840. <P><STRONG><a name="[10a]"></a>prvProcessTimerOrBlockTask</STRONG> (Thumb, 102 bytes, Stack size 24 bytes, timers.o(i.prvProcessTimerOrBlockTask))
  1841. <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = prvProcessTimerOrBlockTask &rArr; vQueueWaitForMessageRestricted &rArr; prvUnlockQueue &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1842. </UL>
  1843. <BR>[Calls]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskResumeAll
  1844. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vTaskSuspendAll
  1845. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvSampleTimeNow
  1846. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessExpiredTimer
  1847. <LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vQueueWaitForMessageRestricted
  1848. </UL>
  1849. <BR>[Called By]<UL><LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvTimerTask
  1850. </UL>
  1851. <P><STRONG><a name="[106]"></a>prvReloadTimer</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, timers.o(i.prvReloadTimer))
  1852. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = prvReloadTimer &rArr; prvInsertTimerInActiveList &rArr; vListInsert
  1853. </UL>
  1854. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvInsertTimerInActiveList
  1855. </UL>
  1856. <BR>[Called By]<UL><LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1857. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessExpiredTimer
  1858. </UL>
  1859. <P><STRONG><a name="[108]"></a>prvSampleTimeNow</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, timers.o(i.prvSampleTimeNow))
  1860. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = prvSampleTimeNow &rArr; prvSwitchTimerLists &rArr; prvProcessExpiredTimer &rArr; prvReloadTimer &rArr; prvInsertTimerInActiveList &rArr; vListInsert
  1861. </UL>
  1862. <BR>[Calls]<UL><LI><a href="#[10d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvSwitchTimerLists
  1863. <LI><a href="#[10c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;xTaskGetTickCount
  1864. </UL>
  1865. <BR>[Called By]<UL><LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessTimerOrBlockTask
  1866. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1867. </UL>
  1868. <P><STRONG><a name="[10d]"></a>prvSwitchTimerLists</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, timers.o(i.prvSwitchTimerLists))
  1869. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = prvSwitchTimerLists &rArr; prvProcessExpiredTimer &rArr; prvReloadTimer &rArr; prvInsertTimerInActiveList &rArr; vListInsert
  1870. </UL>
  1871. <BR>[Calls]<UL><LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessExpiredTimer
  1872. </UL>
  1873. <BR>[Called By]<UL><LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvSampleTimeNow
  1874. </UL>
  1875. <P><STRONG><a name="[9a]"></a>prvTimerTask</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, timers.o(i.prvTimerTask))
  1876. <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = prvTimerTask &rArr; prvProcessReceivedCommands &rArr; xQueueReceive &rArr; prvUnlockQueue &rArr; prvNotifyQueueSetContainer &rArr; prvCopyDataToQueue &rArr; xTaskPriorityDisinherit
  1877. </UL>
  1878. <BR>[Calls]<UL><LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessTimerOrBlockTask
  1879. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvProcessReceivedCommands
  1880. <LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prvGetNextExpireTime
  1881. </UL>
  1882. <BR>[Address Reference Count : 1]<UL><LI> timers.o(i.xTimerCreateTimerTask)
  1883. </UL>
  1884. <P><STRONG><a name="[112]"></a>prvHeapInit</STRONG> (Thumb, 98 bytes, Stack size 12 bytes, heap_4.o(i.prvHeapInit))
  1885. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = prvHeapInit
  1886. </UL>
  1887. <BR>[Called By]<UL><LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pvPortMalloc
  1888. </UL>
  1889. <P><STRONG><a name="[113]"></a>prvInsertBlockIntoFreeList</STRONG> (Thumb, 96 bytes, Stack size 8 bytes, heap_4.o(i.prvInsertBlockIntoFreeList))
  1890. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = prvInsertBlockIntoFreeList
  1891. </UL>
  1892. <BR>[Called By]<UL><LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vPortFree
  1893. <LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pvPortMalloc
  1894. </UL>
  1895. <P><STRONG><a name="[96]"></a>prvTaskExitError</STRONG> (Thumb, 60 bytes, Stack size 0 bytes, port.o(i.prvTaskExitError))
  1896. <BR>[Address Reference Count : 1]<UL><LI> port.o(i.pxPortInitialiseStack)
  1897. </UL>
  1898. <P><STRONG><a name="[ce]"></a>_printf_core</STRONG> (Thumb, 996 bytes, Stack size 104 bytes, printf8.o(i._printf_core), UNUSED)
  1899. <BR><BR>[Calls]<UL><LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  1900. <LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  1901. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  1902. </UL>
  1903. <BR>[Called By]<UL><LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__0printf$8
  1904. </UL>
  1905. <P><STRONG><a name="[d0]"></a>_printf_post_padding</STRONG> (Thumb, 36 bytes, Stack size 24 bytes, printf8.o(i._printf_post_padding), UNUSED)
  1906. <BR><BR>[Called By]<UL><LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  1907. </UL>
  1908. <P><STRONG><a name="[cf]"></a>_printf_pre_padding</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, printf8.o(i._printf_pre_padding), UNUSED)
  1909. <BR><BR>[Called By]<UL><LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  1910. </UL>
  1911. <P>
  1912. <H3>
  1913. Undefined Global Symbols
  1914. </H3><HR></body></html>