123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088 |
- <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
- <html><head>
- <title>Static Call Graph - [.\Objects\HC32_4G04.axf]</title></head>
- <body><HR>
- <H1>Static Call Graph for image .\Objects\HC32_4G04.axf</H1><HR>
- <BR><P>#<CALLGRAPH># ARM Linker, 5060750: Last Updated: Wed Jul 19 11:36:38 2023
- <BR><P>
- <H3>Maximum Stack Usage = 240 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
- Call chain for Maximum Stack Depth:</H3>
- MCAN1_INT0_Handler ⇒ xQueueGenericSendFromISR ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- <P>
- <H3>
- Mutually Recursive functions
- </H3> <LI><a href="#[2]">NMI_Handler</a> ⇒ <a href="#[2]">NMI_Handler</a><BR>
- <LI><a href="#[3]">HardFault_Handler</a> ⇒ <a href="#[3]">HardFault_Handler</a><BR>
- <LI><a href="#[4]">MemManage_Handler</a> ⇒ <a href="#[4]">MemManage_Handler</a><BR>
- <LI><a href="#[5]">BusFault_Handler</a> ⇒ <a href="#[5]">BusFault_Handler</a><BR>
- <LI><a href="#[6]">UsageFault_Handler</a> ⇒ <a href="#[6]">UsageFault_Handler</a><BR>
- <LI><a href="#[8]">DebugMon_Handler</a> ⇒ <a href="#[8]">DebugMon_Handler</a><BR>
- <LI><a href="#[8b]">ADC1_Handler</a> ⇒ <a href="#[8b]">ADC1_Handler</a><BR>
- </UL>
- <P>
- <H3>
- Function Pointers
- </H3><UL>
- <LI><a href="#[8b]">ADC1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[8c]">ADC2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[8d]">ADC3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5]">BusFault_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[43]">CLK_XtalStop_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[64]">CMP1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[65]">CMP2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[66]">CMP3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[67]">CMP4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[8a]">CTC_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[35]">DCU1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[36]">DCU2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[37]">DCU3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[38]">DCU4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2b]">DMA1_Error_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2c]">DMA1_TC0_BTC0_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2d]">DMA1_TC1_BTC1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2e]">DMA1_TC2_BTC2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2f]">DMA1_TC3_BTC3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[30]">DMA1_TC4_BTC4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[31]">DMA1_TC5_BTC5_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[39]">DMA2_Error_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3a]">DMA2_TC0_BTC0_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3b]">DMA2_TC1_BTC1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3c]">DMA2_TC2_BTC2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3d]">DMA2_TC3_BTC3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3e]">DMA2_TC4_BTC4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3f]">DMA2_TC5_BTC5_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[98]">DMA_TransCompleteCallback</a> from hal_ec600g.o(i.DMA_TransCompleteCallback) referenced from hal_ec600g.o(i.spi_mpu_init_hc)
- <LI><a href="#[8]">DebugMon_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[33]">EFM_OpEnd_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[32]">EFM_PEError_ReadCol_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[79]">EMB_GR0_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[7a]">EMB_GR1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[7b]">EMB_GR2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[7c]">EMB_GR3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6f]">EVENT_PORT1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[70]">EVENT_PORT2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[71]">EVENT_PORT3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[72]">EVENT_PORT4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1b]">EXTINT00_SWINT16_Handler</a> from hal_gpio.o(i.EXTINT00_SWINT16_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1c]">EXTINT01_SWINT17_Handler</a> from hal_gpio.o(i.EXTINT01_SWINT17_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1d]">EXTINT02_SWINT18_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1e]">EXTINT03_SWINT19_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1f]">EXTINT04_SWINT20_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[20]">EXTINT05_SWINT21_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[21]">EXTINT06_SWINT22_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[22]">EXTINT07_SWINT23_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[23]">EXTINT08_SWINT24_Handler</a> from hal_gpio.o(i.EXTINT08_SWINT24_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[24]">EXTINT09_SWINT25_Handler</a> from hal_gpio.o(i.EXTINT09_SWINT25_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[25]">EXTINT10_SWINT26_Handler</a> from hal_gpio.o(i.EXTINT10_SWINT26_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[26]">EXTINT11_SWINT27_Handler</a> from hal_gpio.o(i.EXTINT11_SWINT27_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[27]">EXTINT12_SWINT28_Handler</a> from hal_gpio.o(i.EXTINT12_SWINT28_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[28]">EXTINT13_SWINT29_Handler</a> from hal_gpio.o(i.EXTINT13_SWINT29_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[29]">EXTINT14_SWINT30_Handler</a> from hal_gpio.o(i.EXTINT14_SWINT30_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2a]">EXTINT15_SWINT31_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[88]">FCM_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[3]">HardFault_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[62]">I2C1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[63]">I2C2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[b]">IRQ000_Handler</a> from hc32_ll_interrupts.o(i.IRQ000_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[c]">IRQ001_Handler</a> from hc32_ll_interrupts.o(i.IRQ001_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[d]">IRQ002_Handler</a> from hc32_ll_interrupts.o(i.IRQ002_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[e]">IRQ003_Handler</a> from hc32_ll_interrupts.o(i.IRQ003_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[f]">IRQ004_Handler</a> from hc32_ll_interrupts.o(i.IRQ004_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[10]">IRQ005_Handler</a> from hc32_ll_interrupts.o(i.IRQ005_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[11]">IRQ006_Handler</a> from hc32_ll_interrupts.o(i.IRQ006_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[12]">IRQ007_Handler</a> from hc32_ll_interrupts.o(i.IRQ007_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[13]">IRQ008_Handler</a> from hc32_ll_interrupts.o(i.IRQ008_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[14]">IRQ009_Handler</a> from hc32_ll_interrupts.o(i.IRQ009_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[15]">IRQ010_Handler</a> from hc32_ll_interrupts.o(i.IRQ010_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[16]">IRQ011_Handler</a> from hc32_ll_interrupts.o(i.IRQ011_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[17]">IRQ012_Handler</a> from hc32_ll_interrupts.o(i.IRQ012_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[18]">IRQ013_Handler</a> from hc32_ll_interrupts.o(i.IRQ013_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[19]">IRQ014_Handler</a> from hc32_ll_interrupts.o(i.IRQ014_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1a]">IRQ015_Handler</a> from hc32_ll_interrupts.o(i.IRQ015_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[81]">MCAN1_INT0_Handler</a> from hal_can.o(i.MCAN1_INT0_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[82]">MCAN1_INT1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[83]">MCAN2_INT0_Handler</a> from hal_can.o(i.MCAN2_INT0_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[84]">MCAN2_INT1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4]">MemManage_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[2]">NMI_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[86]">PWC_LVD1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[87]">PWC_LVD2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[44]">PWC_WKTM_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[9]">PendSV_Handler</a> from port.o(.emb_text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[34]">QSPI_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[42]">RTC_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[1]">Reset_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6c]">SPI1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[77]">SPI2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[78]">SPI3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[97]">SPI_IDLECallback</a> from hal_ec600g.o(i.SPI_IDLECallback) referenced from hal_ec600g.o(i.spi_mpu_init_hc)
- <LI><a href="#[7]">SVC_Handler</a> from port.o(.emb_text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[45]">SWDT_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[a]">SysTick_Handler</a> from port.o(i.SysTick_Handler) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[90]">SystemInit</a> from system_hc32f448mcti.o(i.SystemInit) referenced from startup_hc32f448mcti.o(.text)
- <LI><a href="#[40]">TMR0_1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[41]">TMR0_2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[56]">TMR4_1_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[57]">TMR4_1_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[58]">TMR4_1_Reload_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[59]">TMR4_1_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5a]">TMR4_2_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5b]">TMR4_2_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5c]">TMR4_2_Reload_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5d]">TMR4_2_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5e]">TMR4_3_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[5f]">TMR4_3_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[60]">TMR4_3_Reload_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[61]">TMR4_3_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[46]">TMR6_1_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[48]">TMR6_1_GDet_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[47]">TMR6_1_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[49]">TMR6_1_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4c]">TMR6_2_GCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4e]">TMR6_2_GDet_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4d]">TMR6_2_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4f]">TMR6_2_SCmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4b]">TMRA_1_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[4a]">TMRA_1_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[51]">TMRA_2_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[50]">TMRA_2_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[53]">TMRA_3_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[52]">TMRA_3_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[55]">TMRA_4_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[54]">TMRA_4_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6e]">TMRA_5_Cmp_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6d]">TMRA_5_Ovf_Udf_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[8e]">TRNG_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[68]">USART1_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[69]">USART1_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[85]">USART1_WKUP_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6a]">USART2_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6b]">USART2_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[73]">USART3_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[74]">USART3_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[75]">USART4_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[76]">USART4_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[7d]">USART5_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[7e]">USART5_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[7f]">USART6_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[80]">USART6_TxComplete_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[6]">UsageFault_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[89]">WDT_Handler</a> from startup_hc32f448mcti.o(.text) referenced from startup_hc32f448mcti.o(RESET)
- <LI><a href="#[91]">__main</a> from entry.o(.ARM.Collect$$$$00000000) referenced from startup_hc32f448mcti.o(.text)
- <LI><a href="#[94]">ec600g_task</a> from hal_ec600g.o(i.ec600g_task) referenced from main.o(i.main)
- <LI><a href="#[92]">fputc</a> from hal_clk_func.o(i.fputc) referenced from printf8.o(i.__0printf$8)
- <LI><a href="#[8f]">main</a> from main.o(i.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
- <LI><a href="#[95]">mpu_task</a> from main.o(i.mpu_task) referenced from main.o(i.main)
- <LI><a href="#[93]">nca9555_task</a> from hal_nca9555.o(i.nca9555_task) referenced from main.o(i.main)
- <LI><a href="#[99]">prvIdleTask</a> from tasks.o(i.prvIdleTask) referenced from tasks.o(i.vTaskStartScheduler)
- <LI><a href="#[96]">prvTaskExitError</a> from port.o(i.prvTaskExitError) referenced from port.o(i.pxPortInitialiseStack)
- <LI><a href="#[9a]">prvTimerTask</a> from timers.o(i.prvTimerTask) referenced from timers.o(i.xTimerCreateTimerTask)
- </UL>
- <P>
- <H3>
- Global Symbols
- </H3>
- <P><STRONG><a name="[91]"></a>__main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(.text)
- </UL>
- <P><STRONG><a name="[136]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
- <P><STRONG><a name="[9b]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
- <BR><BR>[Calls]<UL><LI><a href="#[9c]">>></a> __scatterload
- </UL>
- <P><STRONG><a name="[a4]"></a>__main_after_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
- <BR><BR>[Called By]<UL><LI><a href="#[9c]">>></a> __scatterload
- </UL>
- <P><STRONG><a name="[137]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
- <P><STRONG><a name="[138]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
- <P><STRONG><a name="[139]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
- <P><STRONG><a name="[13a]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000D))
- <P><STRONG><a name="[13b]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F))
- <P><STRONG><a name="[7]"></a>SVC_Handler</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, port.o(.emb_text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[131]"></a>__asm___6_port_c_39a90d8d__prvStartFirstTask</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, port.o(.emb_text))
- <BR><BR>[Called By]<UL><LI><a href="#[12e]">>></a> xPortStartScheduler
- </UL>
- <P><STRONG><a name="[130]"></a>__asm___6_port_c_39a90d8d__prvEnableVFP</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, port.o(.emb_text))
- <BR><BR>[Called By]<UL><LI><a href="#[12e]">>></a> xPortStartScheduler
- </UL>
- <P><STRONG><a name="[9]"></a>PendSV_Handler</STRONG> (Thumb, 88 bytes, Stack size 0 bytes, port.o(.emb_text))
- <BR><BR>[Calls]<UL><LI><a href="#[9d]">>></a> vTaskSwitchContext
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[12a]"></a>vPortGetIPSR</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, port.o(.emb_text))
- <BR><BR>[Called By]<UL><LI><a href="#[129]">>></a> vPortValidateInterruptPriority
- </UL>
- <P><STRONG><a name="[1]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[2]">>></a> NMI_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[2]">>></a> NMI_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3]"></a>HardFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[3]">>></a> HardFault_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[3]">>></a> HardFault_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4]"></a>MemManage_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[4]">>></a> MemManage_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[4]">>></a> MemManage_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5]"></a>BusFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[5]">>></a> BusFault_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[5]">>></a> BusFault_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6]"></a>UsageFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[6]">>></a> UsageFault_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[6]">>></a> UsageFault_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[8]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[8]">>></a> DebugMon_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8]">>></a> DebugMon_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[8b]"></a>ADC1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[8b]">>></a> ADC1_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8b]">>></a> ADC1_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[8c]"></a>ADC2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[8d]"></a>ADC3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[43]"></a>CLK_XtalStop_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[64]"></a>CMP1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[65]"></a>CMP2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[66]"></a>CMP3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[67]"></a>CMP4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[8a]"></a>CTC_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[35]"></a>DCU1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[36]"></a>DCU2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[37]"></a>DCU3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[38]"></a>DCU4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2b]"></a>DMA1_Error_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2c]"></a>DMA1_TC0_BTC0_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2d]"></a>DMA1_TC1_BTC1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2e]"></a>DMA1_TC2_BTC2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2f]"></a>DMA1_TC3_BTC3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[30]"></a>DMA1_TC4_BTC4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[31]"></a>DMA1_TC5_BTC5_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[39]"></a>DMA2_Error_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3a]"></a>DMA2_TC0_BTC0_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3b]"></a>DMA2_TC1_BTC1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3c]"></a>DMA2_TC2_BTC2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3d]"></a>DMA2_TC3_BTC3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3e]"></a>DMA2_TC4_BTC4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[3f]"></a>DMA2_TC5_BTC5_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[33]"></a>EFM_OpEnd_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[32]"></a>EFM_PEError_ReadCol_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[79]"></a>EMB_GR0_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[7a]"></a>EMB_GR1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[7b]"></a>EMB_GR2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[7c]"></a>EMB_GR3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6f]"></a>EVENT_PORT1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[70]"></a>EVENT_PORT2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[71]"></a>EVENT_PORT3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[72]"></a>EVENT_PORT4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[1d]"></a>EXTINT02_SWINT18_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[1e]"></a>EXTINT03_SWINT19_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[1f]"></a>EXTINT04_SWINT20_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[20]"></a>EXTINT05_SWINT21_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[21]"></a>EXTINT06_SWINT22_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[22]"></a>EXTINT07_SWINT23_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[2a]"></a>EXTINT15_SWINT31_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[88]"></a>FCM_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[62]"></a>I2C1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[63]"></a>I2C2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[82]"></a>MCAN1_INT1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[84]"></a>MCAN2_INT1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[86]"></a>PWC_LVD1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[87]"></a>PWC_LVD2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[44]"></a>PWC_WKTM_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[34]"></a>QSPI_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[42]"></a>RTC_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6c]"></a>SPI1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[77]"></a>SPI2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[78]"></a>SPI3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[45]"></a>SWDT_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[40]"></a>TMR0_1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[41]"></a>TMR0_2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[56]"></a>TMR4_1_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[57]"></a>TMR4_1_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[58]"></a>TMR4_1_Reload_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[59]"></a>TMR4_1_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5a]"></a>TMR4_2_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5b]"></a>TMR4_2_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5c]"></a>TMR4_2_Reload_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5d]"></a>TMR4_2_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5e]"></a>TMR4_3_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[5f]"></a>TMR4_3_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[60]"></a>TMR4_3_Reload_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[61]"></a>TMR4_3_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[46]"></a>TMR6_1_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[48]"></a>TMR6_1_GDet_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[47]"></a>TMR6_1_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[49]"></a>TMR6_1_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4c]"></a>TMR6_2_GCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4e]"></a>TMR6_2_GDet_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4d]"></a>TMR6_2_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4f]"></a>TMR6_2_SCmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4b]"></a>TMRA_1_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[4a]"></a>TMRA_1_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[51]"></a>TMRA_2_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[50]"></a>TMRA_2_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[53]"></a>TMRA_3_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[52]"></a>TMRA_3_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[55]"></a>TMRA_4_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[54]"></a>TMRA_4_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6e]"></a>TMRA_5_Cmp_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6d]"></a>TMRA_5_Ovf_Udf_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[8e]"></a>TRNG_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[68]"></a>USART1_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[69]"></a>USART1_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[85]"></a>USART1_WKUP_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6a]"></a>USART2_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[6b]"></a>USART2_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[73]"></a>USART3_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[74]"></a>USART3_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[75]"></a>USART4_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[76]"></a>USART4_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[7d]"></a>USART5_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[7e]"></a>USART5_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[7f]"></a>USART6_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[80]"></a>USART6_TxComplete_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[89]"></a>WDT_Handler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_hc32f448mcti.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[9e]"></a>__aeabi_uldivmod</STRONG> (Thumb, 98 bytes, Stack size 40 bytes, uldiv.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[a0]">>></a> __aeabi_llsl
- <LI><a href="#[9f]">>></a> __aeabi_llsr
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ce]">>></a> _printf_core
- </UL>
- <P><STRONG><a name="[a0]"></a>__aeabi_llsl</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[9e]">>></a> __aeabi_uldivmod
- </UL>
- <P><STRONG><a name="[13c]"></a>_ll_shift_l</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
- <P><STRONG><a name="[f4]"></a>__aeabi_memcpy</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, memcpya.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[f5]">>></a> prvCopyDataToQueue
- <LI><a href="#[f3]">>></a> prvCopyDataFromQueue
- </UL>
- <P><STRONG><a name="[13d]"></a>__aeabi_memcpy4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED)
- <P><STRONG><a name="[13e]"></a>__aeabi_memcpy8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED)
- <P><STRONG><a name="[a2]"></a>__aeabi_memset</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, memseta.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[fe]">>></a> prvInitialiseNewTask
- <LI><a href="#[a3]">>></a> memset
- <LI><a href="#[a1]">>></a> __aeabi_memclr
- </UL>
- <P><STRONG><a name="[13f]"></a>__aeabi_memset4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[140]"></a>__aeabi_memset8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[a1]"></a>__aeabi_memclr</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[a2]">>></a> __aeabi_memset
- </UL>
- <P><STRONG><a name="[141]"></a>__aeabi_memclr4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[142]"></a>__aeabi_memclr8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[a3]"></a>memset</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, memseta.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[a2]">>></a> __aeabi_memset
- </UL>
- <P><STRONG><a name="[9f]"></a>__aeabi_llsr</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[9e]">>></a> __aeabi_uldivmod
- </UL>
- <P><STRONG><a name="[143]"></a>_ll_ushift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
- <P><STRONG><a name="[9c]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[a4]">>></a> __main_after_scatterload
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9b]">>></a> _main_scatterload
- </UL>
- <P><STRONG><a name="[144]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
- <P><STRONG><a name="[145]"></a>__decompress</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl.o(.text), UNUSED)
- <P><STRONG><a name="[146]"></a>__decompress0</STRONG> (Thumb, 58 bytes, Stack size unknown bytes, __dczerorl.o(.text), UNUSED)
- <P><STRONG><a name="[11f]"></a>AOS_SetTriggerEventSrc</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, hc32_ll_aos.o(i.AOS_SetTriggerEventSrc))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[ad]"></a>CLK_GetStableStatus</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, hc32_ll_clk.o(i.CLK_GetStableStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[a6]">>></a> CLK_WaitStable
- </UL>
- <P><STRONG><a name="[a5]"></a>CLK_PLLCmd</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_PLLCmd))
- <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = CLK_PLLCmd ⇒ CLK_WaitStable
- </UL>
- <BR>[Calls]<UL><LI><a href="#[a6]">>></a> CLK_WaitStable
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a7]">>></a> CLK_PLLInit
- </UL>
- <P><STRONG><a name="[a7]"></a>CLK_PLLInit</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_PLLInit))
- <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = CLK_PLLInit ⇒ CLK_PLLCmd ⇒ CLK_WaitStable
- </UL>
- <BR>[Calls]<UL><LI><a href="#[a5]">>></a> CLK_PLLCmd
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[123]"></a>CLK_PLLStructInit</STRONG> (Thumb, 82 bytes, Stack size 0 bytes, hc32_ll_clk.o(i.CLK_PLLStructInit))
- <BR><BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[a8]"></a>CLK_SetClockDiv</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_SetClockDiv))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = CLK_SetClockDiv ⇒ SetSysClockDiv ⇒ CLK_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[aa]">>></a> SystemCoreClockUpdate
- <LI><a href="#[a9]">>></a> SetSysClockDiv
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[ab]"></a>CLK_SetSysClockSrc</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, hc32_ll_clk.o(i.CLK_SetSysClockSrc))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = CLK_SetSysClockSrc ⇒ SetSysClockSrc ⇒ CLK_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[aa]">>></a> SystemCoreClockUpdate
- <LI><a href="#[ac]">>></a> SetSysClockSrc
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[ae]"></a>CLK_XtalCmd</STRONG> (Thumb, 94 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_XtalCmd))
- <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = CLK_XtalCmd ⇒ CLK_WaitStable
- </UL>
- <BR>[Calls]<UL><LI><a href="#[a6]">>></a> CLK_WaitStable
- </UL>
- <BR>[Called By]<UL><LI><a href="#[af]">>></a> CLK_XtalInit
- </UL>
- <P><STRONG><a name="[af]"></a>CLK_XtalInit</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, hc32_ll_clk.o(i.CLK_XtalInit))
- <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = CLK_XtalInit ⇒ CLK_XtalCmd ⇒ CLK_WaitStable
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ae]">>></a> CLK_XtalCmd
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[122]"></a>CLK_XtalStructInit</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, hc32_ll_clk.o(i.CLK_XtalStructInit))
- <BR><BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[b4]"></a>DMA_ChCmd</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_ChCmd))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- <LI><a href="#[b0]">>></a> DMA_ReloadConfig
- </UL>
- <P><STRONG><a name="[b5]"></a>DMA_ClearTransCompleteStatus</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_ClearTransCompleteStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[98]">>></a> DMA_TransCompleteCallback
- </UL>
- <P><STRONG><a name="[120]"></a>DMA_Cmd</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_Cmd))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[11e]"></a>DMA_Init</STRONG> (Thumb, 96 bytes, Stack size 20 bytes, hc32_ll_dma.o(i.DMA_Init))
- <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = DMA_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[b3]"></a>DMA_SetDestAddr</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_SetDestAddr))
- <BR><BR>[Called By]<UL><LI><a href="#[b0]">>></a> DMA_ReloadConfig
- </UL>
- <P><STRONG><a name="[b1]"></a>DMA_SetSrcAddr</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_SetSrcAddr))
- <BR><BR>[Called By]<UL><LI><a href="#[b0]">>></a> DMA_ReloadConfig
- </UL>
- <P><STRONG><a name="[b2]"></a>DMA_SetTransCount</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, hc32_ll_dma.o(i.DMA_SetTransCount))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DMA_SetTransCount
- </UL>
- <BR>[Called By]<UL><LI><a href="#[b0]">>></a> DMA_ReloadConfig
- </UL>
- <P><STRONG><a name="[11d]"></a>DMA_StructInit</STRONG> (Thumb, 34 bytes, Stack size 0 bytes, hc32_ll_dma.o(i.DMA_StructInit))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[125]"></a>EFM_SetWaitCycle</STRONG> (Thumb, 68 bytes, Stack size 0 bytes, hc32_ll_efm.o(i.EFM_SetWaitCycle))
- <BR><BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[1b]"></a>EXTINT00_SWINT16_Handler</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT00_SWINT16_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT00_SWINT16_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[1c]"></a>EXTINT01_SWINT17_Handler</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT01_SWINT17_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = EXTINT01_SWINT17_Handler ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- <LI><a href="#[b8]">>></a> __2printf
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[23]"></a>EXTINT08_SWINT24_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT08_SWINT24_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT08_SWINT24_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[24]"></a>EXTINT09_SWINT25_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT09_SWINT25_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT09_SWINT25_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[25]"></a>EXTINT10_SWINT26_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT10_SWINT26_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT10_SWINT26_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[26]"></a>EXTINT11_SWINT27_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT11_SWINT27_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT11_SWINT27_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[27]"></a>EXTINT12_SWINT28_Handler</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT12_SWINT28_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT12_SWINT28_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b9]">>></a> GPIO_ReadInputPins
- <LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[28]"></a>EXTINT13_SWINT29_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT13_SWINT29_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT13_SWINT29_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[29]"></a>EXTINT14_SWINT30_Handler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_gpio.o(i.EXTINT14_SWINT30_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = EXTINT14_SWINT30_Handler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b6]">>></a> EXTINT_GetExtIntStatus
- <LI><a href="#[b7]">>></a> EXTINT_ClearExtIntStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[b7]"></a>EXTINT_ClearExtIntStatus</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, hc32_ll_interrupts.o(i.EXTINT_ClearExtIntStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[29]">>></a> EXTINT14_SWINT30_Handler
- <LI><a href="#[28]">>></a> EXTINT13_SWINT29_Handler
- <LI><a href="#[27]">>></a> EXTINT12_SWINT28_Handler
- <LI><a href="#[26]">>></a> EXTINT11_SWINT27_Handler
- <LI><a href="#[25]">>></a> EXTINT10_SWINT26_Handler
- <LI><a href="#[24]">>></a> EXTINT09_SWINT25_Handler
- <LI><a href="#[23]">>></a> EXTINT08_SWINT24_Handler
- <LI><a href="#[1c]">>></a> EXTINT01_SWINT17_Handler
- <LI><a href="#[1b]">>></a> EXTINT00_SWINT16_Handler
- </UL>
- <P><STRONG><a name="[b6]"></a>EXTINT_GetExtIntStatus</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, hc32_ll_interrupts.o(i.EXTINT_GetExtIntStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[29]">>></a> EXTINT14_SWINT30_Handler
- <LI><a href="#[28]">>></a> EXTINT13_SWINT29_Handler
- <LI><a href="#[27]">>></a> EXTINT12_SWINT28_Handler
- <LI><a href="#[26]">>></a> EXTINT11_SWINT27_Handler
- <LI><a href="#[25]">>></a> EXTINT10_SWINT26_Handler
- <LI><a href="#[24]">>></a> EXTINT09_SWINT25_Handler
- <LI><a href="#[23]">>></a> EXTINT08_SWINT24_Handler
- <LI><a href="#[1c]">>></a> EXTINT01_SWINT17_Handler
- <LI><a href="#[1b]">>></a> EXTINT00_SWINT16_Handler
- </UL>
- <P><STRONG><a name="[11c]"></a>FCG_Fcg0PeriphClockCmd</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, hc32_ll_fcg.o(i.FCG_Fcg0PeriphClockCmd))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[115]"></a>FCG_Fcg1PeriphClockCmd</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, hc32_ll_fcg.o(i.FCG_Fcg1PeriphClockCmd))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[121]"></a>GPIO_AnalogCmd</STRONG> (Thumb, 60 bytes, Stack size 12 bytes, hc32_ll_gpio.o(i.GPIO_AnalogCmd))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = GPIO_AnalogCmd
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[c5]"></a>GPIO_Init</STRONG> (Thumb, 174 bytes, Stack size 24 bytes, hc32_ll_gpio.o(i.GPIO_Init))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[de]">>></a> mpu_ctr_init
- <LI><a href="#[d2]">>></a> iic1_init
- <LI><a href="#[c6]">>></a> SDA_OUT1
- <LI><a href="#[c4]">>></a> SDA_IN1
- </UL>
- <P><STRONG><a name="[b9]"></a>GPIO_ReadInputPins</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hc32_ll_gpio.o(i.GPIO_ReadInputPins))
- <BR><BR>[Called By]<UL><LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[d5]">>></a> iic_recive_byte
- <LI><a href="#[27]">>></a> EXTINT12_SWINT28_Handler
- </UL>
- <P><STRONG><a name="[d6]"></a>GPIO_ResetPins</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hc32_ll_gpio.o(i.GPIO_ResetPins))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = GPIO_ResetPins
- </UL>
- <BR>[Called By]<UL><LI><a href="#[95]">>></a> mpu_task
- <LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d9]">>></a> iic_start
- <LI><a href="#[d8]">>></a> iic_send_byte
- <LI><a href="#[d5]">>></a> iic_recive_byte
- </UL>
- <P><STRONG><a name="[114]"></a>GPIO_SetFunc</STRONG> (Thumb, 38 bytes, Stack size 12 bytes, hc32_ll_gpio.o(i.GPIO_SetFunc))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = GPIO_SetFunc
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[d4]"></a>GPIO_SetPins</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hc32_ll_gpio.o(i.GPIO_SetPins))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = GPIO_SetPins
- </UL>
- <BR>[Called By]<UL><LI><a href="#[95]">>></a> mpu_task
- <LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d9]">>></a> iic_start
- <LI><a href="#[d8]">>></a> iic_send_byte
- <LI><a href="#[d5]">>></a> iic_recive_byte
- <LI><a href="#[d2]">>></a> iic1_init
- </UL>
- <P><STRONG><a name="[126]"></a>GPIO_SetReadWaitCycle</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, hc32_ll_gpio.o(i.GPIO_SetReadWaitCycle))
- <BR><BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[d3]"></a>GPIO_StructInit</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, hc32_ll_gpio.o(i.GPIO_StructInit))
- <BR><BR>[Called By]<UL><LI><a href="#[de]">>></a> mpu_ctr_init
- <LI><a href="#[d2]">>></a> iic1_init
- </UL>
- <P><STRONG><a name="[117]"></a>INTC_IrqSignIn</STRONG> (Thumb, 100 bytes, Stack size 12 bytes, hc32_ll_interrupts.o(i.INTC_IrqSignIn))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = INTC_IrqSignIn
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[b]"></a>IRQ000_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ000_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ000_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[c]"></a>IRQ001_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ001_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ001_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[d]"></a>IRQ002_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ002_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ002_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[e]"></a>IRQ003_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ003_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ003_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[f]"></a>IRQ004_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ004_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ004_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[10]"></a>IRQ005_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ005_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ005_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[11]"></a>IRQ006_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ006_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ006_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[12]"></a>IRQ007_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ007_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ007_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[13]"></a>IRQ008_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ008_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ008_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[14]"></a>IRQ009_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ009_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ009_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[15]"></a>IRQ010_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ010_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ010_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[16]"></a>IRQ011_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ011_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ011_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[17]"></a>IRQ012_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ012_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ012_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[18]"></a>IRQ013_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ013_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ013_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[19]"></a>IRQ014_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ014_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ014_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[1a]"></a>IRQ015_Handler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hc32_ll_interrupts.o(i.IRQ015_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = IRQ015_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[ba]"></a>LL_PERIPH_WE</STRONG> (Thumb, 122 bytes, Stack size 8 bytes, hc32_ll.o(i.LL_PERIPH_WE))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = LL_PERIPH_WE
- </UL>
- <BR>[Calls]<UL><LI><a href="#[bb]">>></a> PWC_REG_Unlock
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <P><STRONG><a name="[bc]"></a>LL_PERIPH_WP</STRONG> (Thumb, 114 bytes, Stack size 8 bytes, hc32_ll.o(i.LL_PERIPH_WP))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = LL_PERIPH_WP
- </UL>
- <BR>[Calls]<UL><LI><a href="#[bd]">>></a> PWC_REG_Lock
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <P><STRONG><a name="[81]"></a>MCAN1_INT0_Handler</STRONG> (Thumb, 384 bytes, Stack size 136 bytes, hal_can.o(i.MCAN1_INT0_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = MCAN1_INT0_Handler ⇒ xQueueGenericSendFromISR ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c1]">>></a> xQueueGenericSendFromISR
- <LI><a href="#[be]">>></a> MCAN_GetStatus
- <LI><a href="#[c0]">>></a> MCAN_GetRxMsg
- <LI><a href="#[c2]">>></a> MCAN_EnableTxBufferRequest
- <LI><a href="#[bf]">>></a> MCAN_ClearStatus
- <LI><a href="#[b8]">>></a> __2printf
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[83]"></a>MCAN2_INT0_Handler</STRONG> (Thumb, 332 bytes, Stack size 136 bytes, hal_can.o(i.MCAN2_INT0_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = MCAN2_INT0_Handler ⇒ xQueueGenericSendFromISR ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c1]">>></a> xQueueGenericSendFromISR
- <LI><a href="#[be]">>></a> MCAN_GetStatus
- <LI><a href="#[c0]">>></a> MCAN_GetRxMsg
- <LI><a href="#[c2]">>></a> MCAN_EnableTxBufferRequest
- <LI><a href="#[bf]">>></a> MCAN_ClearStatus
- <LI><a href="#[b8]">>></a> __2printf
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[bf]"></a>MCAN_ClearStatus</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_ClearStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[83]">>></a> MCAN2_INT0_Handler
- <LI><a href="#[81]">>></a> MCAN1_INT0_Handler
- </UL>
- <P><STRONG><a name="[c2]"></a>MCAN_EnableTxBufferRequest</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_EnableTxBufferRequest))
- <BR><BR>[Called By]<UL><LI><a href="#[83]">>></a> MCAN2_INT0_Handler
- <LI><a href="#[81]">>></a> MCAN1_INT0_Handler
- </UL>
- <P><STRONG><a name="[c0]"></a>MCAN_GetRxMsg</STRONG> (Thumb, 500 bytes, Stack size 48 bytes, hc32_ll_mcan.o(i.MCAN_GetRxMsg))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = MCAN_GetRxMsg
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c3]">>></a> MCAN_GetRxBufferNum
- </UL>
- <BR>[Called By]<UL><LI><a href="#[83]">>></a> MCAN2_INT0_Handler
- <LI><a href="#[81]">>></a> MCAN1_INT0_Handler
- </UL>
- <P><STRONG><a name="[be]"></a>MCAN_GetStatus</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_GetStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[83]">>></a> MCAN2_INT0_Handler
- <LI><a href="#[81]">>></a> MCAN1_INT0_Handler
- </UL>
- <P><STRONG><a name="[11b]"></a>SPI_Init</STRONG> (Thumb, 120 bytes, Stack size 12 bytes, hc32_ll_spi.o(i.SPI_Init))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = SPI_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[116]"></a>SPI_StructInit</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, hc32_ll_spi.o(i.SPI_StructInit))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[124]"></a>SRAM_SetWaitCycle</STRONG> (Thumb, 88 bytes, Stack size 8 bytes, hc32_ll_sram.o(i.SRAM_SetWaitCycle))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SRAM_SetWaitCycle
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dc]">>></a> sys_clk_init
- </UL>
- <P><STRONG><a name="[a]"></a>SysTick_Handler</STRONG> (Thumb, 46 bytes, Stack size 8 bytes, port.o(i.SysTick_Handler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = SysTick_Handler ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c8]">>></a> xTaskIncrementTick
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(RESET)
- </UL>
- <P><STRONG><a name="[aa]"></a>SystemCoreClockUpdate</STRONG> (Thumb, 174 bytes, Stack size 16 bytes, system_hc32f448mcti.o(i.SystemCoreClockUpdate))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = SystemCoreClockUpdate
- </UL>
- <BR>[Called By]<UL><LI><a href="#[90]">>></a> SystemInit
- <LI><a href="#[a8]">>></a> CLK_SetClockDiv
- <LI><a href="#[ab]">>></a> CLK_SetSysClockSrc
- </UL>
- <P><STRONG><a name="[90]"></a>SystemInit</STRONG> (Thumb, 30 bytes, Stack size 4 bytes, system_hc32f448mcti.o(i.SystemInit))
- <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = SystemInit ⇒ SystemCoreClockUpdate
- </UL>
- <BR>[Calls]<UL><LI><a href="#[aa]">>></a> SystemCoreClockUpdate
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_hc32f448mcti.o(.text)
- </UL>
- <P><STRONG><a name="[cc]"></a>USART_GetStatus</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hc32_ll_usart.o(i.USART_GetStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[ca]">>></a> USART_WaitStatus
- </UL>
- <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))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = USART_UART_Trans ⇒ USART_WaitStatus
- </UL>
- <BR>[Calls]<UL><LI><a href="#[cb]">>></a> USART_WriteData
- <LI><a href="#[ca]">>></a> USART_WaitStatus
- </UL>
- <BR>[Called By]<UL><LI><a href="#[92]">>></a> fputc
- </UL>
- <P><STRONG><a name="[cb]"></a>USART_WriteData</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hc32_ll_usart.o(i.USART_WriteData))
- <BR><BR>[Called By]<UL><LI><a href="#[c9]">>></a> USART_UART_Trans
- </UL>
- <P><STRONG><a name="[cd]"></a>__0printf$8</STRONG> (Thumb, 22 bytes, Stack size 24 bytes, printf8.o(i.__0printf$8), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ce]">>></a> _printf_core
- </UL>
- <P><STRONG><a name="[147]"></a>__1printf$8</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printf8.o(i.__0printf$8), UNUSED)
- <P><STRONG><a name="[b8]"></a>__2printf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printf8.o(i.__0printf$8))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[1c]">>></a> EXTINT01_SWINT17_Handler
- <LI><a href="#[83]">>></a> MCAN2_INT0_Handler
- <LI><a href="#[81]">>></a> MCAN1_INT0_Handler
- </UL>
- <P><STRONG><a name="[148]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
- <P><STRONG><a name="[149]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
- <P><STRONG><a name="[14a]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
- <P><STRONG><a name="[127]"></a>eTaskConfirmSleepModeStatus</STRONG> (Thumb, 52 bytes, Stack size 0 bytes, tasks.o(i.eTaskConfirmSleepModeStatus))
- <BR><BR>[Called By]<UL><LI><a href="#[fa]">>></a> vPortSuppressTicksAndSleep
- </UL>
- <P><STRONG><a name="[94]"></a>ec600g_task</STRONG> (Thumb, 36 bytes, Stack size 24 bytes, hal_ec600g.o(i.ec600g_task))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = ec600g_task ⇒ vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d1]">>></a> vTaskDelay
- <LI><a href="#[b0]">>></a> DMA_ReloadConfig
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
- </UL>
- <P><STRONG><a name="[92]"></a>fputc</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, hal_clk_func.o(i.fputc))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = fputc ⇒ USART_UART_Trans ⇒ USART_WaitStatus
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c9]">>></a> USART_UART_Trans
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> printf8.o(i.__0printf$8)
- </UL>
- <P><STRONG><a name="[8f]"></a>main</STRONG> (Thumb, 136 bytes, Stack size 16 bytes, main.o(i.main))
- <BR><BR>[Stack]<UL><LI>Max Depth = 184<LI>Call Chain = main ⇒ vTaskStartScheduler ⇒ xTimerCreateTimerTask ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e0]">>></a> xTaskCreate
- <LI><a href="#[e1]">>></a> vTaskStartScheduler
- <LI><a href="#[dc]">>></a> sys_clk_init
- <LI><a href="#[dd]">>></a> spi_mpu_init_hc
- <LI><a href="#[df]">>></a> nca9555_init
- <LI><a href="#[bc]">>></a> LL_PERIPH_WP
- <LI><a href="#[ba]">>></a> LL_PERIPH_WE
- <LI><a href="#[de]">>></a> mpu_ctr_init
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
- </UL>
- <P><STRONG><a name="[de]"></a>mpu_ctr_init</STRONG> (Thumb, 48 bytes, Stack size 32 bytes, main.o(i.mpu_ctr_init))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = mpu_ctr_init ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d3]">>></a> GPIO_StructInit
- <LI><a href="#[c5]">>></a> GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <P><STRONG><a name="[95]"></a>mpu_task</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, main.o(i.mpu_task))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = mpu_task ⇒ vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d1]">>></a> vTaskDelay
- <LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[d6]">>></a> GPIO_ResetPins
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
- </UL>
- <P><STRONG><a name="[df]"></a>nca9555_init</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, hal_nca9555.o(i.nca9555_init))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = nca9555_init ⇒ iic1_init ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d2]">>></a> iic1_init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <P><STRONG><a name="[e2]"></a>nca9555_read_byte</STRONG> (Thumb, 78 bytes, Stack size 24 bytes, hal_nca9555.o(i.nca9555_read_byte))
- <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = nca9555_read_byte ⇒ iic_wait_ack ⇒ iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d9]">>></a> iic_start
- <LI><a href="#[d8]">>></a> iic_send_byte
- <LI><a href="#[d5]">>></a> iic_recive_byte
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e5]">>></a> nca9555_set_output_mode
- <LI><a href="#[e3]">>></a> nca9555_set_gpio_output_status
- </UL>
- <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))
- <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = nca9555_set_gpio_output_status ⇒ nca9555_write_byte ⇒ iic_wait_ack ⇒ iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e4]">>></a> nca9555_write_byte
- <LI><a href="#[e2]">>></a> nca9555_read_byte
- </UL>
- <BR>[Called By]<UL><LI><a href="#[93]">>></a> nca9555_task
- </UL>
- <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))
- <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = nca9555_set_output_mode ⇒ nca9555_write_byte ⇒ iic_wait_ack ⇒ iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e4]">>></a> nca9555_write_byte
- <LI><a href="#[e2]">>></a> nca9555_read_byte
- </UL>
- <BR>[Called By]<UL><LI><a href="#[93]">>></a> nca9555_task
- </UL>
- <P><STRONG><a name="[93]"></a>nca9555_task</STRONG> (Thumb, 54 bytes, Stack size 0 bytes, hal_nca9555.o(i.nca9555_task))
- <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = nca9555_task ⇒ nca9555_set_output_mode ⇒ nca9555_write_byte ⇒ iic_wait_ack ⇒ iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d1]">>></a> vTaskDelay
- <LI><a href="#[e5]">>></a> nca9555_set_output_mode
- <LI><a href="#[e3]">>></a> nca9555_set_gpio_output_status
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
- </UL>
- <P><STRONG><a name="[e4]"></a>nca9555_write_byte</STRONG> (Thumb, 62 bytes, Stack size 24 bytes, hal_nca9555.o(i.nca9555_write_byte))
- <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = nca9555_write_byte ⇒ iic_wait_ack ⇒ iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d9]">>></a> iic_start
- <LI><a href="#[d8]">>></a> iic_send_byte
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e5]">>></a> nca9555_set_output_mode
- <LI><a href="#[e3]">>></a> nca9555_set_gpio_output_status
- </UL>
- <P><STRONG><a name="[111]"></a>pvPortMalloc</STRONG> (Thumb, 338 bytes, Stack size 24 bytes, heap_4.o(i.pvPortMalloc))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[f9]">>></a> vTaskSuspendAll
- <LI><a href="#[113]">>></a> prvInsertBlockIntoFreeList
- <LI><a href="#[112]">>></a> prvHeapInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ef]">>></a> xQueueGenericCreate
- <LI><a href="#[e0]">>></a> xTaskCreate
- </UL>
- <P><STRONG><a name="[100]"></a>pxPortInitialiseStack</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, port.o(i.pxPortInitialiseStack))
- <BR><BR>[Called By]<UL><LI><a href="#[fe]">>></a> prvInitialiseNewTask
- </UL>
- <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))
- <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = spi_mpu_init_hc ⇒ DMA_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[117]">>></a> INTC_IrqSignIn
- <LI><a href="#[11c]">>></a> FCG_Fcg0PeriphClockCmd
- <LI><a href="#[11d]">>></a> DMA_StructInit
- <LI><a href="#[11e]">>></a> DMA_Init
- <LI><a href="#[120]">>></a> DMA_Cmd
- <LI><a href="#[b4]">>></a> DMA_ChCmd
- <LI><a href="#[11f]">>></a> AOS_SetTriggerEventSrc
- <LI><a href="#[116]">>></a> SPI_StructInit
- <LI><a href="#[11b]">>></a> SPI_Init
- <LI><a href="#[114]">>></a> GPIO_SetFunc
- <LI><a href="#[115]">>></a> FCG_Fcg1PeriphClockCmd
- <LI><a href="#[119]">>></a> __NVIC_SetPriority
- <LI><a href="#[11a]">>></a> __NVIC_EnableIRQ
- <LI><a href="#[118]">>></a> __NVIC_ClearPendingIRQ
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <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))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = sys_clk_init ⇒ CLK_SetClockDiv ⇒ SetSysClockDiv ⇒ CLK_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[a8]">>></a> CLK_SetClockDiv
- <LI><a href="#[124]">>></a> SRAM_SetWaitCycle
- <LI><a href="#[126]">>></a> GPIO_SetReadWaitCycle
- <LI><a href="#[121]">>></a> GPIO_AnalogCmd
- <LI><a href="#[125]">>></a> EFM_SetWaitCycle
- <LI><a href="#[122]">>></a> CLK_XtalStructInit
- <LI><a href="#[af]">>></a> CLK_XtalInit
- <LI><a href="#[ab]">>></a> CLK_SetSysClockSrc
- <LI><a href="#[123]">>></a> CLK_PLLStructInit
- <LI><a href="#[a7]">>></a> CLK_PLLInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <P><STRONG><a name="[e7]"></a>uxListRemove</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, list.o(i.uxListRemove))
- <BR><BR>[Called By]<UL><LI><a href="#[107]">>></a> prvProcessReceivedCommands
- <LI><a href="#[105]">>></a> prvProcessExpiredTimer
- <LI><a href="#[f1]">>></a> prvCheckTasksWaitingTermination
- <LI><a href="#[e6]">>></a> prvAddCurrentTaskToDelayedList
- <LI><a href="#[f6]">>></a> xTaskPriorityDisinherit
- </UL>
- <P><STRONG><a name="[ee]"></a>vListInitialise</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, list.o(i.vListInitialise))
- <BR><BR>[Called By]<UL><LI><a href="#[ed]">>></a> prvCheckForValidListAndQueue
- <LI><a href="#[eb]">>></a> prvInitialiseTaskLists
- <LI><a href="#[fd]">>></a> xQueueGenericReset
- </UL>
- <P><STRONG><a name="[ff]"></a>vListInitialiseItem</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, list.o(i.vListInitialiseItem))
- <BR><BR>[Called By]<UL><LI><a href="#[fe]">>></a> prvInitialiseNewTask
- </UL>
- <P><STRONG><a name="[e8]"></a>vListInsert</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, list.o(i.vListInsert))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = vListInsert
- </UL>
- <BR>[Called By]<UL><LI><a href="#[101]">>></a> prvInsertTimerInActiveList
- <LI><a href="#[e6]">>></a> prvAddCurrentTaskToDelayedList
- <LI><a href="#[12c]">>></a> vTaskPlaceOnEventList
- </UL>
- <P><STRONG><a name="[ea]"></a>vPortEnterCritical</STRONG> (Thumb, 76 bytes, Stack size 0 bytes, port.o(i.vPortEnterCritical))
- <BR><BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[ed]">>></a> prvCheckForValidListAndQueue
- <LI><a href="#[f1]">>></a> prvCheckTasksWaitingTermination
- <LI><a href="#[e9]">>></a> prvAddNewTaskToReadyList
- <LI><a href="#[134]">>></a> xTaskCheckForTimeOut
- <LI><a href="#[fd]">>></a> xQueueGenericReset
- <LI><a href="#[10b]">>></a> vQueueWaitForMessageRestricted
- <LI><a href="#[10f]">>></a> prvUnlockQueue
- <LI><a href="#[102]">>></a> prvIsQueueEmpty
- </UL>
- <P><STRONG><a name="[ec]"></a>vPortExitCritical</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, port.o(i.vPortExitCritical))
- <BR><BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[ed]">>></a> prvCheckForValidListAndQueue
- <LI><a href="#[f1]">>></a> prvCheckTasksWaitingTermination
- <LI><a href="#[e9]">>></a> prvAddNewTaskToReadyList
- <LI><a href="#[134]">>></a> xTaskCheckForTimeOut
- <LI><a href="#[fd]">>></a> xQueueGenericReset
- <LI><a href="#[10b]">>></a> vQueueWaitForMessageRestricted
- <LI><a href="#[10f]">>></a> prvUnlockQueue
- <LI><a href="#[102]">>></a> prvIsQueueEmpty
- </UL>
- <P><STRONG><a name="[f7]"></a>vPortFree</STRONG> (Thumb, 150 bytes, Stack size 16 bytes, heap_4.o(i.vPortFree))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[f9]">>></a> vTaskSuspendAll
- <LI><a href="#[113]">>></a> prvInsertBlockIntoFreeList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e0]">>></a> xTaskCreate
- <LI><a href="#[107]">>></a> prvProcessReceivedCommands
- <LI><a href="#[f2]">>></a> prvDeleteTCB
- </UL>
- <P><STRONG><a name="[12f]"></a>vPortSetupTimerInterrupt</STRONG> (Thumb, 86 bytes, Stack size 0 bytes, port.o(i.vPortSetupTimerInterrupt))
- <BR><BR>[Called By]<UL><LI><a href="#[12e]">>></a> xPortStartScheduler
- </UL>
- <P><STRONG><a name="[fa]"></a>vPortSuppressTicksAndSleep</STRONG> (Thumb, 320 bytes, Stack size 24 bytes, port.o(i.vPortSuppressTicksAndSleep))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = vPortSuppressTicksAndSleep
- </UL>
- <BR>[Calls]<UL><LI><a href="#[128]">>></a> vTaskStepTick
- <LI><a href="#[127]">>></a> eTaskConfirmSleepModeStatus
- </UL>
- <BR>[Called By]<UL><LI><a href="#[99]">>></a> prvIdleTask
- </UL>
- <P><STRONG><a name="[129]"></a>vPortValidateInterruptPriority</STRONG> (Thumb, 106 bytes, Stack size 16 bytes, port.o(i.vPortValidateInterruptPriority))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = vPortValidateInterruptPriority
- </UL>
- <BR>[Calls]<UL><LI><a href="#[12a]">>></a> vPortGetIPSR
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c1]">>></a> xQueueGenericSendFromISR
- </UL>
- <P><STRONG><a name="[f0]"></a>vQueueAddToRegistry</STRONG> (Thumb, 90 bytes, Stack size 12 bytes, queue.o(i.vQueueAddToRegistry))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = vQueueAddToRegistry
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ed]">>></a> prvCheckForValidListAndQueue
- </UL>
- <P><STRONG><a name="[10b]"></a>vQueueWaitForMessageRestricted</STRONG> (Thumb, 74 bytes, Stack size 24 bytes, queue.o(i.vQueueWaitForMessageRestricted))
- <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = vQueueWaitForMessageRestricted ⇒ prvUnlockQueue ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[12b]">>></a> vTaskPlaceOnEventListRestricted
- <LI><a href="#[10f]">>></a> prvUnlockQueue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[10a]">>></a> prvProcessTimerOrBlockTask
- </UL>
- <P><STRONG><a name="[d1]"></a>vTaskDelay</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, tasks.o(i.vTaskDelay))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[f9]">>></a> vTaskSuspendAll
- <LI><a href="#[e6]">>></a> prvAddCurrentTaskToDelayedList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[93]">>></a> nca9555_task
- <LI><a href="#[94]">>></a> ec600g_task
- <LI><a href="#[95]">>></a> mpu_task
- </UL>
- <P><STRONG><a name="[133]"></a>vTaskInternalSetTimeOutState</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, tasks.o(i.vTaskInternalSetTimeOutState))
- <BR><BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[134]">>></a> xTaskCheckForTimeOut
- </UL>
- <P><STRONG><a name="[110]"></a>vTaskMissedYield</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, tasks.o(i.vTaskMissedYield))
- <BR><BR>[Called By]<UL><LI><a href="#[10f]">>></a> prvUnlockQueue
- </UL>
- <P><STRONG><a name="[12c]"></a>vTaskPlaceOnEventList</STRONG> (Thumb, 52 bytes, Stack size 16 bytes, tasks.o(i.vTaskPlaceOnEventList))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = vTaskPlaceOnEventList ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e8]">>></a> vListInsert
- <LI><a href="#[e6]">>></a> prvAddCurrentTaskToDelayedList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- </UL>
- <P><STRONG><a name="[12b]"></a>vTaskPlaceOnEventListRestricted</STRONG> (Thumb, 94 bytes, Stack size 16 bytes, tasks.o(i.vTaskPlaceOnEventListRestricted))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = vTaskPlaceOnEventListRestricted ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e6]">>></a> prvAddCurrentTaskToDelayedList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[10b]">>></a> vQueueWaitForMessageRestricted
- </UL>
- <P><STRONG><a name="[e1]"></a>vTaskStartScheduler</STRONG> (Thumb, 122 bytes, Stack size 16 bytes, tasks.o(i.vTaskStartScheduler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = vTaskStartScheduler ⇒ xTimerCreateTimerTask ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e0]">>></a> xTaskCreate
- <LI><a href="#[12d]">>></a> xTimerCreateTimerTask
- <LI><a href="#[12e]">>></a> xPortStartScheduler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8f]">>></a> main
- </UL>
- <P><STRONG><a name="[128]"></a>vTaskStepTick</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, tasks.o(i.vTaskStepTick))
- <BR><BR>[Called By]<UL><LI><a href="#[fa]">>></a> vPortSuppressTicksAndSleep
- </UL>
- <P><STRONG><a name="[f9]"></a>vTaskSuspendAll</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, tasks.o(i.vTaskSuspendAll))
- <BR><BR>[Called By]<UL><LI><a href="#[d1]">>></a> vTaskDelay
- <LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[f7]">>></a> vPortFree
- <LI><a href="#[111]">>></a> pvPortMalloc
- <LI><a href="#[10a]">>></a> prvProcessTimerOrBlockTask
- <LI><a href="#[99]">>></a> prvIdleTask
- </UL>
- <P><STRONG><a name="[9d]"></a>vTaskSwitchContext</STRONG> (Thumb, 118 bytes, Stack size 0 bytes, tasks.o(i.vTaskSwitchContext))
- <BR><BR>[Called By]<UL><LI><a href="#[9]">>></a> PendSV_Handler
- </UL>
- <P><STRONG><a name="[12e]"></a>xPortStartScheduler</STRONG> (Thumb, 330 bytes, Stack size 16 bytes, port.o(i.xPortStartScheduler))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xPortStartScheduler
- </UL>
- <BR>[Calls]<UL><LI><a href="#[12f]">>></a> vPortSetupTimerInterrupt
- <LI><a href="#[130]">>></a> __asm___6_port_c_39a90d8d__prvEnableVFP
- <LI><a href="#[131]">>></a> __asm___6_port_c_39a90d8d__prvStartFirstTask
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e1]">>></a> vTaskStartScheduler
- </UL>
- <P><STRONG><a name="[ef]"></a>xQueueGenericCreate</STRONG> (Thumb, 102 bytes, Stack size 32 bytes, queue.o(i.xQueueGenericCreate))
- <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = xQueueGenericCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[111]">>></a> pvPortMalloc
- <LI><a href="#[fc]">>></a> prvInitialiseNewQueue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ed]">>></a> prvCheckForValidListAndQueue
- </UL>
- <P><STRONG><a name="[fd]"></a>xQueueGenericReset</STRONG> (Thumb, 214 bytes, Stack size 24 bytes, queue.o(i.xQueueGenericReset))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = xQueueGenericReset ⇒ xTaskRemoveFromEventList
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[ee]">>></a> vListInitialise
- <LI><a href="#[104]">>></a> xTaskRemoveFromEventList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[fc]">>></a> prvInitialiseNewQueue
- </UL>
- <P><STRONG><a name="[c1]"></a>xQueueGenericSendFromISR</STRONG> (Thumb, 310 bytes, Stack size 40 bytes, queue.o(i.xQueueGenericSendFromISR))
- <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = xQueueGenericSendFromISR ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[104]">>></a> xTaskRemoveFromEventList
- <LI><a href="#[129]">>></a> vPortValidateInterruptPriority
- <LI><a href="#[103]">>></a> prvNotifyQueueSetContainer
- <LI><a href="#[f5]">>></a> prvCopyDataToQueue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[83]">>></a> MCAN2_INT0_Handler
- <LI><a href="#[81]">>></a> MCAN1_INT0_Handler
- </UL>
- <P><STRONG><a name="[109]"></a>xQueueReceive</STRONG> (Thumb, 356 bytes, Stack size 48 bytes, queue.o(i.xQueueReceive))
- <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = xQueueReceive ⇒ prvUnlockQueue ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[132]">>></a> xTaskGetSchedulerState
- <LI><a href="#[f9]">>></a> vTaskSuspendAll
- <LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[104]">>></a> xTaskRemoveFromEventList
- <LI><a href="#[134]">>></a> xTaskCheckForTimeOut
- <LI><a href="#[12c]">>></a> vTaskPlaceOnEventList
- <LI><a href="#[133]">>></a> vTaskInternalSetTimeOutState
- <LI><a href="#[10f]">>></a> prvUnlockQueue
- <LI><a href="#[102]">>></a> prvIsQueueEmpty
- <LI><a href="#[f3]">>></a> prvCopyDataFromQueue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[107]">>></a> prvProcessReceivedCommands
- </UL>
- <P><STRONG><a name="[134]"></a>xTaskCheckForTimeOut</STRONG> (Thumb, 136 bytes, Stack size 16 bytes, tasks.o(i.xTaskCheckForTimeOut))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xTaskCheckForTimeOut
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[133]">>></a> vTaskInternalSetTimeOutState
- </UL>
- <BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- </UL>
- <P><STRONG><a name="[e0]"></a>xTaskCreate</STRONG> (Thumb, 96 bytes, Stack size 72 bytes, tasks.o(i.xTaskCreate))
- <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f7]">>></a> vPortFree
- <LI><a href="#[111]">>></a> pvPortMalloc
- <LI><a href="#[fe]">>></a> prvInitialiseNewTask
- <LI><a href="#[e9]">>></a> prvAddNewTaskToReadyList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e1]">>></a> vTaskStartScheduler
- <LI><a href="#[8f]">>></a> main
- <LI><a href="#[12d]">>></a> xTimerCreateTimerTask
- </UL>
- <P><STRONG><a name="[132]"></a>xTaskGetSchedulerState</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, tasks.o(i.xTaskGetSchedulerState))
- <BR><BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- </UL>
- <P><STRONG><a name="[10c]"></a>xTaskGetTickCount</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, tasks.o(i.xTaskGetTickCount))
- <BR><BR>[Called By]<UL><LI><a href="#[108]">>></a> prvSampleTimeNow
- </UL>
- <P><STRONG><a name="[c8]"></a>xTaskIncrementTick</STRONG> (Thumb, 398 bytes, Stack size 24 bytes, tasks.o(i.xTaskIncrementTick))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[135]">>></a> prvResetNextTaskUnblockTime
- </UL>
- <BR>[Called By]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[a]">>></a> SysTick_Handler
- </UL>
- <P><STRONG><a name="[f6]"></a>xTaskPriorityDisinherit</STRONG> (Thumb, 226 bytes, Stack size 16 bytes, tasks.o(i.xTaskPriorityDisinherit))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e7]">>></a> uxListRemove
- </UL>
- <BR>[Called By]<UL><LI><a href="#[f5]">>></a> prvCopyDataToQueue
- </UL>
- <P><STRONG><a name="[104]"></a>xTaskRemoveFromEventList</STRONG> (Thumb, 268 bytes, Stack size 16 bytes, tasks.o(i.xTaskRemoveFromEventList))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = xTaskRemoveFromEventList
- </UL>
- <BR>[Calls]<UL><LI><a href="#[135]">>></a> prvResetNextTaskUnblockTime
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c1]">>></a> xQueueGenericSendFromISR
- <LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[fd]">>></a> xQueueGenericReset
- <LI><a href="#[10f]">>></a> prvUnlockQueue
- <LI><a href="#[103]">>></a> prvNotifyQueueSetContainer
- </UL>
- <P><STRONG><a name="[fb]"></a>xTaskResumeAll</STRONG> (Thumb, 338 bytes, Stack size 16 bytes, tasks.o(i.xTaskResumeAll))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[c8]">>></a> xTaskIncrementTick
- <LI><a href="#[135]">>></a> prvResetNextTaskUnblockTime
- </UL>
- <BR>[Called By]<UL><LI><a href="#[d1]">>></a> vTaskDelay
- <LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[f7]">>></a> vPortFree
- <LI><a href="#[111]">>></a> pvPortMalloc
- <LI><a href="#[10a]">>></a> prvProcessTimerOrBlockTask
- <LI><a href="#[99]">>></a> prvIdleTask
- </UL>
- <P><STRONG><a name="[12d]"></a>xTimerCreateTimerTask</STRONG> (Thumb, 64 bytes, Stack size 16 bytes, timers.o(i.xTimerCreateTimerTask))
- <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = xTimerCreateTimerTask ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e0]">>></a> xTaskCreate
- <LI><a href="#[ed]">>></a> prvCheckForValidListAndQueue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e1]">>></a> vTaskStartScheduler
- </UL>
- <P>
- <H3>
- Local Symbols
- </H3>
- <P><STRONG><a name="[c4]"></a>SDA_IN1</STRONG> (Thumb, 26 bytes, Stack size 32 bytes, hal_nca9555.o(i.SDA_IN1))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = SDA_IN1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c5]">>></a> GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[d5]">>></a> iic_recive_byte
- </UL>
- <P><STRONG><a name="[c6]"></a>SDA_OUT1</STRONG> (Thumb, 30 bytes, Stack size 32 bytes, hal_nca9555.o(i.SDA_OUT1))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c5]">>></a> GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d9]">>></a> iic_start
- <LI><a href="#[d8]">>></a> iic_send_byte
- </UL>
- <P><STRONG><a name="[d7]"></a>delay_us</STRONG> (Thumb, 362 bytes, Stack size 0 bytes, hal_nca9555.o(i.delay_us))
- <BR><BR>[Called By]<UL><LI><a href="#[db]">>></a> iic_wait_ack
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d9]">>></a> iic_start
- <LI><a href="#[d8]">>></a> iic_send_byte
- <LI><a href="#[d5]">>></a> iic_recive_byte
- </UL>
- <P><STRONG><a name="[d2]"></a>iic1_init</STRONG> (Thumb, 70 bytes, Stack size 32 bytes, hal_nca9555.o(i.iic1_init))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = iic1_init ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d3]">>></a> GPIO_StructInit
- <LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[c5]">>></a> GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[df]">>></a> nca9555_init
- </UL>
- <P><STRONG><a name="[d5]"></a>iic_recive_byte</STRONG> (Thumb, 78 bytes, Stack size 16 bytes, hal_nca9555.o(i.iic_recive_byte))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = iic_recive_byte ⇒ SDA_IN1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[d6]">>></a> GPIO_ResetPins
- <LI><a href="#[d7]">>></a> delay_us
- <LI><a href="#[c4]">>></a> SDA_IN1
- <LI><a href="#[b9]">>></a> GPIO_ReadInputPins
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e2]">>></a> nca9555_read_byte
- </UL>
- <P><STRONG><a name="[d8]"></a>iic_send_byte</STRONG> (Thumb, 96 bytes, Stack size 16 bytes, hal_nca9555.o(i.iic_send_byte))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = iic_send_byte ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[d6]">>></a> GPIO_ResetPins
- <LI><a href="#[d7]">>></a> delay_us
- <LI><a href="#[c6]">>></a> SDA_OUT1
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e4]">>></a> nca9555_write_byte
- <LI><a href="#[e2]">>></a> nca9555_read_byte
- </UL>
- <P><STRONG><a name="[d9]"></a>iic_start</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, hal_nca9555.o(i.iic_start))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = iic_start ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[d6]">>></a> GPIO_ResetPins
- <LI><a href="#[d7]">>></a> delay_us
- <LI><a href="#[c6]">>></a> SDA_OUT1
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e4]">>></a> nca9555_write_byte
- <LI><a href="#[e2]">>></a> nca9555_read_byte
- </UL>
- <P><STRONG><a name="[da]"></a>iic_stop</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, hal_nca9555.o(i.iic_stop))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[d6]">>></a> GPIO_ResetPins
- <LI><a href="#[d7]">>></a> delay_us
- <LI><a href="#[c6]">>></a> SDA_OUT1
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e4]">>></a> nca9555_write_byte
- <LI><a href="#[e2]">>></a> nca9555_read_byte
- <LI><a href="#[db]">>></a> iic_wait_ack
- </UL>
- <P><STRONG><a name="[db]"></a>iic_wait_ack</STRONG> (Thumb, 94 bytes, Stack size 8 bytes, hal_nca9555.o(i.iic_wait_ack))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = iic_wait_ack ⇒ iic_stop ⇒ SDA_OUT1 ⇒ GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d4]">>></a> GPIO_SetPins
- <LI><a href="#[d6]">>></a> GPIO_ResetPins
- <LI><a href="#[da]">>></a> iic_stop
- <LI><a href="#[d7]">>></a> delay_us
- <LI><a href="#[c6]">>></a> SDA_OUT1
- <LI><a href="#[c4]">>></a> SDA_IN1
- <LI><a href="#[b9]">>></a> GPIO_ReadInputPins
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e4]">>></a> nca9555_write_byte
- <LI><a href="#[e2]">>></a> nca9555_read_byte
- </UL>
- <P><STRONG><a name="[b0]"></a>DMA_ReloadConfig</STRONG> (Thumb, 68 bytes, Stack size 8 bytes, hal_ec600g.o(i.DMA_ReloadConfig))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = DMA_ReloadConfig ⇒ DMA_SetTransCount
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b2]">>></a> DMA_SetTransCount
- <LI><a href="#[b1]">>></a> DMA_SetSrcAddr
- <LI><a href="#[b4]">>></a> DMA_ChCmd
- <LI><a href="#[b3]">>></a> DMA_SetDestAddr
- </UL>
- <BR>[Called By]<UL><LI><a href="#[94]">>></a> ec600g_task
- </UL>
- <P><STRONG><a name="[98]"></a>DMA_TransCompleteCallback</STRONG> (Thumb, 12 bytes, Stack size 8 bytes, hal_ec600g.o(i.DMA_TransCompleteCallback))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DMA_TransCompleteCallback
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b5]">>></a> DMA_ClearTransCompleteStatus
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> hal_ec600g.o(i.spi_mpu_init_hc)
- </UL>
- <P><STRONG><a name="[97]"></a>SPI_IDLECallback</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hal_ec600g.o(i.SPI_IDLECallback))
- <BR>[Address Reference Count : 1]<UL><LI> hal_ec600g.o(i.spi_mpu_init_hc)
- </UL>
- <P><STRONG><a name="[118]"></a>__NVIC_ClearPendingIRQ</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, hal_ec600g.o(i.__NVIC_ClearPendingIRQ))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[11a]"></a>__NVIC_EnableIRQ</STRONG> (Thumb, 34 bytes, Stack size 0 bytes, hal_ec600g.o(i.__NVIC_EnableIRQ))
- <BR><BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[119]"></a>__NVIC_SetPriority</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, hal_ec600g.o(i.__NVIC_SetPriority))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __NVIC_SetPriority
- </UL>
- <BR>[Called By]<UL><LI><a href="#[dd]">>></a> spi_mpu_init_hc
- </UL>
- <P><STRONG><a name="[bd]"></a>PWC_REG_Lock</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, hc32_ll.o(i.PWC_REG_Lock))
- <BR><BR>[Called By]<UL><LI><a href="#[bc]">>></a> LL_PERIPH_WP
- </UL>
- <P><STRONG><a name="[bb]"></a>PWC_REG_Unlock</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, hc32_ll.o(i.PWC_REG_Unlock))
- <BR><BR>[Called By]<UL><LI><a href="#[ba]">>></a> LL_PERIPH_WE
- </UL>
- <P><STRONG><a name="[c7]"></a>CLK_Delay</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hc32_ll_clk.o(i.CLK_Delay))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CLK_Delay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ac]">>></a> SetSysClockSrc
- <LI><a href="#[a9]">>></a> SetSysClockDiv
- </UL>
- <P><STRONG><a name="[a6]"></a>CLK_WaitStable</STRONG> (Thumb, 48 bytes, Stack size 12 bytes, hc32_ll_clk.o(i.CLK_WaitStable))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = CLK_WaitStable
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> CLK_GetStableStatus
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ae]">>></a> CLK_XtalCmd
- <LI><a href="#[a5]">>></a> CLK_PLLCmd
- </UL>
- <P><STRONG><a name="[a9]"></a>SetSysClockDiv</STRONG> (Thumb, 196 bytes, Stack size 40 bytes, hc32_ll_clk.o(i.SetSysClockDiv))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = SetSysClockDiv ⇒ CLK_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c7]">>></a> CLK_Delay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a8]">>></a> CLK_SetClockDiv
- </UL>
- <P><STRONG><a name="[ac]"></a>SetSysClockSrc</STRONG> (Thumb, 180 bytes, Stack size 32 bytes, hc32_ll_clk.o(i.SetSysClockSrc))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = SetSysClockSrc ⇒ CLK_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c7]">>></a> CLK_Delay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ab]">>></a> CLK_SetSysClockSrc
- </UL>
- <P><STRONG><a name="[c3]"></a>MCAN_GetRxBufferNum</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, hc32_ll_mcan.o(i.MCAN_GetRxBufferNum))
- <BR><BR>[Called By]<UL><LI><a href="#[c0]">>></a> MCAN_GetRxMsg
- </UL>
- <P><STRONG><a name="[ca]"></a>USART_WaitStatus</STRONG> (Thumb, 56 bytes, Stack size 24 bytes, hc32_ll_usart.o(i.USART_WaitStatus))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = USART_WaitStatus
- </UL>
- <BR>[Calls]<UL><LI><a href="#[cc]">>></a> USART_GetStatus
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c9]">>></a> USART_UART_Trans
- </UL>
- <P><STRONG><a name="[f3]"></a>prvCopyDataFromQueue</STRONG> (Thumb, 42 bytes, Stack size 16 bytes, queue.o(i.prvCopyDataFromQueue))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = prvCopyDataFromQueue
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f4]">>></a> __aeabi_memcpy
- </UL>
- <BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- </UL>
- <P><STRONG><a name="[f5]"></a>prvCopyDataToQueue</STRONG> (Thumb, 126 bytes, Stack size 24 bytes, queue.o(i.prvCopyDataToQueue))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f6]">>></a> xTaskPriorityDisinherit
- <LI><a href="#[f4]">>></a> __aeabi_memcpy
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c1]">>></a> xQueueGenericSendFromISR
- <LI><a href="#[103]">>></a> prvNotifyQueueSetContainer
- </UL>
- <P><STRONG><a name="[fc]"></a>prvInitialiseNewQueue</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, queue.o(i.prvInitialiseNewQueue))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fd]">>></a> xQueueGenericReset
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ef]">>></a> xQueueGenericCreate
- </UL>
- <P><STRONG><a name="[102]"></a>prvIsQueueEmpty</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, queue.o(i.prvIsQueueEmpty))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = prvIsQueueEmpty
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- </UL>
- <BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- </UL>
- <P><STRONG><a name="[103]"></a>prvNotifyQueueSetContainer</STRONG> (Thumb, 172 bytes, Stack size 24 bytes, queue.o(i.prvNotifyQueueSetContainer))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[104]">>></a> xTaskRemoveFromEventList
- <LI><a href="#[f5]">>></a> prvCopyDataToQueue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c1]">>></a> xQueueGenericSendFromISR
- <LI><a href="#[10f]">>></a> prvUnlockQueue
- </UL>
- <P><STRONG><a name="[10f]"></a>prvUnlockQueue</STRONG> (Thumb, 144 bytes, Stack size 16 bytes, queue.o(i.prvUnlockQueue))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = prvUnlockQueue ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[104]">>></a> xTaskRemoveFromEventList
- <LI><a href="#[110]">>></a> vTaskMissedYield
- <LI><a href="#[103]">>></a> prvNotifyQueueSetContainer
- </UL>
- <BR>[Called By]<UL><LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[10b]">>></a> vQueueWaitForMessageRestricted
- </UL>
- <P><STRONG><a name="[e6]"></a>prvAddCurrentTaskToDelayedList</STRONG> (Thumb, 164 bytes, Stack size 24 bytes, tasks.o(i.prvAddCurrentTaskToDelayedList))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = prvAddCurrentTaskToDelayedList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e8]">>></a> vListInsert
- <LI><a href="#[e7]">>></a> uxListRemove
- </UL>
- <BR>[Called By]<UL><LI><a href="#[d1]">>></a> vTaskDelay
- <LI><a href="#[12b]">>></a> vTaskPlaceOnEventListRestricted
- <LI><a href="#[12c]">>></a> vTaskPlaceOnEventList
- </UL>
- <P><STRONG><a name="[e9]"></a>prvAddNewTaskToReadyList</STRONG> (Thumb, 206 bytes, Stack size 8 bytes, tasks.o(i.prvAddNewTaskToReadyList))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = prvAddNewTaskToReadyList ⇒ prvInitialiseTaskLists
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[eb]">>></a> prvInitialiseTaskLists
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e0]">>></a> xTaskCreate
- </UL>
- <P><STRONG><a name="[f1]"></a>prvCheckTasksWaitingTermination</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, tasks.o(i.prvCheckTasksWaitingTermination))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = prvCheckTasksWaitingTermination ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e7]">>></a> uxListRemove
- <LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[f2]">>></a> prvDeleteTCB
- </UL>
- <BR>[Called By]<UL><LI><a href="#[99]">>></a> prvIdleTask
- </UL>
- <P><STRONG><a name="[f2]"></a>prvDeleteTCB</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, tasks.o(i.prvDeleteTCB))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f7]">>></a> vPortFree
- </UL>
- <BR>[Called By]<UL><LI><a href="#[f1]">>></a> prvCheckTasksWaitingTermination
- </UL>
- <P><STRONG><a name="[f8]"></a>prvGetExpectedIdleTime</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, tasks.o(i.prvGetExpectedIdleTime))
- <BR><BR>[Called By]<UL><LI><a href="#[99]">>></a> prvIdleTask
- </UL>
- <P><STRONG><a name="[99]"></a>prvIdleTask</STRONG> (Thumb, 108 bytes, Stack size 0 bytes, tasks.o(i.prvIdleTask))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = prvIdleTask ⇒ prvCheckTasksWaitingTermination ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[f9]">>></a> vTaskSuspendAll
- <LI><a href="#[fa]">>></a> vPortSuppressTicksAndSleep
- <LI><a href="#[f8]">>></a> prvGetExpectedIdleTime
- <LI><a href="#[f1]">>></a> prvCheckTasksWaitingTermination
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> tasks.o(i.vTaskStartScheduler)
- </UL>
- <P><STRONG><a name="[fe]"></a>prvInitialiseNewTask</STRONG> (Thumb, 224 bytes, Stack size 40 bytes, tasks.o(i.prvInitialiseNewTask))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = prvInitialiseNewTask
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ff]">>></a> vListInitialiseItem
- <LI><a href="#[100]">>></a> pxPortInitialiseStack
- <LI><a href="#[a2]">>></a> __aeabi_memset
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e0]">>></a> xTaskCreate
- </UL>
- <P><STRONG><a name="[eb]"></a>prvInitialiseTaskLists</STRONG> (Thumb, 70 bytes, Stack size 8 bytes, tasks.o(i.prvInitialiseTaskLists))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = prvInitialiseTaskLists
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ee]">>></a> vListInitialise
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e9]">>></a> prvAddNewTaskToReadyList
- </UL>
- <P><STRONG><a name="[135]"></a>prvResetNextTaskUnblockTime</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, tasks.o(i.prvResetNextTaskUnblockTime))
- <BR><BR>[Called By]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[c8]">>></a> xTaskIncrementTick
- <LI><a href="#[104]">>></a> xTaskRemoveFromEventList
- </UL>
- <P><STRONG><a name="[ed]"></a>prvCheckForValidListAndQueue</STRONG> (Thumb, 72 bytes, Stack size 8 bytes, timers.o(i.prvCheckForValidListAndQueue))
- <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = prvCheckForValidListAndQueue ⇒ xQueueGenericCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ef]">>></a> xQueueGenericCreate
- <LI><a href="#[ec]">>></a> vPortExitCritical
- <LI><a href="#[ea]">>></a> vPortEnterCritical
- <LI><a href="#[ee]">>></a> vListInitialise
- <LI><a href="#[f0]">>></a> vQueueAddToRegistry
- </UL>
- <BR>[Called By]<UL><LI><a href="#[12d]">>></a> xTimerCreateTimerTask
- </UL>
- <P><STRONG><a name="[10e]"></a>prvGetNextExpireTime</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, timers.o(i.prvGetNextExpireTime))
- <BR><BR>[Called By]<UL><LI><a href="#[9a]">>></a> prvTimerTask
- </UL>
- <P><STRONG><a name="[101]"></a>prvInsertTimerInActiveList</STRONG> (Thumb, 80 bytes, Stack size 24 bytes, timers.o(i.prvInsertTimerInActiveList))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = prvInsertTimerInActiveList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e8]">>></a> vListInsert
- </UL>
- <BR>[Called By]<UL><LI><a href="#[106]">>></a> prvReloadTimer
- <LI><a href="#[107]">>></a> prvProcessReceivedCommands
- </UL>
- <P><STRONG><a name="[105]"></a>prvProcessExpiredTimer</STRONG> (Thumb, 62 bytes, Stack size 16 bytes, timers.o(i.prvProcessExpiredTimer))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prvProcessExpiredTimer ⇒ prvReloadTimer ⇒ prvInsertTimerInActiveList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[e7]">>></a> uxListRemove
- <LI><a href="#[106]">>></a> prvReloadTimer
- </UL>
- <BR>[Called By]<UL><LI><a href="#[10d]">>></a> prvSwitchTimerLists
- <LI><a href="#[10a]">>></a> prvProcessTimerOrBlockTask
- </UL>
- <P><STRONG><a name="[107]"></a>prvProcessReceivedCommands</STRONG> (Thumb, 280 bytes, Stack size 32 bytes, timers.o(i.prvProcessReceivedCommands))
- <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = prvProcessReceivedCommands ⇒ xQueueReceive ⇒ prvUnlockQueue ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[109]">>></a> xQueueReceive
- <LI><a href="#[e7]">>></a> uxListRemove
- <LI><a href="#[f7]">>></a> vPortFree
- <LI><a href="#[108]">>></a> prvSampleTimeNow
- <LI><a href="#[106]">>></a> prvReloadTimer
- <LI><a href="#[101]">>></a> prvInsertTimerInActiveList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9a]">>></a> prvTimerTask
- </UL>
- <P><STRONG><a name="[10a]"></a>prvProcessTimerOrBlockTask</STRONG> (Thumb, 102 bytes, Stack size 24 bytes, timers.o(i.prvProcessTimerOrBlockTask))
- <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = prvProcessTimerOrBlockTask ⇒ vQueueWaitForMessageRestricted ⇒ prvUnlockQueue ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fb]">>></a> xTaskResumeAll
- <LI><a href="#[f9]">>></a> vTaskSuspendAll
- <LI><a href="#[108]">>></a> prvSampleTimeNow
- <LI><a href="#[105]">>></a> prvProcessExpiredTimer
- <LI><a href="#[10b]">>></a> vQueueWaitForMessageRestricted
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9a]">>></a> prvTimerTask
- </UL>
- <P><STRONG><a name="[106]"></a>prvReloadTimer</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, timers.o(i.prvReloadTimer))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = prvReloadTimer ⇒ prvInsertTimerInActiveList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[101]">>></a> prvInsertTimerInActiveList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[107]">>></a> prvProcessReceivedCommands
- <LI><a href="#[105]">>></a> prvProcessExpiredTimer
- </UL>
- <P><STRONG><a name="[108]"></a>prvSampleTimeNow</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, timers.o(i.prvSampleTimeNow))
- <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = prvSampleTimeNow ⇒ prvSwitchTimerLists ⇒ prvProcessExpiredTimer ⇒ prvReloadTimer ⇒ prvInsertTimerInActiveList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[10d]">>></a> prvSwitchTimerLists
- <LI><a href="#[10c]">>></a> xTaskGetTickCount
- </UL>
- <BR>[Called By]<UL><LI><a href="#[10a]">>></a> prvProcessTimerOrBlockTask
- <LI><a href="#[107]">>></a> prvProcessReceivedCommands
- </UL>
- <P><STRONG><a name="[10d]"></a>prvSwitchTimerLists</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, timers.o(i.prvSwitchTimerLists))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = prvSwitchTimerLists ⇒ prvProcessExpiredTimer ⇒ prvReloadTimer ⇒ prvInsertTimerInActiveList ⇒ vListInsert
- </UL>
- <BR>[Calls]<UL><LI><a href="#[105]">>></a> prvProcessExpiredTimer
- </UL>
- <BR>[Called By]<UL><LI><a href="#[108]">>></a> prvSampleTimeNow
- </UL>
- <P><STRONG><a name="[9a]"></a>prvTimerTask</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, timers.o(i.prvTimerTask))
- <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = prvTimerTask ⇒ prvProcessReceivedCommands ⇒ xQueueReceive ⇒ prvUnlockQueue ⇒ prvNotifyQueueSetContainer ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[10a]">>></a> prvProcessTimerOrBlockTask
- <LI><a href="#[107]">>></a> prvProcessReceivedCommands
- <LI><a href="#[10e]">>></a> prvGetNextExpireTime
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> timers.o(i.xTimerCreateTimerTask)
- </UL>
- <P><STRONG><a name="[112]"></a>prvHeapInit</STRONG> (Thumb, 98 bytes, Stack size 12 bytes, heap_4.o(i.prvHeapInit))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = prvHeapInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[111]">>></a> pvPortMalloc
- </UL>
- <P><STRONG><a name="[113]"></a>prvInsertBlockIntoFreeList</STRONG> (Thumb, 96 bytes, Stack size 8 bytes, heap_4.o(i.prvInsertBlockIntoFreeList))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = prvInsertBlockIntoFreeList
- </UL>
- <BR>[Called By]<UL><LI><a href="#[f7]">>></a> vPortFree
- <LI><a href="#[111]">>></a> pvPortMalloc
- </UL>
- <P><STRONG><a name="[96]"></a>prvTaskExitError</STRONG> (Thumb, 60 bytes, Stack size 0 bytes, port.o(i.prvTaskExitError))
- <BR>[Address Reference Count : 1]<UL><LI> port.o(i.pxPortInitialiseStack)
- </UL>
- <P><STRONG><a name="[ce]"></a>_printf_core</STRONG> (Thumb, 996 bytes, Stack size 104 bytes, printf8.o(i._printf_core), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[cf]">>></a> _printf_pre_padding
- <LI><a href="#[d0]">>></a> _printf_post_padding
- <LI><a href="#[9e]">>></a> __aeabi_uldivmod
- </UL>
- <BR>[Called By]<UL><LI><a href="#[cd]">>></a> __0printf$8
- </UL>
- <P><STRONG><a name="[d0]"></a>_printf_post_padding</STRONG> (Thumb, 36 bytes, Stack size 24 bytes, printf8.o(i._printf_post_padding), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[ce]">>></a> _printf_core
- </UL>
- <P><STRONG><a name="[cf]"></a>_printf_pre_padding</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, printf8.o(i._printf_pre_padding), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[ce]">>></a> _printf_core
- </UL>
- <P>
- <H3>
- Undefined Global Symbols
- </H3><HR></body></html>
|