| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944 |
- <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
- <html><head>
- <title>Static Call Graph - [epd-demo\epd-demo.axf]</title></head>
- <body><HR>
- <H1>Static Call Graph for image epd-demo\epd-demo.axf</H1><HR>
- <BR><P>#<CALLGRAPH># ARM Linker, 5060750: Last Updated: Sat Oct 22 15:16:48 2022
- <BR><P>
- <H3>Maximum Stack Usage = 760 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
- Call chain for Maximum Stack Depth:</H3>
- main ⇒ EPD_test ⇒ Paint_DrawNum ⇒ Paint_DrawString_EN ⇒ Paint_DrawChar ⇒ Paint_SetPixel ⇒ __2printf
- <P>
- <H3>
- Mutually Recursive functions
- </H3> <LI><a href="#[1c]">ADC1_2_IRQHandler</a> ⇒ <a href="#[1c]">ADC1_2_IRQHandler</a><BR>
- <LI><a href="#[6a]">Error_Handler</a> ⇒ <a href="#[6a]">Error_Handler</a><BR>
- <LI><a href="#[3]">MemManage_Handler</a> ⇒ <a href="#[3]">MemManage_Handler</a><BR>
- <LI><a href="#[4]">BusFault_Handler</a> ⇒ <a href="#[4]">BusFault_Handler</a><BR>
- <LI><a href="#[5]">UsageFault_Handler</a> ⇒ <a href="#[5]">UsageFault_Handler</a><BR>
- </UL>
- <P>
- <H3>
- Function Pointers
- </H3><UL>
- <LI><a href="#[1c]">ADC1_2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[39]">ADC3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[4]">BusFault_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[1f]">CAN1_RX1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[20]">CAN1_SCE_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[15]">DMA1_Channel1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[16]">DMA1_Channel2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[17]">DMA1_Channel3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[18]">DMA1_Channel4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[19]">DMA1_Channel5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[1a]">DMA1_Channel6_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[1b]">DMA1_Channel7_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[42]">DMA2_Channel1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[43]">DMA2_Channel2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[44]">DMA2_Channel3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[45]">DMA2_Channel4_5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[7]">DebugMon_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[10]">EXTI0_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[32]">EXTI15_10_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[11]">EXTI1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[12]">EXTI2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[13]">EXTI3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[14]">EXTI4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[21]">EXTI9_5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[e]">FLASH_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3a]">FSMC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[2]">HardFault_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[2a]">I2C1_ER_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[29]">I2C1_EV_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[2c]">I2C2_ER_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[2b]">I2C2_EV_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3]">MemManage_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[1]">NMI_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[b]">PVD_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[8]">PendSV_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[f]">RCC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[33]">RTC_Alarm_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[d]">RTC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[0]">Reset_Handler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3b]">SDIO_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[2d]">SPI1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[2e]">SPI2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3d]">SPI3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[4b]">SPI_2linesRxISR_16BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[4d]">SPI_2linesRxISR_8BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[4c]">SPI_2linesTxISR_16BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[4e]">SPI_2linesTxISR_8BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[59]">SPI_AbortRx_ISR</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[58]">SPI_AbortTx_ISR</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[5c]">SPI_DMAAbortOnError</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[53]">SPI_DMAError</a> from stm32f1xx_hal_spi.o(.text) referenced 2 times from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[56]">SPI_DMAHalfReceiveCplt</a> from stm32f1xx_hal_spi.o(.text) referenced 2 times from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[51]">SPI_DMAHalfTransmitCplt</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[54]">SPI_DMAHalfTransmitReceiveCplt</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[57]">SPI_DMAReceiveCplt</a> from stm32f1xx_hal_spi.o(.text) referenced 2 times from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[5b]">SPI_DMARxAbortCallback</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[52]">SPI_DMATransmitCplt</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[55]">SPI_DMATransmitReceiveCplt</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[5a]">SPI_DMATxAbortCallback</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[4f]">SPI_RxISR_16BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[50]">SPI_RxISR_8BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[49]">SPI_TxISR_16BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[4a]">SPI_TxISR_8BIT</a> from stm32f1xx_hal_spi.o(.text) referenced from stm32f1xx_hal_spi.o(.text)
- <LI><a href="#[6]">SVC_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[9]">SysTick_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[47]">SystemInit</a> from system_stm32f1xx.o(.text) referenced from startup_stm32f103xe.o(.text)
- <LI><a href="#[c]">TAMPER_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[22]">TIM1_BRK_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[25]">TIM1_CC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[24]">TIM1_TRG_COM_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[23]">TIM1_UP_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[26]">TIM2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[27]">TIM3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[28]">TIM4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3c]">TIM5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[40]">TIM6_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[41]">TIM7_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[35]">TIM8_BRK_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[38]">TIM8_CC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[37]">TIM8_TRG_COM_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[36]">TIM8_UP_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3e]">UART4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[3f]">UART5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[66]">UART_DMAAbortOnError</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[5f]">UART_DMAError</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[60]">UART_DMAReceiveCplt</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[63]">UART_DMARxAbortCallback</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[61]">UART_DMARxHalfCplt</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[65]">UART_DMARxOnlyAbortCallback</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[5d]">UART_DMATransmitCplt</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[62]">UART_DMATxAbortCallback</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[5e]">UART_DMATxHalfCplt</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[64]">UART_DMATxOnlyAbortCallback</a> from stm32f1xx_hal_uart.o(.text) referenced from stm32f1xx_hal_uart.o(.text)
- <LI><a href="#[2f]">USART1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[30]">USART2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[31]">USART3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[34]">USBWakeUp_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[1d]">USB_HP_CAN1_TX_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[1e]">USB_LP_CAN1_RX0_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[5]">UsageFault_Handler</a> from stm32f1xx_it.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[a]">WWDG_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
- <LI><a href="#[48]">__main</a> from entry.o(.ARM.Collect$$$$00000000) referenced from startup_stm32f103xe.o(.text)
- <LI><a href="#[67]">fputc</a> from usart.o(.text) referenced from printf3.o(i.__0printf$3)
- <LI><a href="#[46]">main</a> from main.o(.text) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
- </UL>
- <P>
- <H3>
- Global Symbols
- </H3>
- <P><STRONG><a name="[48]"></a>__main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(.text)
- </UL>
- <P><STRONG><a name="[10f]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
- <P><STRONG><a name="[68]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
- <BR><BR>[Calls]<UL><LI><a href="#[69]">>></a> __scatterload
- </UL>
- <P><STRONG><a name="[10b]"></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="#[69]">>></a> __scatterload
- </UL>
- <P><STRONG><a name="[110]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
- <P><STRONG><a name="[111]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
- <P><STRONG><a name="[112]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
- <P><STRONG><a name="[113]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000D))
- <P><STRONG><a name="[114]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F))
- <P><STRONG><a name="[0]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[1c]"></a>ADC1_2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[1c]">>></a> ADC1_2_IRQHandler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[1c]">>></a> ADC1_2_IRQHandler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[39]"></a>ADC3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[1f]"></a>CAN1_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[20]"></a>CAN1_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[15]"></a>DMA1_Channel1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[16]"></a>DMA1_Channel2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[17]"></a>DMA1_Channel3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[18]"></a>DMA1_Channel4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[19]"></a>DMA1_Channel5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[1a]"></a>DMA1_Channel6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[1b]"></a>DMA1_Channel7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[42]"></a>DMA2_Channel1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[43]"></a>DMA2_Channel2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[44]"></a>DMA2_Channel3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[45]"></a>DMA2_Channel4_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[10]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[32]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[11]"></a>EXTI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[12]"></a>EXTI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[13]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[14]"></a>EXTI4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[21]"></a>EXTI9_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[e]"></a>FLASH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3a]"></a>FSMC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2a]"></a>I2C1_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[29]"></a>I2C1_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2c]"></a>I2C2_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2b]"></a>I2C2_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[b]"></a>PVD_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[f]"></a>RCC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[33]"></a>RTC_Alarm_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[d]"></a>RTC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3b]"></a>SDIO_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2d]"></a>SPI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2e]"></a>SPI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3d]"></a>SPI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[c]"></a>TAMPER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[22]"></a>TIM1_BRK_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[25]"></a>TIM1_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[24]"></a>TIM1_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[23]"></a>TIM1_UP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[26]"></a>TIM2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[27]"></a>TIM3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[28]"></a>TIM4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3c]"></a>TIM5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[40]"></a>TIM6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[41]"></a>TIM7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[35]"></a>TIM8_BRK_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[38]"></a>TIM8_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[37]"></a>TIM8_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[36]"></a>TIM8_UP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3e]"></a>UART4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3f]"></a>UART5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2f]"></a>USART1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[30]"></a>USART2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[31]"></a>USART3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[34]"></a>USBWakeUp_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[1d]"></a>USB_HP_CAN1_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[1e]"></a>USB_LP_CAN1_RX0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[a]"></a>WWDG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[6a]"></a>Error_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, main.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24 + In Cycle
- <LI>Call Chain = Error_Handler ⇒ Error_Handler (Cycle)
- </UL>
- <BR>[Calls]<UL><LI><a href="#[6a]">>></a> Error_Handler
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[72]">>></a> MX_USART1_UART_Init
- <LI><a href="#[73]">>></a> MX_SPI1_Init
- <LI><a href="#[6c]">>></a> SystemClock_Config
- <LI><a href="#[6a]">>></a> Error_Handler
- </UL>
- <P><STRONG><a name="[6c]"></a>SystemClock_Config</STRONG> (Thumb, 88 bytes, Stack size 72 bytes, main.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = SystemClock_Config ⇒ HAL_RCC_ClockConfig ⇒ HAL_RCC_GetSysClockFreq
- </UL>
- <BR>[Calls]<UL><LI><a href="#[6e]">>></a> HAL_RCC_OscConfig
- <LI><a href="#[6f]">>></a> HAL_RCC_ClockConfig
- <LI><a href="#[6a]">>></a> Error_Handler
- <LI><a href="#[6d]">>></a> __aeabi_memclr4
- </UL>
- <BR>[Called By]<UL><LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[46]"></a>main</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, main.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 760<LI>Call Chain = main ⇒ EPD_test ⇒ Paint_DrawNum ⇒ Paint_DrawString_EN ⇒ Paint_DrawChar ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[72]">>></a> MX_USART1_UART_Init
- <LI><a href="#[73]">>></a> MX_SPI1_Init
- <LI><a href="#[71]">>></a> MX_GPIO_Init
- <LI><a href="#[70]">>></a> HAL_Init
- <LI><a href="#[75]">>></a> HAL_Delay
- <LI><a href="#[74]">>></a> EPD_test
- <LI><a href="#[6c]">>></a> SystemClock_Config
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
- </UL>
- <P><STRONG><a name="[71]"></a>MX_GPIO_Init</STRONG> (Thumb, 86 bytes, Stack size 32 bytes, gpio.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = MX_GPIO_Init ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[76]">>></a> HAL_GPIO_WritePin
- <LI><a href="#[77]">>></a> HAL_GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[73]"></a>MX_SPI1_Init</STRONG> (Thumb, 62 bytes, Stack size 8 bytes, spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = MX_SPI1_Init ⇒ HAL_SPI_Init ⇒ HAL_SPI_MspInit ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[78]">>></a> HAL_SPI_Init
- <LI><a href="#[6a]">>></a> Error_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[79]"></a>HAL_SPI_MspInit</STRONG> (Thumb, 80 bytes, Stack size 24 bytes, spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = HAL_SPI_MspInit ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[77]">>></a> HAL_GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[78]">>></a> HAL_SPI_Init
- </UL>
- <P><STRONG><a name="[7a]"></a>HAL_SPI_MspDeInit</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7b]">>></a> HAL_GPIO_DeInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[ab]">>></a> HAL_SPI_DeInit
- </UL>
- <P><STRONG><a name="[72]"></a>MX_USART1_UART_Init</STRONG> (Thumb, 48 bytes, Stack size 8 bytes, usart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = MX_USART1_UART_Init ⇒ HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[7c]">>></a> HAL_UART_Init
- <LI><a href="#[6a]">>></a> Error_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[7d]"></a>HAL_UART_MspInit</STRONG> (Thumb, 100 bytes, Stack size 32 bytes, usart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = HAL_UART_MspInit ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[77]">>></a> HAL_GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[7c]">>></a> HAL_UART_Init
- <LI><a href="#[e4]">>></a> HAL_MultiProcessor_Init
- <LI><a href="#[e3]">>></a> HAL_LIN_Init
- <LI><a href="#[e2]">>></a> HAL_HalfDuplex_Init
- </UL>
- <P><STRONG><a name="[7e]"></a>HAL_UART_MspDeInit</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, usart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7b]">>></a> HAL_GPIO_DeInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e5]">>></a> HAL_UART_DeInit
- </UL>
- <P><STRONG><a name="[67]"></a>fputc</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, usart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = fputc ⇒ HAL_UART_Transmit ⇒ UART_WaitOnFlagUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[7f]">>></a> HAL_UART_Transmit
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> printf3.o(i.__0printf$3)
- </UL>
- <P><STRONG><a name="[1]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[2]"></a>HardFault_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = HardFault_Handler ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[3]"></a>MemManage_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[3]">>></a> MemManage_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[3]">>></a> MemManage_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[4]"></a>BusFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[4]">>></a> BusFault_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[4]">>></a> BusFault_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[5]"></a>UsageFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[5]">>></a> UsageFault_Handler
- </UL>
- <BR>[Called By]<UL><LI><a href="#[5]">>></a> UsageFault_Handler
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[6]"></a>SVC_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[7]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[8]"></a>PendSV_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[9]"></a>SysTick_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[80]">>></a> HAL_IncTick
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
- </UL>
- <P><STRONG><a name="[cd]"></a>HAL_MspInit</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, stm32f1xx_hal_msp.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_MspInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[70]">>></a> HAL_Init
- </UL>
- <P><STRONG><a name="[74]"></a>EPD_test</STRONG> (Thumb, 902 bytes, Stack size 56 bytes, epd_7in3f_test.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 760<LI>Call Chain = EPD_test ⇒ Paint_DrawNum ⇒ Paint_DrawString_EN ⇒ Paint_DrawChar ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[86]">>></a> Paint_SetScale
- <LI><a href="#[88]">>></a> Paint_SelectImage
- <LI><a href="#[85]">>></a> Paint_NewImage
- <LI><a href="#[90]">>></a> Paint_DrawString_EN
- <LI><a href="#[8e]">>></a> Paint_DrawString_CN
- <LI><a href="#[8c]">>></a> Paint_DrawRectangle
- <LI><a href="#[8a]">>></a> Paint_DrawPoint
- <LI><a href="#[8f]">>></a> Paint_DrawNum
- <LI><a href="#[8b]">>></a> Paint_DrawLine
- <LI><a href="#[8d]">>></a> Paint_DrawCircle
- <LI><a href="#[89]">>></a> Paint_Clear
- <LI><a href="#[92]">>></a> EPD_7IN3F_Sleep
- <LI><a href="#[82]">>></a> EPD_7IN3F_Init
- <LI><a href="#[91]">>></a> EPD_7IN3F_DisplayPart
- <LI><a href="#[87]">>></a> EPD_7IN3F_Display
- <LI><a href="#[83]">>></a> EPD_7IN3F_Clear
- <LI><a href="#[81]">>></a> DEV_Module_Init
- <LI><a href="#[94]">>></a> DEV_Module_Exit
- <LI><a href="#[75]">>></a> HAL_Delay
- <LI><a href="#[6b]">>></a> __2printf
- <LI><a href="#[84]">>></a> malloc
- <LI><a href="#[93]">>></a> free
- </UL>
- <BR>[Called By]<UL><LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[82]"></a>EPD_7IN3F_Init</STRONG> (Thumb, 462 bytes, Stack size 8 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = EPD_7IN3F_Init ⇒ EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[95]">>></a> EPD_7IN3F_ReadBusyH
- <LI><a href="#[76]">>></a> HAL_GPIO_WritePin
- <LI><a href="#[75]">>></a> HAL_Delay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[83]"></a>EPD_7IN3F_Clear</STRONG> (Thumb, 56 bytes, Stack size 24 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = EPD_7IN3F_Clear ⇒ EPD_7IN3F_TurnOnDisplay ⇒ EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[9a]"></a>EPD_7IN3F_Show7Block</STRONG> (Thumb, 102 bytes, Stack size 32 bytes, epd_7in3f.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- </UL>
- <P><STRONG><a name="[87]"></a>EPD_7IN3F_Display</STRONG> (Thumb, 62 bytes, Stack size 32 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = EPD_7IN3F_Display ⇒ EPD_7IN3F_TurnOnDisplay ⇒ EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[91]"></a>EPD_7IN3F_DisplayPart</STRONG> (Thumb, 112 bytes, Stack size 56 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 176<LI>Call Chain = EPD_7IN3F_DisplayPart ⇒ EPD_7IN3F_TurnOnDisplay ⇒ EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[92]"></a>EPD_7IN3F_Sleep</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = EPD_7IN3F_Sleep ⇒ EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[9b]"></a>DEV_SPI_WriteByte</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, dev_config.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[9c]">>></a> HAL_SPI_Transmit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- </UL>
- <P><STRONG><a name="[81]"></a>DEV_Module_Init</STRONG> (Thumb, 38 bytes, Stack size 8 bytes, dev_config.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DEV_Module_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[76]">>></a> HAL_GPIO_WritePin
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[94]"></a>DEV_Module_Exit</STRONG> (Thumb, 38 bytes, Stack size 8 bytes, dev_config.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DEV_Module_Exit
- </UL>
- <BR>[Calls]<UL><LI><a href="#[76]">>></a> HAL_GPIO_WritePin
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[85]"></a>Paint_NewImage</STRONG> (Thumb, 56 bytes, Stack size 16 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = Paint_NewImage
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[88]"></a>Paint_SelectImage</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, gui_paint.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[9d]"></a>Paint_SetRotate</STRONG> (Thumb, 44 bytes, Stack size 8 bytes, gui_paint.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[6b]">>></a> __2printf
- </UL>
- <P><STRONG><a name="[86]"></a>Paint_SetScale</STRONG> (Thumb, 80 bytes, Stack size 8 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = Paint_SetScale ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[9e]"></a>Paint_SetMirroring</STRONG> (Thumb, 62 bytes, Stack size 8 bytes, gui_paint.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[6b]">>></a> __2printf
- </UL>
- <P><STRONG><a name="[9f]"></a>Paint_SetPixel</STRONG> (Thumb, 238 bytes, Stack size 16 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[aa]">>></a> Paint_DrawBitMap_Paste
- <LI><a href="#[a1]">>></a> Paint_DrawChar
- <LI><a href="#[a0]">>></a> Paint_ClearWindows
- <LI><a href="#[8e]">>></a> Paint_DrawString_CN
- <LI><a href="#[8a]">>></a> Paint_DrawPoint
- </UL>
- <P><STRONG><a name="[89]"></a>Paint_Clear</STRONG> (Thumb, 156 bytes, Stack size 12 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = Paint_Clear
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[a0]"></a>Paint_ClearWindows</STRONG> (Thumb, 52 bytes, Stack size 32 bytes, gui_paint.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[9f]">>></a> Paint_SetPixel
- </UL>
- <P><STRONG><a name="[8a]"></a>Paint_DrawPoint</STRONG> (Thumb, 180 bytes, Stack size 40 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = Paint_DrawPoint ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[9f]">>></a> Paint_SetPixel
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8b]">>></a> Paint_DrawLine
- <LI><a href="#[8d]">>></a> Paint_DrawCircle
- <LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[8b]"></a>Paint_DrawLine</STRONG> (Thumb, 662 bytes, Stack size 48 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = Paint_DrawLine ⇒ Paint_DrawPoint ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[8a]">>></a> Paint_DrawPoint
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[8c]">>></a> Paint_DrawRectangle
- <LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[8c]"></a>Paint_DrawRectangle</STRONG> (Thumb, 170 bytes, Stack size 48 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 176<LI>Call Chain = Paint_DrawRectangle ⇒ Paint_DrawLine ⇒ Paint_DrawPoint ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[8b]">>></a> Paint_DrawLine
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[8d]"></a>Paint_DrawCircle</STRONG> (Thumb, 528 bytes, Stack size 72 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = Paint_DrawCircle ⇒ Paint_DrawPoint ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[8a]">>></a> Paint_DrawPoint
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[a1]"></a>Paint_DrawChar</STRONG> (Thumb, 172 bytes, Stack size 40 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = Paint_DrawChar ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[9f]">>></a> Paint_SetPixel
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a9]">>></a> Paint_DrawTime
- <LI><a href="#[90]">>></a> Paint_DrawString_EN
- </UL>
- <P><STRONG><a name="[90]"></a>Paint_DrawString_EN</STRONG> (Thumb, 116 bytes, Stack size 48 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = Paint_DrawString_EN ⇒ Paint_DrawChar ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[a1]">>></a> Paint_DrawChar
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- <LI><a href="#[8f]">>></a> Paint_DrawNum
- <LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[8e]"></a>Paint_DrawString_CN</STRONG> (Thumb, 518 bytes, Stack size 40 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = Paint_DrawString_CN ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[9f]">>></a> Paint_SetPixel
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[8f]"></a>Paint_DrawNum</STRONG> (Thumb, 140 bytes, Stack size 576 bytes, gui_paint.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 704<LI>Call Chain = Paint_DrawNum ⇒ Paint_DrawString_EN ⇒ Paint_DrawChar ⇒ Paint_SetPixel ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[90]">>></a> Paint_DrawString_EN
- <LI><a href="#[6b]">>></a> __2printf
- <LI><a href="#[6d]">>></a> __aeabi_memclr4
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[a2]"></a>Paint_DrawNumDecimals</STRONG> (Thumb, 258 bytes, Stack size 592 bytes, gui_paint.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[a4]">>></a> __aeabi_i2d
- <LI><a href="#[a7]">>></a> __aeabi_fmul
- <LI><a href="#[a8]">>></a> __aeabi_f2iz
- <LI><a href="#[a5]">>></a> __aeabi_drsub
- <LI><a href="#[a3]">>></a> __aeabi_d2iz
- <LI><a href="#[a6]">>></a> __aeabi_d2f
- <LI><a href="#[90]">>></a> Paint_DrawString_EN
- <LI><a href="#[6b]">>></a> __2printf
- <LI><a href="#[6d]">>></a> __aeabi_memclr4
- </UL>
- <P><STRONG><a name="[a9]"></a>Paint_DrawTime</STRONG> (Thumb, 282 bytes, Stack size 72 bytes, gui_paint.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[a1]">>></a> Paint_DrawChar
- </UL>
- <P><STRONG><a name="[115]"></a>Paint_DrawBitMap</STRONG> (Thumb, 44 bytes, Stack size 16 bytes, gui_paint.o(.text), UNUSED)
- <P><STRONG><a name="[aa]"></a>Paint_DrawBitMap_Paste</STRONG> (Thumb, 198 bytes, Stack size 56 bytes, gui_paint.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[9f]">>></a> Paint_SetPixel
- </UL>
- <P><STRONG><a name="[116]"></a>Paint_DrawBitMap_Block</STRONG> (Thumb, 54 bytes, Stack size 20 bytes, gui_paint.o(.text), UNUSED)
- <P><STRONG><a name="[47]"></a>SystemInit</STRONG> (Thumb, 60 bytes, Stack size 0 bytes, system_stm32f1xx.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(.text)
- </UL>
- <P><STRONG><a name="[117]"></a>SystemCoreClockUpdate</STRONG> (Thumb, 108 bytes, Stack size 0 bytes, system_stm32f1xx.o(.text), UNUSED)
- <P><STRONG><a name="[78]"></a>HAL_SPI_Init</STRONG> (Thumb, 180 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = HAL_SPI_Init ⇒ HAL_SPI_MspInit ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[79]">>></a> HAL_SPI_MspInit
- </UL>
- <BR>[Called By]<UL><LI><a href="#[73]">>></a> MX_SPI1_Init
- </UL>
- <P><STRONG><a name="[ab]"></a>HAL_SPI_DeInit</STRONG> (Thumb, 48 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7a]">>></a> HAL_SPI_MspDeInit
- </UL>
- <P><STRONG><a name="[9c]"></a>HAL_SPI_Transmit</STRONG> (Thumb, 412 bytes, Stack size 40 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9b]">>></a> DEV_SPI_WriteByte
- </UL>
- <P><STRONG><a name="[b0]"></a>HAL_SPI_TransmitReceive</STRONG> (Thumb, 510 bytes, Stack size 40 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- </UL>
- <BR>[Called By]<UL><LI><a href="#[b1]">>></a> HAL_SPI_Receive
- </UL>
- <P><STRONG><a name="[b1]"></a>HAL_SPI_Receive</STRONG> (Thumb, 366 bytes, Stack size 40 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[b0]">>></a> HAL_SPI_TransmitReceive
- <LI><a href="#[af]">>></a> SPI_EndRxTransaction
- </UL>
- <P><STRONG><a name="[b4]"></a>HAL_SPI_TxCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[52]">>></a> SPI_DMATransmitCplt
- <LI><a href="#[b2]">>></a> SPI_CloseTx_ISR
- </UL>
- <P><STRONG><a name="[b3]"></a>HAL_SPI_ErrorCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[c8]">>></a> HAL_SPI_IRQHandler
- <LI><a href="#[5c]">>></a> SPI_DMAAbortOnError
- <LI><a href="#[55]">>></a> SPI_DMATransmitReceiveCplt
- <LI><a href="#[57]">>></a> SPI_DMAReceiveCplt
- <LI><a href="#[52]">>></a> SPI_DMATransmitCplt
- <LI><a href="#[53]">>></a> SPI_DMAError
- <LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- <LI><a href="#[b5]">>></a> SPI_CloseRx_ISR
- <LI><a href="#[b2]">>></a> SPI_CloseTx_ISR
- </UL>
- <P><STRONG><a name="[118]"></a>HAL_SPI_Transmit_IT</STRONG> (Thumb, 162 bytes, Stack size 4 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <P><STRONG><a name="[b6]"></a>HAL_SPI_RxCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[57]">>></a> SPI_DMAReceiveCplt
- <LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- <LI><a href="#[b5]">>></a> SPI_CloseRx_ISR
- </UL>
- <P><STRONG><a name="[b8]"></a>HAL_SPI_TxRxCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[55]">>></a> SPI_DMATransmitReceiveCplt
- <LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- </UL>
- <P><STRONG><a name="[ba]"></a>HAL_SPI_TransmitReceive_IT</STRONG> (Thumb, 188 bytes, Stack size 12 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[b9]">>></a> HAL_SPI_Receive_IT
- </UL>
- <P><STRONG><a name="[b9]"></a>HAL_SPI_Receive_IT</STRONG> (Thumb, 176 bytes, Stack size 12 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ba]">>></a> HAL_SPI_TransmitReceive_IT
- </UL>
- <P><STRONG><a name="[bb]"></a>HAL_SPI_TxHalfCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[51]">>></a> SPI_DMAHalfTransmitCplt
- </UL>
- <P><STRONG><a name="[bc]"></a>HAL_SPI_Transmit_DMA</STRONG> (Thumb, 208 bytes, Stack size 24 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[bd]">>></a> HAL_DMA_Start_IT
- </UL>
- <P><STRONG><a name="[be]"></a>HAL_SPI_RxHalfCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[56]">>></a> SPI_DMAHalfReceiveCplt
- </UL>
- <P><STRONG><a name="[bf]"></a>HAL_SPI_TxRxHalfCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[54]">>></a> SPI_DMAHalfTransmitReceiveCplt
- </UL>
- <P><STRONG><a name="[c0]"></a>HAL_SPI_TransmitReceive_DMA</STRONG> (Thumb, 302 bytes, Stack size 24 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[bd]">>></a> HAL_DMA_Start_IT
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c1]">>></a> HAL_SPI_Receive_DMA
- </UL>
- <P><STRONG><a name="[c1]"></a>HAL_SPI_Receive_DMA</STRONG> (Thumb, 278 bytes, Stack size 24 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[bd]">>></a> HAL_DMA_Start_IT
- <LI><a href="#[c0]">>></a> HAL_SPI_TransmitReceive_DMA
- </UL>
- <P><STRONG><a name="[c2]"></a>HAL_SPI_Abort</STRONG> (Thumb, 290 bytes, Stack size 32 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c3]">>></a> HAL_DMA_Abort
- </UL>
- <P><STRONG><a name="[c4]"></a>HAL_SPI_AbortCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[c5]">>></a> HAL_SPI_Abort_IT
- <LI><a href="#[5a]">>></a> SPI_DMATxAbortCallback
- <LI><a href="#[5b]">>></a> SPI_DMARxAbortCallback
- </UL>
- <P><STRONG><a name="[c5]"></a>HAL_SPI_Abort_IT</STRONG> (Thumb, 328 bytes, Stack size 40 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c6]">>></a> HAL_DMA_Abort_IT
- <LI><a href="#[c4]">>></a> HAL_SPI_AbortCpltCallback
- </UL>
- <P><STRONG><a name="[119]"></a>HAL_SPI_DMAPause</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <P><STRONG><a name="[11a]"></a>HAL_SPI_DMAResume</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <P><STRONG><a name="[c7]"></a>HAL_SPI_DMAStop</STRONG> (Thumb, 68 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c3]">>></a> HAL_DMA_Abort
- </UL>
- <P><STRONG><a name="[c8]"></a>HAL_SPI_IRQHandler</STRONG> (Thumb, 250 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c6]">>></a> HAL_DMA_Abort_IT
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <P><STRONG><a name="[11b]"></a>HAL_SPI_GetState</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <P><STRONG><a name="[11c]"></a>HAL_SPI_GetError</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text), UNUSED)
- <P><STRONG><a name="[c9]"></a>HAL_InitTick</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, stm32f1xx_hal.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = HAL_InitTick ⇒ HAL_NVIC_SetPriority
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ca]">>></a> HAL_SYSTICK_Config
- <LI><a href="#[cb]">>></a> HAL_NVIC_SetPriority
- </UL>
- <BR>[Called By]<UL><LI><a href="#[6f]">>></a> HAL_RCC_ClockConfig
- <LI><a href="#[70]">>></a> HAL_Init
- <LI><a href="#[d1]">>></a> HAL_RCC_DeInit
- <LI><a href="#[d0]">>></a> HAL_SetTickFreq
- </UL>
- <P><STRONG><a name="[70]"></a>HAL_Init</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, stm32f1xx_hal.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = HAL_Init ⇒ HAL_InitTick ⇒ HAL_NVIC_SetPriority
- </UL>
- <BR>[Calls]<UL><LI><a href="#[cd]">>></a> HAL_MspInit
- <LI><a href="#[c9]">>></a> HAL_InitTick
- <LI><a href="#[cc]">>></a> HAL_NVIC_SetPriorityGrouping
- </UL>
- <BR>[Called By]<UL><LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[cf]"></a>HAL_MspDeInit</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[ce]">>></a> HAL_DeInit
- </UL>
- <P><STRONG><a name="[ce]"></a>HAL_DeInit</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[cf]">>></a> HAL_MspDeInit
- </UL>
- <P><STRONG><a name="[80]"></a>HAL_IncTick</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[9]">>></a> SysTick_Handler
- </UL>
- <P><STRONG><a name="[ad]"></a>HAL_GetTick</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[b1]">>></a> HAL_SPI_Receive
- <LI><a href="#[b0]">>></a> HAL_SPI_TransmitReceive
- <LI><a href="#[5b]">>></a> SPI_DMARxAbortCallback
- <LI><a href="#[55]">>></a> SPI_DMATransmitReceiveCplt
- <LI><a href="#[57]">>></a> SPI_DMAReceiveCplt
- <LI><a href="#[52]">>></a> SPI_DMATransmitCplt
- <LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- <LI><a href="#[b5]">>></a> SPI_CloseRx_ISR
- <LI><a href="#[b2]">>></a> SPI_CloseTx_ISR
- <LI><a href="#[ac]">>></a> SPI_WaitFlagStateUntilTimeout
- <LI><a href="#[9c]">>></a> HAL_SPI_Transmit
- <LI><a href="#[7f]">>></a> HAL_UART_Transmit
- <LI><a href="#[6e]">>></a> HAL_RCC_OscConfig
- <LI><a href="#[6f]">>></a> HAL_RCC_ClockConfig
- <LI><a href="#[75]">>></a> HAL_Delay
- <LI><a href="#[e7]">>></a> HAL_UART_Receive
- <LI><a href="#[e6]">>></a> UART_WaitOnFlagUntilTimeout
- <LI><a href="#[de]">>></a> HAL_DMA_PollForTransfer
- <LI><a href="#[d1]">>></a> HAL_RCC_DeInit
- </UL>
- <P><STRONG><a name="[11d]"></a>HAL_GetTickPrio</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[d0]"></a>HAL_SetTickFreq</STRONG> (Thumb, 30 bytes, Stack size 16 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c9]">>></a> HAL_InitTick
- </UL>
- <P><STRONG><a name="[11e]"></a>HAL_GetTickFreq</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[75]"></a>HAL_Delay</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, stm32f1xx_hal.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- </UL>
- <BR>[Called By]<UL><LI><a href="#[95]">>></a> EPD_7IN3F_ReadBusyH
- <LI><a href="#[82]">>></a> EPD_7IN3F_Init
- <LI><a href="#[74]">>></a> EPD_test
- <LI><a href="#[46]">>></a> main
- </UL>
- <P><STRONG><a name="[11f]"></a>HAL_SuspendTick</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[120]"></a>HAL_ResumeTick</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[121]"></a>HAL_GetHalVersion</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[122]"></a>HAL_GetREVID</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[123]"></a>HAL_GetDEVID</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[124]"></a>HAL_GetUIDw0</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[125]"></a>HAL_GetUIDw1</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[126]"></a>HAL_GetUIDw2</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[127]"></a>HAL_DBGMCU_EnableDBGSleepMode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[128]"></a>HAL_DBGMCU_DisableDBGSleepMode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[129]"></a>HAL_DBGMCU_EnableDBGStopMode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[12a]"></a>HAL_DBGMCU_DisableDBGStopMode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[12b]"></a>HAL_DBGMCU_EnableDBGStandbyMode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[12c]"></a>HAL_DBGMCU_DisableDBGStandbyMode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text), UNUSED)
- <P><STRONG><a name="[d1]"></a>HAL_RCC_DeInit</STRONG> (Thumb, 250 bytes, Stack size 24 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[c9]">>></a> HAL_InitTick
- </UL>
- <P><STRONG><a name="[6e]"></a>HAL_RCC_OscConfig</STRONG> (Thumb, 1080 bytes, Stack size 40 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = HAL_RCC_OscConfig ⇒ RCC_Delay
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[d2]">>></a> RCC_Delay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[6c]">>></a> SystemClock_Config
- </UL>
- <P><STRONG><a name="[d3]"></a>HAL_RCC_GetSysClockFreq</STRONG> (Thumb, 88 bytes, Stack size 20 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = HAL_RCC_GetSysClockFreq
- </UL>
- <BR>[Called By]<UL><LI><a href="#[6f]">>></a> HAL_RCC_ClockConfig
- </UL>
- <P><STRONG><a name="[6f]"></a>HAL_RCC_ClockConfig</STRONG> (Thumb, 364 bytes, Stack size 32 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = HAL_RCC_ClockConfig ⇒ HAL_RCC_GetSysClockFreq
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[d3]">>></a> HAL_RCC_GetSysClockFreq
- <LI><a href="#[c9]">>></a> HAL_InitTick
- </UL>
- <BR>[Called By]<UL><LI><a href="#[6c]">>></a> SystemClock_Config
- </UL>
- <P><STRONG><a name="[d4]"></a>HAL_RCC_MCOConfig</STRONG> (Thumb, 64 bytes, Stack size 40 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[77]">>></a> HAL_GPIO_Init
- </UL>
- <P><STRONG><a name="[12d]"></a>HAL_RCC_EnableCSS</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <P><STRONG><a name="[12e]"></a>HAL_RCC_DisableCSS</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <P><STRONG><a name="[d6]"></a>HAL_RCC_GetHCLKFreq</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[d7]">>></a> HAL_RCC_GetPCLK2Freq
- <LI><a href="#[d5]">>></a> HAL_RCC_GetPCLK1Freq
- </UL>
- <P><STRONG><a name="[d5]"></a>HAL_RCC_GetPCLK1Freq</STRONG> (Thumb, 22 bytes, Stack size 4 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = HAL_RCC_GetPCLK1Freq
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d6]">>></a> HAL_RCC_GetHCLKFreq
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e1]">>></a> UART_SetConfig
- </UL>
- <P><STRONG><a name="[d7]"></a>HAL_RCC_GetPCLK2Freq</STRONG> (Thumb, 22 bytes, Stack size 4 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = HAL_RCC_GetPCLK2Freq
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d6]">>></a> HAL_RCC_GetHCLKFreq
- </UL>
- <BR>[Called By]<UL><LI><a href="#[e1]">>></a> UART_SetConfig
- </UL>
- <P><STRONG><a name="[12f]"></a>HAL_RCC_GetOscConfig</STRONG> (Thumb, 168 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <P><STRONG><a name="[130]"></a>HAL_RCC_GetClockConfig</STRONG> (Thumb, 52 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <P><STRONG><a name="[d9]"></a>HAL_RCC_CSSCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[d8]">>></a> HAL_RCC_NMI_IRQHandler
- </UL>
- <P><STRONG><a name="[d8]"></a>HAL_RCC_NMI_IRQHandler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, stm32f1xx_hal_rcc.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[d9]">>></a> HAL_RCC_CSSCallback
- </UL>
- <P><STRONG><a name="[77]"></a>HAL_GPIO_Init</STRONG> (Thumb, 524 bytes, Stack size 40 bytes, stm32f1xx_hal_gpio.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = HAL_GPIO_Init
- </UL>
- <BR>[Called By]<UL><LI><a href="#[7d]">>></a> HAL_UART_MspInit
- <LI><a href="#[79]">>></a> HAL_SPI_MspInit
- <LI><a href="#[71]">>></a> MX_GPIO_Init
- <LI><a href="#[d4]">>></a> HAL_RCC_MCOConfig
- </UL>
- <P><STRONG><a name="[7b]"></a>HAL_GPIO_DeInit</STRONG> (Thumb, 320 bytes, Stack size 36 bytes, stm32f1xx_hal_gpio.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[7e]">>></a> HAL_UART_MspDeInit
- <LI><a href="#[7a]">>></a> HAL_SPI_MspDeInit
- </UL>
- <P><STRONG><a name="[96]"></a>HAL_GPIO_ReadPin</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[95]">>></a> EPD_7IN3F_ReadBusyH
- </UL>
- <P><STRONG><a name="[76]"></a>HAL_GPIO_WritePin</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[82]">>></a> EPD_7IN3F_Init
- <LI><a href="#[81]">>></a> DEV_Module_Init
- <LI><a href="#[94]">>></a> DEV_Module_Exit
- <LI><a href="#[71]">>></a> MX_GPIO_Init
- </UL>
- <P><STRONG><a name="[131]"></a>HAL_GPIO_TogglePin</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(.text), UNUSED)
- <P><STRONG><a name="[132]"></a>HAL_GPIO_LockPin</STRONG> (Thumb, 42 bytes, Stack size 4 bytes, stm32f1xx_hal_gpio.o(.text), UNUSED)
- <P><STRONG><a name="[db]"></a>HAL_GPIO_EXTI_Callback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[da]">>></a> HAL_GPIO_EXTI_IRQHandler
- </UL>
- <P><STRONG><a name="[da]"></a>HAL_GPIO_EXTI_IRQHandler</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, stm32f1xx_hal_gpio.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[db]">>></a> HAL_GPIO_EXTI_Callback
- </UL>
- <P><STRONG><a name="[133]"></a>HAL_DMA_Init</STRONG> (Thumb, 144 bytes, Stack size 4 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <P><STRONG><a name="[134]"></a>HAL_DMA_DeInit</STRONG> (Thumb, 126 bytes, Stack size 0 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <P><STRONG><a name="[dc]"></a>HAL_DMA_Start</STRONG> (Thumb, 88 bytes, Stack size 16 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[dd]">>></a> DMA_SetConfig
- </UL>
- <P><STRONG><a name="[bd]"></a>HAL_DMA_Start_IT</STRONG> (Thumb, 124 bytes, Stack size 16 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[dd]">>></a> DMA_SetConfig
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c1]">>></a> HAL_SPI_Receive_DMA
- <LI><a href="#[c0]">>></a> HAL_SPI_TransmitReceive_DMA
- <LI><a href="#[bc]">>></a> HAL_SPI_Transmit_DMA
- <LI><a href="#[f0]">>></a> HAL_UART_Receive_DMA
- <LI><a href="#[ed]">>></a> HAL_UART_Transmit_DMA
- </UL>
- <P><STRONG><a name="[c3]"></a>HAL_DMA_Abort</STRONG> (Thumb, 72 bytes, Stack size 0 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[c7]">>></a> HAL_SPI_DMAStop
- <LI><a href="#[c2]">>></a> HAL_SPI_Abort
- <LI><a href="#[f5]">>></a> HAL_UART_AbortReceive
- <LI><a href="#[f4]">>></a> HAL_UART_AbortTransmit
- <LI><a href="#[f2]">>></a> HAL_UART_Abort
- <LI><a href="#[f1]">>></a> HAL_UART_DMAStop
- </UL>
- <P><STRONG><a name="[c6]"></a>HAL_DMA_Abort_IT</STRONG> (Thumb, 318 bytes, Stack size 40 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[c8]">>></a> HAL_SPI_IRQHandler
- <LI><a href="#[c5]">>></a> HAL_SPI_Abort_IT
- <LI><a href="#[fe]">>></a> HAL_UART_IRQHandler
- <LI><a href="#[fb]">>></a> HAL_UART_AbortReceive_IT
- <LI><a href="#[f9]">>></a> HAL_UART_AbortTransmit_IT
- <LI><a href="#[f7]">>></a> HAL_UART_Abort_IT
- </UL>
- <P><STRONG><a name="[de]"></a>HAL_DMA_PollForTransfer</STRONG> (Thumb, 1316 bytes, Stack size 56 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- </UL>
- <P><STRONG><a name="[135]"></a>HAL_DMA_IRQHandler</STRONG> (Thumb, 672 bytes, Stack size 40 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <P><STRONG><a name="[136]"></a>HAL_DMA_RegisterCallback</STRONG> (Thumb, 80 bytes, Stack size 0 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <P><STRONG><a name="[137]"></a>HAL_DMA_UnRegisterCallback</STRONG> (Thumb, 86 bytes, Stack size 0 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <P><STRONG><a name="[138]"></a>HAL_DMA_GetState</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <P><STRONG><a name="[f3]"></a>HAL_DMA_GetError</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[f5]">>></a> HAL_UART_AbortReceive
- <LI><a href="#[f4]">>></a> HAL_UART_AbortTransmit
- <LI><a href="#[f2]">>></a> HAL_UART_Abort
- </UL>
- <P><STRONG><a name="[cc]"></a>HAL_NVIC_SetPriorityGrouping</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[70]">>></a> HAL_Init
- </UL>
- <P><STRONG><a name="[cb]"></a>HAL_NVIC_SetPriority</STRONG> (Thumb, 98 bytes, Stack size 4 bytes, stm32f1xx_hal_cortex.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = HAL_NVIC_SetPriority
- </UL>
- <BR>[Called By]<UL><LI><a href="#[c9]">>></a> HAL_InitTick
- </UL>
- <P><STRONG><a name="[139]"></a>HAL_NVIC_EnableIRQ</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[13a]"></a>HAL_NVIC_DisableIRQ</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[13b]"></a>HAL_NVIC_SystemReset</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[ca]"></a>HAL_SYSTICK_Config</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[c9]">>></a> HAL_InitTick
- </UL>
- <P><STRONG><a name="[13c]"></a>HAL_NVIC_GetPriorityGrouping</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[13d]"></a>HAL_NVIC_GetPriority</STRONG> (Thumb, 94 bytes, Stack size 8 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[13e]"></a>HAL_NVIC_SetPendingIRQ</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[13f]"></a>HAL_NVIC_GetPendingIRQ</STRONG> (Thumb, 42 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[140]"></a>HAL_NVIC_ClearPendingIRQ</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[141]"></a>HAL_NVIC_GetActive</STRONG> (Thumb, 42 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[142]"></a>HAL_SYSTICK_CLKSourceConfig</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <P><STRONG><a name="[e0]"></a>HAL_SYSTICK_Callback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[df]">>></a> HAL_SYSTICK_IRQHandler
- </UL>
- <P><STRONG><a name="[df]"></a>HAL_SYSTICK_IRQHandler</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, stm32f1xx_hal_cortex.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[e0]">>></a> HAL_SYSTICK_Callback
- </UL>
- <P><STRONG><a name="[7c]"></a>HAL_UART_Init</STRONG> (Thumb, 100 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
- </UL>
- <BR>[Calls]<UL><LI><a href="#[7d]">>></a> HAL_UART_MspInit
- <LI><a href="#[e1]">>></a> UART_SetConfig
- </UL>
- <BR>[Called By]<UL><LI><a href="#[72]">>></a> MX_USART1_UART_Init
- </UL>
- <P><STRONG><a name="[e2]"></a>HAL_HalfDuplex_Init</STRONG> (Thumb, 110 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7d]">>></a> HAL_UART_MspInit
- <LI><a href="#[e1]">>></a> UART_SetConfig
- </UL>
- <P><STRONG><a name="[e3]"></a>HAL_LIN_Init</STRONG> (Thumb, 130 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7d]">>></a> HAL_UART_MspInit
- <LI><a href="#[e1]">>></a> UART_SetConfig
- </UL>
- <P><STRONG><a name="[e4]"></a>HAL_MultiProcessor_Init</STRONG> (Thumb, 146 bytes, Stack size 24 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7d]">>></a> HAL_UART_MspInit
- <LI><a href="#[e1]">>></a> UART_SetConfig
- </UL>
- <P><STRONG><a name="[e5]"></a>HAL_UART_DeInit</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[7e]">>></a> HAL_UART_MspDeInit
- </UL>
- <P><STRONG><a name="[7f]"></a>HAL_UART_Transmit</STRONG> (Thumb, 202 bytes, Stack size 32 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = HAL_UART_Transmit ⇒ UART_WaitOnFlagUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[e6]">>></a> UART_WaitOnFlagUntilTimeout
- </UL>
- <BR>[Called By]<UL><LI><a href="#[67]">>></a> fputc
- </UL>
- <P><STRONG><a name="[e7]"></a>HAL_UART_Receive</STRONG> (Thumb, 212 bytes, Stack size 32 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[e6]">>></a> UART_WaitOnFlagUntilTimeout
- </UL>
- <P><STRONG><a name="[143]"></a>HAL_UART_Transmit_IT</STRONG> (Thumb, 66 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[144]"></a>HAL_UART_Receive_IT</STRONG> (Thumb, 86 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[ea]"></a>HAL_UART_ErrorCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[fe]">>></a> HAL_UART_IRQHandler
- <LI><a href="#[66]">>></a> UART_DMAAbortOnError
- <LI><a href="#[5f]">>></a> UART_DMAError
- </UL>
- <P><STRONG><a name="[eb]"></a>HAL_UART_TxHalfCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[5e]">>></a> UART_DMATxHalfCplt
- </UL>
- <P><STRONG><a name="[ec]"></a>HAL_UART_TxCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[fc]">>></a> UART_EndTransmit_IT
- <LI><a href="#[5d]">>></a> UART_DMATransmitCplt
- </UL>
- <P><STRONG><a name="[ed]"></a>HAL_UART_Transmit_DMA</STRONG> (Thumb, 138 bytes, Stack size 24 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[bd]">>></a> HAL_DMA_Start_IT
- </UL>
- <P><STRONG><a name="[ee]"></a>HAL_UART_RxHalfCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[61]">>></a> UART_DMARxHalfCplt
- </UL>
- <P><STRONG><a name="[ef]"></a>HAL_UART_RxCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[fd]">>></a> UART_Receive_IT
- <LI><a href="#[60]">>></a> UART_DMAReceiveCplt
- </UL>
- <P><STRONG><a name="[f0]"></a>HAL_UART_Receive_DMA</STRONG> (Thumb, 150 bytes, Stack size 32 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[bd]">>></a> HAL_DMA_Start_IT
- </UL>
- <P><STRONG><a name="[145]"></a>HAL_UART_DMAPause</STRONG> (Thumb, 102 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[146]"></a>HAL_UART_DMAResume</STRONG> (Thumb, 98 bytes, Stack size 4 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[f1]"></a>HAL_UART_DMAStop</STRONG> (Thumb, 88 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c3]">>></a> HAL_DMA_Abort
- <LI><a href="#[e8]">>></a> UART_EndTxTransfer
- <LI><a href="#[e9]">>></a> UART_EndRxTransfer
- </UL>
- <P><STRONG><a name="[f2]"></a>HAL_UART_Abort</STRONG> (Thumb, 148 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c3]">>></a> HAL_DMA_Abort
- <LI><a href="#[f3]">>></a> HAL_DMA_GetError
- </UL>
- <P><STRONG><a name="[f4]"></a>HAL_UART_AbortTransmit</STRONG> (Thumb, 80 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c3]">>></a> HAL_DMA_Abort
- <LI><a href="#[f3]">>></a> HAL_DMA_GetError
- </UL>
- <P><STRONG><a name="[f5]"></a>HAL_UART_AbortReceive</STRONG> (Thumb, 90 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c3]">>></a> HAL_DMA_Abort
- <LI><a href="#[f3]">>></a> HAL_DMA_GetError
- </UL>
- <P><STRONG><a name="[f6]"></a>HAL_UART_AbortCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[f7]">>></a> HAL_UART_Abort_IT
- <LI><a href="#[62]">>></a> UART_DMATxAbortCallback
- <LI><a href="#[63]">>></a> UART_DMARxAbortCallback
- </UL>
- <P><STRONG><a name="[f7]"></a>HAL_UART_Abort_IT</STRONG> (Thumb, 178 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c6]">>></a> HAL_DMA_Abort_IT
- <LI><a href="#[f6]">>></a> HAL_UART_AbortCpltCallback
- </UL>
- <P><STRONG><a name="[f8]"></a>HAL_UART_AbortTransmitCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[f9]">>></a> HAL_UART_AbortTransmit_IT
- <LI><a href="#[64]">>></a> UART_DMATxOnlyAbortCallback
- </UL>
- <P><STRONG><a name="[f9]"></a>HAL_UART_AbortTransmit_IT</STRONG> (Thumb, 94 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c6]">>></a> HAL_DMA_Abort_IT
- <LI><a href="#[f8]">>></a> HAL_UART_AbortTransmitCpltCallback
- </UL>
- <P><STRONG><a name="[fa]"></a>HAL_UART_AbortReceiveCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[fb]">>></a> HAL_UART_AbortReceive_IT
- <LI><a href="#[65]">>></a> UART_DMARxOnlyAbortCallback
- </UL>
- <P><STRONG><a name="[fb]"></a>HAL_UART_AbortReceive_IT</STRONG> (Thumb, 104 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c6]">>></a> HAL_DMA_Abort_IT
- <LI><a href="#[fa]">>></a> HAL_UART_AbortReceiveCpltCallback
- </UL>
- <P><STRONG><a name="[fe]"></a>HAL_UART_IRQHandler</STRONG> (Thumb, 312 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[c6]">>></a> HAL_DMA_Abort_IT
- <LI><a href="#[ea]">>></a> HAL_UART_ErrorCallback
- <LI><a href="#[fd]">>></a> UART_Receive_IT
- <LI><a href="#[ff]">>></a> UART_Transmit_IT
- <LI><a href="#[fc]">>></a> UART_EndTransmit_IT
- <LI><a href="#[e9]">>></a> UART_EndRxTransfer
- </UL>
- <P><STRONG><a name="[147]"></a>HAL_LIN_SendBreak</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[148]"></a>HAL_MultiProcessor_EnterMuteMode</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[149]"></a>HAL_MultiProcessor_ExitMuteMode</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[14a]"></a>HAL_HalfDuplex_EnableTransmitter</STRONG> (Thumb, 54 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[14b]"></a>HAL_HalfDuplex_EnableReceiver</STRONG> (Thumb, 54 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[14c]"></a>HAL_UART_GetState</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[14d]"></a>HAL_UART_GetError</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <P><STRONG><a name="[109]"></a>__aeabi_llsr</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[a3]">>></a> __aeabi_d2iz
- <LI><a href="#[106]">>></a> _double_epilogue
- </UL>
- <P><STRONG><a name="[14e]"></a>_ll_ushift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
- <P><STRONG><a name="[101]"></a>__aeabi_memset</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[102]">>></a> _memset$wrapper
- <LI><a href="#[100]">>></a> __aeabi_memclr
- </UL>
- <P><STRONG><a name="[14f]"></a>__aeabi_memset4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[150]"></a>__aeabi_memset8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[100]"></a>__aeabi_memclr</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[101]">>></a> __aeabi_memset
- </UL>
- <P><STRONG><a name="[6d]"></a>__aeabi_memclr4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- <LI><a href="#[8f]">>></a> Paint_DrawNum
- <LI><a href="#[6c]">>></a> SystemClock_Config
- </UL>
- <P><STRONG><a name="[151]"></a>__aeabi_memclr8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
- <P><STRONG><a name="[102]"></a>_memset$wrapper</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, memseta.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[101]">>></a> __aeabi_memset
- </UL>
- <P><STRONG><a name="[a7]"></a>__aeabi_fmul</STRONG> (Thumb, 100 bytes, Stack size 8 bytes, fmul.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- </UL>
- <P><STRONG><a name="[103]"></a>__aeabi_dadd</STRONG> (Thumb, 322 bytes, Stack size 48 bytes, dadd.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[105]">>></a> __aeabi_lasr
- <LI><a href="#[104]">>></a> __aeabi_llsl
- <LI><a href="#[107]">>></a> _double_round
- <LI><a href="#[106]">>></a> _double_epilogue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a5]">>></a> __aeabi_drsub
- <LI><a href="#[108]">>></a> __aeabi_dsub
- </UL>
- <P><STRONG><a name="[108]"></a>__aeabi_dsub</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[103]">>></a> __aeabi_dadd
- </UL>
- <P><STRONG><a name="[a5]"></a>__aeabi_drsub</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[103]">>></a> __aeabi_dadd
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- </UL>
- <P><STRONG><a name="[a4]"></a>__aeabi_i2d</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, dflti.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[106]">>></a> _double_epilogue
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- </UL>
- <P><STRONG><a name="[a8]"></a>__aeabi_f2iz</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, ffixi.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- </UL>
- <P><STRONG><a name="[a3]"></a>__aeabi_d2iz</STRONG> (Thumb, 62 bytes, Stack size 16 bytes, dfixi.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[109]">>></a> __aeabi_llsr
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- </UL>
- <P><STRONG><a name="[a6]"></a>__aeabi_d2f</STRONG> (Thumb, 56 bytes, Stack size 8 bytes, d2f.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[10a]">>></a> _float_round
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- </UL>
- <P><STRONG><a name="[152]"></a>__aeabi_uidiv</STRONG> (Thumb, 0 bytes, Stack size 12 bytes, uidiv.o(.text), UNUSED)
- <P><STRONG><a name="[10e]"></a>__aeabi_uidivmod</STRONG> (Thumb, 44 bytes, Stack size 12 bytes, uidiv.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[10d]">>></a> _printf_core
- </UL>
- <P><STRONG><a name="[104]"></a>__aeabi_llsl</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[106]">>></a> _double_epilogue
- <LI><a href="#[103]">>></a> __aeabi_dadd
- </UL>
- <P><STRONG><a name="[153]"></a>_ll_shift_l</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
- <P><STRONG><a name="[105]"></a>__aeabi_lasr</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, llsshr.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[103]">>></a> __aeabi_dadd
- </UL>
- <P><STRONG><a name="[154]"></a>_ll_sshift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llsshr.o(.text), UNUSED)
- <P><STRONG><a name="[155]"></a>__I$use$fp</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, iusefp.o(.text), UNUSED)
- <P><STRONG><a name="[10a]"></a>_float_round</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, fepilogue.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[a6]">>></a> __aeabi_d2f
- </UL>
- <P><STRONG><a name="[156]"></a>_float_epilogue</STRONG> (Thumb, 92 bytes, Stack size 4 bytes, fepilogue.o(.text), UNUSED)
- <P><STRONG><a name="[107]"></a>_double_round</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, depilogue.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[106]">>></a> _double_epilogue
- <LI><a href="#[103]">>></a> __aeabi_dadd
- </UL>
- <P><STRONG><a name="[106]"></a>_double_epilogue</STRONG> (Thumb, 156 bytes, Stack size 32 bytes, depilogue.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[109]">>></a> __aeabi_llsr
- <LI><a href="#[104]">>></a> __aeabi_llsl
- <LI><a href="#[107]">>></a> _double_round
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a4]">>></a> __aeabi_i2d
- <LI><a href="#[103]">>></a> __aeabi_dadd
- </UL>
- <P><STRONG><a name="[69]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
- <BR><BR>[Calls]<UL><LI><a href="#[10b]">>></a> __main_after_scatterload
- </UL>
- <BR>[Called By]<UL><LI><a href="#[68]">>></a> _main_scatterload
- </UL>
- <P><STRONG><a name="[157]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
- <P><STRONG><a name="[10c]"></a>__0printf$3</STRONG> (Thumb, 22 bytes, Stack size 24 bytes, printf3.o(i.__0printf$3), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[10d]">>></a> _printf_core
- </UL>
- <P><STRONG><a name="[158]"></a>__1printf$3</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printf3.o(i.__0printf$3), UNUSED)
- <P><STRONG><a name="[6b]"></a>__2printf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printf3.o(i.__0printf$3))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[a2]">>></a> Paint_DrawNumDecimals
- <LI><a href="#[a1]">>></a> Paint_DrawChar
- <LI><a href="#[9f]">>></a> Paint_SetPixel
- <LI><a href="#[9e]">>></a> Paint_SetMirroring
- <LI><a href="#[9d]">>></a> Paint_SetRotate
- <LI><a href="#[95]">>></a> EPD_7IN3F_ReadBusyH
- <LI><a href="#[86]">>></a> Paint_SetScale
- <LI><a href="#[90]">>></a> Paint_DrawString_EN
- <LI><a href="#[8c]">>></a> Paint_DrawRectangle
- <LI><a href="#[8a]">>></a> Paint_DrawPoint
- <LI><a href="#[8f]">>></a> Paint_DrawNum
- <LI><a href="#[8b]">>></a> Paint_DrawLine
- <LI><a href="#[8d]">>></a> Paint_DrawCircle
- <LI><a href="#[2]">>></a> HardFault_Handler
- <LI><a href="#[74]">>></a> EPD_test
- <LI><a href="#[6a]">>></a> Error_Handler
- </UL>
- <P><STRONG><a name="[159]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
- <P><STRONG><a name="[15a]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
- <P><STRONG><a name="[15b]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
- <P><STRONG><a name="[93]"></a>free</STRONG> (Thumb, 76 bytes, Stack size 8 bytes, malloc.o(i.free))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = free
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P><STRONG><a name="[84]"></a>malloc</STRONG> (Thumb, 92 bytes, Stack size 20 bytes, malloc.o(i.malloc))
- <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = malloc
- </UL>
- <BR>[Called By]<UL><LI><a href="#[74]">>></a> EPD_test
- </UL>
- <P>
- <H3>
- Local Symbols
- </H3>
- <P><STRONG><a name="[95]"></a>EPD_7IN3F_ReadBusyH</STRONG> (Thumb, 40 bytes, Stack size 8 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = EPD_7IN3F_ReadBusyH ⇒ __2printf
- </UL>
- <BR>[Calls]<UL><LI><a href="#[96]">>></a> HAL_GPIO_ReadPin
- <LI><a href="#[75]">>></a> HAL_Delay
- <LI><a href="#[6b]">>></a> __2printf
- </UL>
- <BR>[Called By]<UL><LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- <LI><a href="#[82]">>></a> EPD_7IN3F_Init
- </UL>
- <P><STRONG><a name="[97]"></a>EPD_7IN3F_TurnOnDisplay</STRONG> (Thumb, 46 bytes, Stack size 8 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = EPD_7IN3F_TurnOnDisplay ⇒ EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[99]">>></a> EPD_7IN3F_SendData
- <LI><a href="#[98]">>></a> EPD_7IN3F_SendCommand
- <LI><a href="#[95]">>></a> EPD_7IN3F_ReadBusyH
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9a]">>></a> EPD_7IN3F_Show7Block
- <LI><a href="#[91]">>></a> EPD_7IN3F_DisplayPart
- <LI><a href="#[87]">>></a> EPD_7IN3F_Display
- <LI><a href="#[83]">>></a> EPD_7IN3F_Clear
- </UL>
- <P><STRONG><a name="[98]"></a>EPD_7IN3F_SendCommand</STRONG> (Thumb, 46 bytes, Stack size 16 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = EPD_7IN3F_SendCommand ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[9b]">>></a> DEV_SPI_WriteByte
- <LI><a href="#[76]">>></a> HAL_GPIO_WritePin
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9a]">>></a> EPD_7IN3F_Show7Block
- <LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- <LI><a href="#[92]">>></a> EPD_7IN3F_Sleep
- <LI><a href="#[82]">>></a> EPD_7IN3F_Init
- <LI><a href="#[91]">>></a> EPD_7IN3F_DisplayPart
- <LI><a href="#[87]">>></a> EPD_7IN3F_Display
- <LI><a href="#[83]">>></a> EPD_7IN3F_Clear
- </UL>
- <P><STRONG><a name="[99]"></a>EPD_7IN3F_SendData</STRONG> (Thumb, 116 bytes, Stack size 16 bytes, epd_7in3f.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = EPD_7IN3F_SendData ⇒ DEV_SPI_WriteByte ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[9b]">>></a> DEV_SPI_WriteByte
- <LI><a href="#[76]">>></a> HAL_GPIO_WritePin
- </UL>
- <BR>[Called By]<UL><LI><a href="#[9a]">>></a> EPD_7IN3F_Show7Block
- <LI><a href="#[97]">>></a> EPD_7IN3F_TurnOnDisplay
- <LI><a href="#[92]">>></a> EPD_7IN3F_Sleep
- <LI><a href="#[82]">>></a> EPD_7IN3F_Init
- <LI><a href="#[91]">>></a> EPD_7IN3F_DisplayPart
- <LI><a href="#[87]">>></a> EPD_7IN3F_Display
- <LI><a href="#[83]">>></a> EPD_7IN3F_Clear
- </UL>
- <P><STRONG><a name="[ac]"></a>SPI_WaitFlagStateUntilTimeout</STRONG> (Thumb, 210 bytes, Stack size 32 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- </UL>
- <BR>[Called By]<UL><LI><a href="#[af]">>></a> SPI_EndRxTransaction
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- </UL>
- <P><STRONG><a name="[ae]"></a>SPI_EndRxTxTransaction</STRONG> (Thumb, 36 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ac]">>></a> SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Called By]<UL><LI><a href="#[b0]">>></a> HAL_SPI_TransmitReceive
- <LI><a href="#[5b]">>></a> SPI_DMARxAbortCallback
- <LI><a href="#[55]">>></a> SPI_DMATransmitReceiveCplt
- <LI><a href="#[52]">>></a> SPI_DMATransmitCplt
- <LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- <LI><a href="#[b2]">>></a> SPI_CloseTx_ISR
- <LI><a href="#[9c]">>></a> HAL_SPI_Transmit
- </UL>
- <P><STRONG><a name="[af]"></a>SPI_EndRxTransaction</STRONG> (Thumb, 112 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ac]">>></a> SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Called By]<UL><LI><a href="#[b1]">>></a> HAL_SPI_Receive
- <LI><a href="#[57]">>></a> SPI_DMAReceiveCplt
- <LI><a href="#[b5]">>></a> SPI_CloseRx_ISR
- </UL>
- <P><STRONG><a name="[b2]"></a>SPI_CloseTx_ISR</STRONG> (Thumb, 130 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_CloseTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b4]">>></a> HAL_SPI_TxCpltCallback
- <LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Called By]<UL><LI><a href="#[49]">>></a> SPI_TxISR_16BIT
- <LI><a href="#[4a]">>></a> SPI_TxISR_8BIT
- </UL>
- <P><STRONG><a name="[4a]"></a>SPI_TxISR_8BIT</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_TxISR_8BIT ⇒ SPI_CloseTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b2]">>></a> SPI_CloseTx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[49]"></a>SPI_TxISR_16BIT</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_TxISR_16BIT ⇒ SPI_CloseTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b2]">>></a> SPI_CloseTx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[b5]"></a>SPI_CloseRx_ISR</STRONG> (Thumb, 76 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_CloseRx_ISR ⇒ SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[af]">>></a> SPI_EndRxTransaction
- <LI><a href="#[b6]">>></a> HAL_SPI_RxCpltCallback
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Called By]<UL><LI><a href="#[4f]">>></a> SPI_RxISR_16BIT
- <LI><a href="#[50]">>></a> SPI_RxISR_8BIT
- </UL>
- <P><STRONG><a name="[50]"></a>SPI_RxISR_8BIT</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_RxISR_8BIT ⇒ SPI_CloseRx_ISR ⇒ SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b5]">>></a> SPI_CloseRx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[4f]"></a>SPI_RxISR_16BIT</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_RxISR_16BIT ⇒ SPI_CloseRx_ISR ⇒ SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b5]">>></a> SPI_CloseRx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[b7]"></a>SPI_CloseRxTx_ISR</STRONG> (Thumb, 158 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_CloseRxTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- <LI><a href="#[b8]">>></a> HAL_SPI_TxRxCpltCallback
- <LI><a href="#[b6]">>></a> HAL_SPI_RxCpltCallback
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Called By]<UL><LI><a href="#[4b]">>></a> SPI_2linesRxISR_16BIT
- <LI><a href="#[4c]">>></a> SPI_2linesTxISR_16BIT
- <LI><a href="#[4d]">>></a> SPI_2linesRxISR_8BIT
- <LI><a href="#[4e]">>></a> SPI_2linesTxISR_8BIT
- </UL>
- <P><STRONG><a name="[4e]"></a>SPI_2linesTxISR_8BIT</STRONG> (Thumb, 46 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_2linesTxISR_8BIT ⇒ SPI_CloseRxTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[4d]"></a>SPI_2linesRxISR_8BIT</STRONG> (Thumb, 46 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_2linesRxISR_8BIT ⇒ SPI_CloseRxTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[4c]"></a>SPI_2linesTxISR_16BIT</STRONG> (Thumb, 46 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_2linesTxISR_16BIT ⇒ SPI_CloseRxTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[4b]"></a>SPI_2linesRxISR_16BIT</STRONG> (Thumb, 46 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_2linesRxISR_16BIT ⇒ SPI_CloseRxTx_ISR ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b7]">>></a> SPI_CloseRxTx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[53]"></a>SPI_DMAError</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SPI_DMAError
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[52]"></a>SPI_DMATransmitCplt</STRONG> (Thumb, 102 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_DMATransmitCplt ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b4]">>></a> HAL_SPI_TxCpltCallback
- <LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[51]"></a>SPI_DMAHalfTransmitCplt</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SPI_DMAHalfTransmitCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[bb]">>></a> HAL_SPI_TxHalfCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[57]"></a>SPI_DMAReceiveCplt</STRONG> (Thumb, 110 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_DMAReceiveCplt ⇒ SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[af]">>></a> SPI_EndRxTransaction
- <LI><a href="#[b6]">>></a> HAL_SPI_RxCpltCallback
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[56]"></a>SPI_DMAHalfReceiveCplt</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SPI_DMAHalfReceiveCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[be]">>></a> HAL_SPI_RxHalfCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[55]"></a>SPI_DMATransmitReceiveCplt</STRONG> (Thumb, 92 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_DMATransmitReceiveCplt ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- <LI><a href="#[b8]">>></a> HAL_SPI_TxRxCpltCallback
- <LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[54]"></a>SPI_DMAHalfTransmitReceiveCplt</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SPI_DMAHalfTransmitReceiveCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[bf]">>></a> HAL_SPI_TxRxHalfCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[59]"></a>SPI_AbortRx_ISR</STRONG> (Thumb, 82 bytes, Stack size 4 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = SPI_AbortRx_ISR
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[58]"></a>SPI_AbortTx_ISR</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(.text))
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[5b]"></a>SPI_DMARxAbortCallback</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SPI_DMARxAbortCallback ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- <LI><a href="#[ae]">>></a> SPI_EndRxTxTransaction
- <LI><a href="#[c4]">>></a> HAL_SPI_AbortCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[5a]"></a>SPI_DMATxAbortCallback</STRONG> (Thumb, 114 bytes, Stack size 16 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = SPI_DMATxAbortCallback
- </UL>
- <BR>[Calls]<UL><LI><a href="#[c4]">>></a> HAL_SPI_AbortCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[5c]"></a>SPI_DMAAbortOnError</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SPI_DMAAbortOnError
- </UL>
- <BR>[Calls]<UL><LI><a href="#[b3]">>></a> HAL_SPI_ErrorCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_spi.o(.text)
- </UL>
- <P><STRONG><a name="[d2]"></a>RCC_Delay</STRONG> (Thumb, 32 bytes, Stack size 4 bytes, stm32f1xx_hal_rcc.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = RCC_Delay
- </UL>
- <BR>[Called By]<UL><LI><a href="#[6e]">>></a> HAL_RCC_OscConfig
- </UL>
- <P><STRONG><a name="[dd]"></a>DMA_SetConfig</STRONG> (Thumb, 56 bytes, Stack size 4 bytes, stm32f1xx_hal_dma.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[bd]">>></a> HAL_DMA_Start_IT
- <LI><a href="#[dc]">>></a> HAL_DMA_Start
- </UL>
- <P><STRONG><a name="[e1]"></a>UART_SetConfig</STRONG> (Thumb, 194 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = UART_SetConfig ⇒ HAL_RCC_GetPCLK2Freq
- </UL>
- <BR>[Calls]<UL><LI><a href="#[d7]">>></a> HAL_RCC_GetPCLK2Freq
- <LI><a href="#[d5]">>></a> HAL_RCC_GetPCLK1Freq
- </UL>
- <BR>[Called By]<UL><LI><a href="#[7c]">>></a> HAL_UART_Init
- <LI><a href="#[e4]">>></a> HAL_MultiProcessor_Init
- <LI><a href="#[e3]">>></a> HAL_LIN_Init
- <LI><a href="#[e2]">>></a> HAL_HalfDuplex_Init
- </UL>
- <P><STRONG><a name="[e6]"></a>UART_WaitOnFlagUntilTimeout</STRONG> (Thumb, 120 bytes, Stack size 24 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = UART_WaitOnFlagUntilTimeout
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ad]">>></a> HAL_GetTick
- </UL>
- <BR>[Called By]<UL><LI><a href="#[7f]">>></a> HAL_UART_Transmit
- <LI><a href="#[e7]">>></a> HAL_UART_Receive
- </UL>
- <P><STRONG><a name="[e9]"></a>UART_EndRxTransfer</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[fe]">>></a> HAL_UART_IRQHandler
- <LI><a href="#[f1]">>></a> HAL_UART_DMAStop
- <LI><a href="#[5f]">>></a> UART_DMAError
- </UL>
- <P><STRONG><a name="[e8]"></a>UART_EndTxTransfer</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Called By]<UL><LI><a href="#[f1]">>></a> HAL_UART_DMAStop
- <LI><a href="#[5f]">>></a> UART_DMAError
- </UL>
- <P><STRONG><a name="[5f]"></a>UART_DMAError</STRONG> (Thumb, 74 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = UART_DMAError
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ea]">>></a> HAL_UART_ErrorCallback
- <LI><a href="#[e8]">>></a> UART_EndTxTransfer
- <LI><a href="#[e9]">>></a> UART_EndRxTransfer
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[5e]"></a>UART_DMATxHalfCplt</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMATxHalfCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[eb]">>></a> HAL_UART_TxHalfCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[5d]"></a>UART_DMATransmitCplt</STRONG> (Thumb, 48 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMATransmitCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ec]">>></a> HAL_UART_TxCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[61]"></a>UART_DMARxHalfCplt</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMARxHalfCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ee]">>></a> HAL_UART_RxHalfCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[60]"></a>UART_DMAReceiveCplt</STRONG> (Thumb, 62 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMAReceiveCplt
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ef]">>></a> HAL_UART_RxCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[63]"></a>UART_DMARxAbortCallback</STRONG> (Thumb, 44 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMARxAbortCallback
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f6]">>></a> HAL_UART_AbortCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[62]"></a>UART_DMATxAbortCallback</STRONG> (Thumb, 66 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMATxAbortCallback
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f6]">>></a> HAL_UART_AbortCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[64]"></a>UART_DMATxOnlyAbortCallback</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMATxOnlyAbortCallback
- </UL>
- <BR>[Calls]<UL><LI><a href="#[f8]">>></a> HAL_UART_AbortTransmitCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[65]"></a>UART_DMARxOnlyAbortCallback</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMARxOnlyAbortCallback
- </UL>
- <BR>[Calls]<UL><LI><a href="#[fa]">>></a> HAL_UART_AbortReceiveCpltCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[fc]"></a>UART_EndTransmit_IT</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ec]">>></a> HAL_UART_TxCpltCallback
- </UL>
- <BR>[Called By]<UL><LI><a href="#[fe]">>></a> HAL_UART_IRQHandler
- </UL>
- <P><STRONG><a name="[ff]"></a>UART_Transmit_IT</STRONG> (Thumb, 94 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Called By]<UL><LI><a href="#[fe]">>></a> HAL_UART_IRQHandler
- </UL>
- <P><STRONG><a name="[66]"></a>UART_DMAAbortOnError</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text))
- <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_DMAAbortOnError
- </UL>
- <BR>[Calls]<UL><LI><a href="#[ea]">>></a> HAL_UART_ErrorCallback
- </UL>
- <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(.text)
- </UL>
- <P><STRONG><a name="[fd]"></a>UART_Receive_IT</STRONG> (Thumb, 146 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(.text), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[ef]">>></a> HAL_UART_RxCpltCallback
- </UL>
- <BR>[Called By]<UL><LI><a href="#[fe]">>></a> HAL_UART_IRQHandler
- </UL>
- <P><STRONG><a name="[10d]"></a>_printf_core</STRONG> (Thumb, 436 bytes, Stack size 96 bytes, printf3.o(i._printf_core), UNUSED)
- <BR><BR>[Calls]<UL><LI><a href="#[10e]">>></a> __aeabi_uidivmod
- </UL>
- <BR>[Called By]<UL><LI><a href="#[10c]">>></a> __0printf$3
- </UL>
- <P>
- <H3>
- Undefined Global Symbols
- </H3><HR></body></html>
|