USART.htm 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528
  1. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  2. <html><head>
  3. <title>Static Call Graph - [..\OBJ\USART.axf]</title></head>
  4. <body><HR>
  5. <H1>Static Call Graph for image ..\OBJ\USART.axf</H1><HR>
  6. <BR><P>#&#060CALLGRAPH&#062# ARM Linker, 5060960: Last Updated: Sat Apr 08 22:13:09 2023
  7. <BR><P>
  8. <H3>Maximum Stack Usage = 536 bytes + Unknown(Functions without stacksize, Cycles, Untraceable Function Pointers)</H3><H3>
  9. Call chain for Maximum Stack Depth:</H3>
  10. __rt_entry_main &rArr; main &rArr; MOD_SpiDataProcess &rArr; MOD_SpiSetBleConfig &rArr; MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  11. <P>
  12. <H3>
  13. Functions with no stack information
  14. </H3><UL>
  15. <LI><a href="#[ca]">__user_initial_stackheap</a>
  16. </UL>
  17. </UL>
  18. <P>
  19. <H3>
  20. Mutually Recursive functions
  21. </H3> <LI><a href="#[24]">ADC1_2_IRQHandler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[24]">ADC1_2_IRQHandler</a><BR>
  22. </UL>
  23. <P>
  24. <H3>
  25. Function Pointers
  26. </H3><UL>
  27. <LI><a href="#[24]">ADC1_2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  28. <LI><a href="#[41]">ADC3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  29. <LI><a href="#[c]">BusFault_Handler</a> from stm32f1xx_it.o(i.BusFault_Handler) referenced from startup_stm32f103xe.o(RESET)
  30. <LI><a href="#[27]">CAN1_RX1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  31. <LI><a href="#[28]">CAN1_SCE_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  32. <LI><a href="#[1d]">DMA1_Channel1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  33. <LI><a href="#[1e]">DMA1_Channel2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  34. <LI><a href="#[1f]">DMA1_Channel3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  35. <LI><a href="#[20]">DMA1_Channel4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  36. <LI><a href="#[21]">DMA1_Channel5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  37. <LI><a href="#[22]">DMA1_Channel6_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  38. <LI><a href="#[23]">DMA1_Channel7_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  39. <LI><a href="#[4a]">DMA2_Channel1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  40. <LI><a href="#[4b]">DMA2_Channel2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  41. <LI><a href="#[4c]">DMA2_Channel3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  42. <LI><a href="#[4d]">DMA2_Channel4_5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  43. <LI><a href="#[f]">DebugMon_Handler</a> from stm32f1xx_it.o(i.DebugMon_Handler) referenced from startup_stm32f103xe.o(RESET)
  44. <LI><a href="#[18]">EXTI0_IRQHandler</a> from hal_spi.o(i.EXTI0_IRQHandler) referenced from startup_stm32f103xe.o(RESET)
  45. <LI><a href="#[3a]">EXTI15_10_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  46. <LI><a href="#[19]">EXTI1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  47. <LI><a href="#[1a]">EXTI2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  48. <LI><a href="#[1b]">EXTI3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  49. <LI><a href="#[1c]">EXTI4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  50. <LI><a href="#[29]">EXTI9_5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  51. <LI><a href="#[16]">FLASH_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  52. <LI><a href="#[42]">FSMC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  53. <LI><a href="#[5c]">HAL_Usart1SendData</a> from usart.o(i.HAL_Usart1SendData) referenced from main.o(i.main)
  54. <LI><a href="#[a]">HardFault_Handler</a> from stm32f1xx_it.o(i.HardFault_Handler) referenced from startup_stm32f103xe.o(RESET)
  55. <LI><a href="#[32]">I2C1_ER_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  56. <LI><a href="#[31]">I2C1_EV_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  57. <LI><a href="#[34]">I2C2_ER_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  58. <LI><a href="#[33]">I2C2_EV_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  59. <LI><a href="#[b]">MemManage_Handler</a> from stm32f1xx_it.o(i.MemManage_Handler) referenced from startup_stm32f103xe.o(RESET)
  60. <LI><a href="#[9]">NMI_Handler</a> from stm32f1xx_it.o(i.NMI_Handler) referenced from startup_stm32f103xe.o(RESET)
  61. <LI><a href="#[13]">PVD_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  62. <LI><a href="#[10]">PendSV_Handler</a> from stm32f1xx_it.o(i.PendSV_Handler) referenced from startup_stm32f103xe.o(RESET)
  63. <LI><a href="#[17]">RCC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  64. <LI><a href="#[3b]">RTC_Alarm_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  65. <LI><a href="#[15]">RTC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  66. <LI><a href="#[8]">Reset_Handler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  67. <LI><a href="#[43]">SDIO_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  68. <LI><a href="#[35]">SPI1_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  69. <LI><a href="#[36]">SPI2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  70. <LI><a href="#[45]">SPI3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  71. <LI><a href="#[e]">SVC_Handler</a> from stm32f1xx_it.o(i.SVC_Handler) referenced from startup_stm32f103xe.o(RESET)
  72. <LI><a href="#[11]">SysTick_Handler</a> from stm32f1xx_it.o(i.SysTick_Handler) referenced from startup_stm32f103xe.o(RESET)
  73. <LI><a href="#[4e]">SystemInit</a> from system_stm32f1xx.o(i.SystemInit) referenced from startup_stm32f103xe.o(.text)
  74. <LI><a href="#[14]">TAMPER_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  75. <LI><a href="#[2a]">TIM1_BRK_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  76. <LI><a href="#[2d]">TIM1_CC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  77. <LI><a href="#[2c]">TIM1_TRG_COM_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  78. <LI><a href="#[2b]">TIM1_UP_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  79. <LI><a href="#[2e]">TIM2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  80. <LI><a href="#[2f]">TIM3_IRQHandler</a> from hal_timer.o(i.TIM3_IRQHandler) referenced from startup_stm32f103xe.o(RESET)
  81. <LI><a href="#[30]">TIM4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  82. <LI><a href="#[44]">TIM5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  83. <LI><a href="#[48]">TIM6_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  84. <LI><a href="#[49]">TIM7_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  85. <LI><a href="#[3d]">TIM8_BRK_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  86. <LI><a href="#[40]">TIM8_CC_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  87. <LI><a href="#[3f]">TIM8_TRG_COM_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  88. <LI><a href="#[3e]">TIM8_UP_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  89. <LI><a href="#[46]">UART4_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  90. <LI><a href="#[47]">UART5_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  91. <LI><a href="#[55]">UART_DMAAbortOnError</a> from stm32f1xx_hal_uart.o(i.UART_DMAAbortOnError) referenced from stm32f1xx_hal_uart.o(i.HAL_UART_IRQHandler)
  92. <LI><a href="#[37]">USART1_IRQHandler</a> from usart.o(i.USART1_IRQHandler) referenced from startup_stm32f103xe.o(RESET)
  93. <LI><a href="#[38]">USART2_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  94. <LI><a href="#[39]">USART3_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  95. <LI><a href="#[3c]">USBWakeUp_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  96. <LI><a href="#[25]">USB_HP_CAN1_TX_IRQHandler</a> from hal_can.o(i.USB_HP_CAN1_TX_IRQHandler) referenced from startup_stm32f103xe.o(RESET)
  97. <LI><a href="#[26]">USB_LP_CAN1_RX0_IRQHandler</a> from hal_can.o(i.USB_LP_CAN1_RX0_IRQHandler) referenced from startup_stm32f103xe.o(RESET)
  98. <LI><a href="#[d]">UsageFault_Handler</a> from stm32f1xx_it.o(i.UsageFault_Handler) referenced from startup_stm32f103xe.o(RESET)
  99. <LI><a href="#[12]">WWDG_IRQHandler</a> from startup_stm32f103xe.o(.text) referenced from startup_stm32f103xe.o(RESET)
  100. <LI><a href="#[64]">__main</a> from __main.o(!!!main) referenced from startup_stm32f103xe.o(.text)
  101. <LI><a href="#[54]">_get_lc_ctype</a> from lc_ctype_c.o(locale$$code) referenced from rt_ctype_table.o(.text)
  102. <LI><a href="#[52]">_printf_input_char</a> from _printf_char_common.o(.text) referenced from _printf_char_common.o(.text)
  103. <LI><a href="#[50]">_snputc</a> from _snputc.o(.text) referenced from vsnprintf.o(.text)
  104. <LI><a href="#[51]">_sputc</a> from _sputc.o(.text) referenced from __2sprintf.o(.text)
  105. <LI><a href="#[5f]">can_error_callback</a> from main.o(i.can_error_callback) referenced from main.o(i.main)
  106. <LI><a href="#[61]">can_rx_callback</a> from main.o(i.can_rx_callback) referenced from main.o(i.main)
  107. <LI><a href="#[60]">can_tx_callback</a> from main.o(i.can_tx_callback) referenced from main.o(i.main)
  108. <LI><a href="#[5a]">cfg_cfm</a> from lib_iso15765.o(i.cfg_cfm) referenced from lib_iso15765.o(i.iso15765_init)
  109. <LI><a href="#[59]">cfm</a> from lib_iso15765.o(i.cfm) referenced from lib_iso15765.o(i.iso15765_init)
  110. <LI><a href="#[58]">ff_indn</a> from lib_iso15765.o(i.ff_indn) referenced from lib_iso15765.o(i.iso15765_init)
  111. <LI><a href="#[53]">fputc</a> from usart.o(i.fputc) referenced from _printf_char_file.o(.text)
  112. <LI><a href="#[6]">getms</a> from mod_candataprocess.o(i.getms) referenced 8 times from mod_candataprocess.o(.data)
  113. <LI><a href="#[57]">indn</a> from lib_iso15765.o(i.indn) referenced from lib_iso15765.o(i.iso15765_init)
  114. <LI><a href="#[62]">led_toggle_timer_callback</a> from main.o(i.led_toggle_timer_callback) referenced from main.o(i.main)
  115. <LI><a href="#[5]">on_error</a> from mod_candataprocess.o(i.on_error) referenced 8 times from mod_candataprocess.o(.data)
  116. <LI><a href="#[4]">parse_finish_callback</a> from mod_candataprocess.o(i.parse_finish_callback) referenced 8 times from mod_candataprocess.o(.data)
  117. <LI><a href="#[63]">print_log_timer_callback</a> from main.o(i.print_log_timer_callback) referenced from main.o(i.main)
  118. <LI><a href="#[7]">send_frame_via_can</a> from mod_candataprocess.o(i.send_frame_via_can) referenced 8 times from mod_candataprocess.o(.data)
  119. <LI><a href="#[5e]">spi_inter_callback</a> from main.o(i.spi_inter_callback) referenced from main.o(i.main)
  120. <LI><a href="#[5d]">spi_send_callback</a> from main.o(i.spi_send_callback) referenced from main.o(i.main)
  121. <LI><a href="#[5b]">uart_isr_callback</a> from main.o(i.uart_isr_callback) referenced from main.o(i.main)
  122. <LI><a href="#[56]">wdg_feed_timer_callback</a> from hal_wdg.o(i.wdg_feed_timer_callback) referenced from hal_wdg.o(i.HAL_WdgFeed)
  123. </UL>
  124. <P>
  125. <H3>
  126. Global Symbols
  127. </H3>
  128. <P><STRONG><a name="[64]"></a>__main</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, __main.o(!!!main))
  129. <BR><BR>[Calls]<UL><LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  130. <LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_entry
  131. </UL>
  132. <P><STRONG><a name="[65]"></a>__scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter))
  133. <BR><BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__main
  134. </UL>
  135. <P><STRONG><a name="[67]"></a>__scatterload_rt2</STRONG> (Thumb, 44 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
  136. <BR><BR>[Calls]<UL><LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_entry
  137. </UL>
  138. <P><STRONG><a name="[1c1]"></a>__scatterload_rt2_thumb_only</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
  139. <P><STRONG><a name="[1c2]"></a>__scatterload_null</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
  140. <P><STRONG><a name="[1c3]"></a>__decompress</STRONG> (Thumb, 90 bytes, Stack size unknown bytes, __dczerorl2.o(!!dczerorl2), UNUSED)
  141. <P><STRONG><a name="[1c4]"></a>__decompress1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(!!dczerorl2), UNUSED)
  142. <P><STRONG><a name="[1c5]"></a>__scatterload_zeroinit</STRONG> (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED)
  143. <P><STRONG><a name="[68]"></a>_printf_n</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_n.o(.ARM.Collect$$_printf_percent$$00000001))
  144. <BR><BR>[Calls]<UL><LI><a href="#[69]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_charcount
  145. </UL>
  146. <P><STRONG><a name="[a8]"></a>_printf_percent</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000))
  147. <BR><BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__printf
  148. </UL>
  149. <P><STRONG><a name="[6a]"></a>_printf_p</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_p.o(.ARM.Collect$$_printf_percent$$00000002))
  150. <BR><BR>[Stack]<UL><LI>Max Depth = 64 + Unknown Stack Size
  151. <LI>Call Chain = _printf_p &rArr; _printf_hex_ptr &rArr; _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  152. </UL>
  153. <BR>[Calls]<UL><LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_hex_ptr
  154. </UL>
  155. <P><STRONG><a name="[6c]"></a>_printf_f</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_f.o(.ARM.Collect$$_printf_percent$$00000003))
  156. <BR><BR>[Stack]<UL><LI>Max Depth = 324 + Unknown Stack Size
  157. <LI>Call Chain = _printf_f &rArr; _printf_fp_dec &rArr; _printf_fp_dec_real &rArr; _fp_digits &rArr; _btod_etento &rArr; _btod_emul &rArr; _e2e
  158. </UL>
  159. <BR>[Calls]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec
  160. </UL>
  161. <P><STRONG><a name="[6e]"></a>_printf_e</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_e.o(.ARM.Collect$$_printf_percent$$00000004))
  162. <BR><BR>[Stack]<UL><LI>Max Depth = 324 + Unknown Stack Size
  163. <LI>Call Chain = _printf_e &rArr; _printf_fp_dec &rArr; _printf_fp_dec_real &rArr; _fp_digits &rArr; _btod_etento &rArr; _btod_emul &rArr; _e2e
  164. </UL>
  165. <BR>[Calls]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec
  166. </UL>
  167. <P><STRONG><a name="[6f]"></a>_printf_g</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_g.o(.ARM.Collect$$_printf_percent$$00000005))
  168. <BR><BR>[Stack]<UL><LI>Max Depth = 324 + Unknown Stack Size
  169. <LI>Call Chain = _printf_g &rArr; _printf_fp_dec &rArr; _printf_fp_dec_real &rArr; _fp_digits &rArr; _btod_etento &rArr; _btod_emul &rArr; _e2e
  170. </UL>
  171. <BR>[Calls]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec
  172. </UL>
  173. <P><STRONG><a name="[70]"></a>_printf_a</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_a.o(.ARM.Collect$$_printf_percent$$00000006))
  174. <BR><BR>[Stack]<UL><LI>Max Depth = 112 + Unknown Stack Size
  175. <LI>Call Chain = _printf_a &rArr; _printf_fp_hex &rArr; _printf_fp_hex_real &rArr; _printf_fp_infnan &rArr; _printf_post_padding
  176. </UL>
  177. <BR>[Calls]<UL><LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex
  178. </UL>
  179. <P><STRONG><a name="[1c6]"></a>_printf_ll</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_ll.o(.ARM.Collect$$_printf_percent$$00000007))
  180. <P><STRONG><a name="[72]"></a>_printf_i</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_i.o(.ARM.Collect$$_printf_percent$$00000008))
  181. <BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
  182. <LI>Call Chain = _printf_i &rArr; _printf_int_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  183. </UL>
  184. <BR>[Calls]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_dec
  185. </UL>
  186. <P><STRONG><a name="[74]"></a>_printf_d</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_d.o(.ARM.Collect$$_printf_percent$$00000009))
  187. <BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
  188. <LI>Call Chain = _printf_d &rArr; _printf_int_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  189. </UL>
  190. <BR>[Calls]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_dec
  191. </UL>
  192. <P><STRONG><a name="[75]"></a>_printf_u</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_u.o(.ARM.Collect$$_printf_percent$$0000000A))
  193. <BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
  194. <LI>Call Chain = _printf_u &rArr; _printf_int_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  195. </UL>
  196. <BR>[Calls]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_dec
  197. </UL>
  198. <P><STRONG><a name="[76]"></a>_printf_o</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_o.o(.ARM.Collect$$_printf_percent$$0000000B))
  199. <BR><BR>[Stack]<UL><LI>Max Depth = 64 + Unknown Stack Size
  200. <LI>Call Chain = _printf_o &rArr; _printf_int_oct &rArr; _printf_longlong_oct &rArr; _printf_int_common &rArr; _printf_post_padding
  201. </UL>
  202. <BR>[Calls]<UL><LI><a href="#[77]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_oct
  203. </UL>
  204. <P><STRONG><a name="[78]"></a>_printf_x</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C))
  205. <BR><BR>[Stack]<UL><LI>Max Depth = 80 + Unknown Stack Size
  206. <LI>Call Chain = _printf_x &rArr; _printf_int_hex &rArr; _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  207. </UL>
  208. <BR>[Calls]<UL><LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_hex
  209. </UL>
  210. <P><STRONG><a name="[7a]"></a>_printf_lli</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_lli.o(.ARM.Collect$$_printf_percent$$0000000D))
  211. <BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
  212. <LI>Call Chain = _printf_lli &rArr; _printf_longlong_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  213. </UL>
  214. <BR>[Calls]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_dec
  215. </UL>
  216. <P><STRONG><a name="[7c]"></a>_printf_lld</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_lld.o(.ARM.Collect$$_printf_percent$$0000000E))
  217. <BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
  218. <LI>Call Chain = _printf_lld &rArr; _printf_longlong_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  219. </UL>
  220. <BR>[Calls]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_dec
  221. </UL>
  222. <P><STRONG><a name="[7d]"></a>_printf_llu</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_llu.o(.ARM.Collect$$_printf_percent$$0000000F))
  223. <BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
  224. <LI>Call Chain = _printf_llu &rArr; _printf_longlong_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  225. </UL>
  226. <BR>[Calls]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_dec
  227. </UL>
  228. <P><STRONG><a name="[7e]"></a>_printf_llo</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_llo.o(.ARM.Collect$$_printf_percent$$00000010))
  229. <BR><BR>[Stack]<UL><LI>Max Depth = 56 + Unknown Stack Size
  230. <LI>Call Chain = _printf_llo &rArr; _printf_ll_oct &rArr; _printf_longlong_oct &rArr; _printf_int_common &rArr; _printf_post_padding
  231. </UL>
  232. <BR>[Calls]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_ll_oct
  233. </UL>
  234. <P><STRONG><a name="[80]"></a>_printf_llx</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_llx.o(.ARM.Collect$$_printf_percent$$00000011))
  235. <BR><BR>[Stack]<UL><LI>Max Depth = 64 + Unknown Stack Size
  236. <LI>Call Chain = _printf_llx &rArr; _printf_ll_hex &rArr; _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  237. </UL>
  238. <BR>[Calls]<UL><LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_ll_hex
  239. </UL>
  240. <P><STRONG><a name="[1c7]"></a>_printf_l</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_l.o(.ARM.Collect$$_printf_percent$$00000012))
  241. <P><STRONG><a name="[82]"></a>_printf_c</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_c.o(.ARM.Collect$$_printf_percent$$00000013))
  242. <BR><BR>[Stack]<UL><LI>Max Depth = 40 + Unknown Stack Size
  243. <LI>Call Chain = _printf_c &rArr; _printf_char &rArr; _printf_cs_common &rArr; _printf_str &rArr; _printf_post_padding
  244. </UL>
  245. <BR>[Calls]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char
  246. </UL>
  247. <P><STRONG><a name="[84]"></a>_printf_s</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_s.o(.ARM.Collect$$_printf_percent$$00000014))
  248. <BR><BR>[Stack]<UL><LI>Max Depth = 40 + Unknown Stack Size
  249. <LI>Call Chain = _printf_s &rArr; _printf_string &rArr; _printf_cs_common &rArr; _printf_str &rArr; _printf_post_padding
  250. </UL>
  251. <BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_string
  252. </UL>
  253. <P><STRONG><a name="[86]"></a>_printf_lc</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_lc.o(.ARM.Collect$$_printf_percent$$00000015))
  254. <BR><BR>[Stack]<UL><LI>Max Depth = 88 + Unknown Stack Size
  255. <LI>Call Chain = _printf_lc &rArr; _printf_wchar &rArr; _printf_lcs_common &rArr; _printf_wctomb &rArr; _wcrtomb &rArr; __rt_ctype_table
  256. </UL>
  257. <BR>[Calls]<UL><LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wchar
  258. </UL>
  259. <P><STRONG><a name="[88]"></a>_printf_ls</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_ls.o(.ARM.Collect$$_printf_percent$$00000016))
  260. <BR><BR>[Stack]<UL><LI>Max Depth = 88 + Unknown Stack Size
  261. <LI>Call Chain = _printf_ls &rArr; _printf_wstring &rArr; _printf_lcs_common &rArr; _printf_wctomb &rArr; _wcrtomb &rArr; __rt_ctype_table
  262. </UL>
  263. <BR>[Calls]<UL><LI><a href="#[89]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wstring
  264. </UL>
  265. <P><STRONG><a name="[1c8]"></a>_printf_percent_end</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017))
  266. <P><STRONG><a name="[92]"></a>__rt_lib_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000))
  267. <BR><BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_entry_li
  268. </UL>
  269. <P><STRONG><a name="[1c9]"></a>__rt_lib_init_fp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000002))
  270. <P><STRONG><a name="[1ca]"></a>__rt_lib_init_heap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000A))
  271. <P><STRONG><a name="[8a]"></a>__rt_lib_init_lc_common</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000F))
  272. <BR><BR>[Calls]<UL><LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_locale
  273. </UL>
  274. <P><STRONG><a name="[1cb]"></a>__rt_lib_init_preinit_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004))
  275. <P><STRONG><a name="[1cc]"></a>__rt_lib_init_rand_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E))
  276. <P><STRONG><a name="[1cd]"></a>__rt_lib_init_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C))
  277. <P><STRONG><a name="[1ce]"></a>__rt_lib_init_lc_collate_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000011))
  278. <P><STRONG><a name="[8c]"></a>__rt_lib_init_lc_ctype_2</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000012))
  279. <BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
  280. <LI>Call Chain = __rt_lib_init_lc_ctype_2 &rArr; _get_lc_ctype
  281. </UL>
  282. <BR>[Calls]<UL><LI><a href="#[54]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_get_lc_ctype
  283. </UL>
  284. <P><STRONG><a name="[1cf]"></a>__rt_lib_init_lc_ctype_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013))
  285. <P><STRONG><a name="[1d0]"></a>__rt_lib_init_lc_monetary_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015))
  286. <P><STRONG><a name="[8d]"></a>__rt_lib_init_lc_numeric_2</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000016))
  287. <BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
  288. <LI>Call Chain = __rt_lib_init_lc_numeric_2 &rArr; _get_lc_numeric
  289. </UL>
  290. <BR>[Calls]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_get_lc_numeric
  291. </UL>
  292. <P><STRONG><a name="[1d1]"></a>__rt_lib_init_alloca_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E))
  293. <P><STRONG><a name="[1d2]"></a>__rt_lib_init_argv_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002C))
  294. <P><STRONG><a name="[1d3]"></a>__rt_lib_init_atexit_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B))
  295. <P><STRONG><a name="[1d4]"></a>__rt_lib_init_clock_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021))
  296. <P><STRONG><a name="[1d5]"></a>__rt_lib_init_cpp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032))
  297. <P><STRONG><a name="[1d6]"></a>__rt_lib_init_exceptions_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030))
  298. <P><STRONG><a name="[1d7]"></a>__rt_lib_init_fp_trap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F))
  299. <P><STRONG><a name="[1d8]"></a>__rt_lib_init_getenv_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023))
  300. <P><STRONG><a name="[1d9]"></a>__rt_lib_init_lc_numeric_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017))
  301. <P><STRONG><a name="[1da]"></a>__rt_lib_init_lc_time_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019))
  302. <P><STRONG><a name="[1db]"></a>__rt_lib_init_return</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000033))
  303. <P><STRONG><a name="[1dc]"></a>__rt_lib_init_signal_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D))
  304. <P><STRONG><a name="[1dd]"></a>__rt_lib_init_stdio_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025))
  305. <P><STRONG><a name="[97]"></a>__rt_lib_shutdown</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000))
  306. <BR><BR>[Called By]<UL><LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_exit_ls
  307. </UL>
  308. <P><STRONG><a name="[1de]"></a>__rt_lib_shutdown_cpp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004))
  309. <P><STRONG><a name="[1df]"></a>__rt_lib_shutdown_fini_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002))
  310. <P><STRONG><a name="[1e0]"></a>__rt_lib_shutdown_fp_trap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000009))
  311. <P><STRONG><a name="[1e1]"></a>__rt_lib_shutdown_heap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000011))
  312. <P><STRONG><a name="[1e2]"></a>__rt_lib_shutdown_return</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000012))
  313. <P><STRONG><a name="[1e3]"></a>__rt_lib_shutdown_signal_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C))
  314. <P><STRONG><a name="[1e4]"></a>__rt_lib_shutdown_stdio_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000006))
  315. <P><STRONG><a name="[1e5]"></a>__rt_lib_shutdown_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E))
  316. <P><STRONG><a name="[66]"></a>__rt_entry</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry.o(.ARM.Collect$$rtentry$$00000000))
  317. <BR><BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload_rt2
  318. <LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__main
  319. </UL>
  320. <P><STRONG><a name="[1e6]"></a>__rt_entry_presh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002))
  321. <P><STRONG><a name="[8f]"></a>__rt_entry_sh</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004))
  322. <BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
  323. <LI>Call Chain = __rt_entry_sh &rArr; __user_setup_stackheap
  324. </UL>
  325. <BR>[Calls]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__user_setup_stackheap
  326. </UL>
  327. <P><STRONG><a name="[91]"></a>__rt_entry_li</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000A))
  328. <BR><BR>[Calls]<UL><LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_lib_init
  329. </UL>
  330. <P><STRONG><a name="[1e7]"></a>__rt_entry_postsh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009))
  331. <P><STRONG><a name="[93]"></a>__rt_entry_main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D))
  332. <BR><BR>[Stack]<UL><LI>Max Depth = 536 + Unknown Stack Size
  333. <LI>Call Chain = __rt_entry_main &rArr; main &rArr; MOD_SpiDataProcess &rArr; MOD_SpiSetBleConfig &rArr; MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  334. </UL>
  335. <BR>[Calls]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  336. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;exit
  337. </UL>
  338. <P><STRONG><a name="[1e8]"></a>__rt_entry_postli_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C))
  339. <P><STRONG><a name="[cb]"></a>__rt_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000))
  340. <BR><BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;exit
  341. </UL>
  342. <P><STRONG><a name="[96]"></a>__rt_exit_ls</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000003))
  343. <BR><BR>[Calls]<UL><LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_lib_shutdown
  344. </UL>
  345. <P><STRONG><a name="[1e9]"></a>__rt_exit_prels_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002))
  346. <P><STRONG><a name="[98]"></a>__rt_exit_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004))
  347. <BR><BR>[Calls]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_sys_exit
  348. </UL>
  349. <P><STRONG><a name="[8]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  350. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  351. </UL>
  352. <P><STRONG><a name="[24]"></a>ADC1_2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  353. <BR><BR>[Calls]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC1_2_IRQHandler
  354. </UL>
  355. <BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC1_2_IRQHandler
  356. </UL>
  357. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  358. </UL>
  359. <P><STRONG><a name="[41]"></a>ADC3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  360. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  361. </UL>
  362. <P><STRONG><a name="[27]"></a>CAN1_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  363. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  364. </UL>
  365. <P><STRONG><a name="[28]"></a>CAN1_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  366. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  367. </UL>
  368. <P><STRONG><a name="[1d]"></a>DMA1_Channel1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  369. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  370. </UL>
  371. <P><STRONG><a name="[1e]"></a>DMA1_Channel2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  372. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  373. </UL>
  374. <P><STRONG><a name="[1f]"></a>DMA1_Channel3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  375. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  376. </UL>
  377. <P><STRONG><a name="[20]"></a>DMA1_Channel4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  378. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  379. </UL>
  380. <P><STRONG><a name="[21]"></a>DMA1_Channel5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  381. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  382. </UL>
  383. <P><STRONG><a name="[22]"></a>DMA1_Channel6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  384. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  385. </UL>
  386. <P><STRONG><a name="[23]"></a>DMA1_Channel7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  387. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  388. </UL>
  389. <P><STRONG><a name="[4a]"></a>DMA2_Channel1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  390. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  391. </UL>
  392. <P><STRONG><a name="[4b]"></a>DMA2_Channel2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  393. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  394. </UL>
  395. <P><STRONG><a name="[4c]"></a>DMA2_Channel3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  396. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  397. </UL>
  398. <P><STRONG><a name="[4d]"></a>DMA2_Channel4_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  399. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  400. </UL>
  401. <P><STRONG><a name="[3a]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  402. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  403. </UL>
  404. <P><STRONG><a name="[19]"></a>EXTI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  405. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  406. </UL>
  407. <P><STRONG><a name="[1a]"></a>EXTI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  408. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  409. </UL>
  410. <P><STRONG><a name="[1b]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  411. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  412. </UL>
  413. <P><STRONG><a name="[1c]"></a>EXTI4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  414. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  415. </UL>
  416. <P><STRONG><a name="[29]"></a>EXTI9_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  417. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  418. </UL>
  419. <P><STRONG><a name="[16]"></a>FLASH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  420. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  421. </UL>
  422. <P><STRONG><a name="[42]"></a>FSMC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  423. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  424. </UL>
  425. <P><STRONG><a name="[32]"></a>I2C1_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  426. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  427. </UL>
  428. <P><STRONG><a name="[31]"></a>I2C1_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  429. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  430. </UL>
  431. <P><STRONG><a name="[34]"></a>I2C2_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  432. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  433. </UL>
  434. <P><STRONG><a name="[33]"></a>I2C2_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  435. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  436. </UL>
  437. <P><STRONG><a name="[13]"></a>PVD_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  438. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  439. </UL>
  440. <P><STRONG><a name="[17]"></a>RCC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  441. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  442. </UL>
  443. <P><STRONG><a name="[3b]"></a>RTC_Alarm_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  444. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  445. </UL>
  446. <P><STRONG><a name="[15]"></a>RTC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  447. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  448. </UL>
  449. <P><STRONG><a name="[43]"></a>SDIO_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  450. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  451. </UL>
  452. <P><STRONG><a name="[35]"></a>SPI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  453. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  454. </UL>
  455. <P><STRONG><a name="[36]"></a>SPI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  456. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  457. </UL>
  458. <P><STRONG><a name="[45]"></a>SPI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  459. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  460. </UL>
  461. <P><STRONG><a name="[14]"></a>TAMPER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  462. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  463. </UL>
  464. <P><STRONG><a name="[2a]"></a>TIM1_BRK_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  465. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  466. </UL>
  467. <P><STRONG><a name="[2d]"></a>TIM1_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  468. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  469. </UL>
  470. <P><STRONG><a name="[2c]"></a>TIM1_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  471. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  472. </UL>
  473. <P><STRONG><a name="[2b]"></a>TIM1_UP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  474. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  475. </UL>
  476. <P><STRONG><a name="[2e]"></a>TIM2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  477. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  478. </UL>
  479. <P><STRONG><a name="[30]"></a>TIM4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  480. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  481. </UL>
  482. <P><STRONG><a name="[44]"></a>TIM5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  483. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  484. </UL>
  485. <P><STRONG><a name="[48]"></a>TIM6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  486. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  487. </UL>
  488. <P><STRONG><a name="[49]"></a>TIM7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  489. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  490. </UL>
  491. <P><STRONG><a name="[3d]"></a>TIM8_BRK_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  492. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  493. </UL>
  494. <P><STRONG><a name="[40]"></a>TIM8_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  495. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  496. </UL>
  497. <P><STRONG><a name="[3f]"></a>TIM8_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  498. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  499. </UL>
  500. <P><STRONG><a name="[3e]"></a>TIM8_UP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  501. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  502. </UL>
  503. <P><STRONG><a name="[46]"></a>UART4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  504. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  505. </UL>
  506. <P><STRONG><a name="[47]"></a>UART5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  507. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  508. </UL>
  509. <P><STRONG><a name="[38]"></a>USART2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  510. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  511. </UL>
  512. <P><STRONG><a name="[39]"></a>USART3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  513. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  514. </UL>
  515. <P><STRONG><a name="[3c]"></a>USBWakeUp_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  516. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  517. </UL>
  518. <P><STRONG><a name="[12]"></a>WWDG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xe.o(.text))
  519. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  520. </UL>
  521. <P><STRONG><a name="[ca]"></a>__user_initial_stackheap</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, startup_stm32f103xe.o(.text))
  522. <BR><BR>[Called By]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__user_setup_stackheap
  523. </UL>
  524. <P><STRONG><a name="[1ea]"></a>__use_no_semihosting</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi_2.o(.text), UNUSED)
  525. <P><STRONG><a name="[119]"></a>__aeabi_llsr</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text))
  526. <BR><BR>[Called By]<UL><LI><a href="#[118]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Program
  527. </UL>
  528. <P><STRONG><a name="[1eb]"></a>_ll_ushift_r</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
  529. <P><STRONG><a name="[9a]"></a>vsnprintf</STRONG> (Thumb, 48 bytes, Stack size 24 bytes, vsnprintf.o(.text))
  530. <BR><BR>[Stack]<UL><LI>Max Depth = 128 + Unknown Stack Size
  531. <LI>Call Chain = vsnprintf &rArr; _printf_char_common &rArr; __printf
  532. </UL>
  533. <BR>[Calls]<UL><LI><a href="#[51]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_sputc
  534. <LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_common
  535. </UL>
  536. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Vsnprintf
  537. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Sprintf
  538. </UL>
  539. <P><STRONG><a name="[9c]"></a>__2printf</STRONG> (Thumb, 20 bytes, Stack size 24 bytes, __2printf.o(.text))
  540. <BR><BR>[Stack]<UL><LI>Max Depth = 144 + Unknown Stack Size
  541. <LI>Call Chain = __2printf &rArr; _printf_char_file &rArr; _printf_char_common &rArr; __printf
  542. </UL>
  543. <BR>[Calls]<UL><LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_file
  544. </UL>
  545. <BR>[Called By]<UL><LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_finish_callback
  546. </UL>
  547. <P><STRONG><a name="[9e]"></a>__2sprintf</STRONG> (Thumb, 38 bytes, Stack size 32 bytes, __2sprintf.o(.text))
  548. <BR><BR>[Stack]<UL><LI>Max Depth = 136 + Unknown Stack Size
  549. <LI>Call Chain = __2sprintf &rArr; _printf_char_common &rArr; __printf
  550. </UL>
  551. <BR>[Calls]<UL><LI><a href="#[51]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_sputc
  552. <LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_common
  553. </UL>
  554. <BR>[Called By]<UL><LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  555. </UL>
  556. <P><STRONG><a name="[a0]"></a>_printf_pre_padding</STRONG> (Thumb, 44 bytes, Stack size 16 bytes, _printf_pad.o(.text))
  557. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = _printf_pre_padding
  558. </UL>
  559. <BR>[Called By]<UL><LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_str
  560. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_infnan
  561. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex_real
  562. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  563. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wctomb
  564. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_common
  565. </UL>
  566. <P><STRONG><a name="[a1]"></a>_printf_post_padding</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, _printf_pad.o(.text))
  567. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = _printf_post_padding
  568. </UL>
  569. <BR>[Called By]<UL><LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_str
  570. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_infnan
  571. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex_real
  572. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  573. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wctomb
  574. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_common
  575. </UL>
  576. <P><STRONG><a name="[9f]"></a>_printf_str</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, _printf_str.o(.text))
  577. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = _printf_str &rArr; _printf_post_padding
  578. </UL>
  579. <BR>[Calls]<UL><LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  580. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  581. </UL>
  582. <BR>[Called By]<UL><LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_cs_common
  583. </UL>
  584. <P><STRONG><a name="[73]"></a>_printf_int_dec</STRONG> (Thumb, 104 bytes, Stack size 24 bytes, _printf_dec.o(.text))
  585. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = _printf_int_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  586. </UL>
  587. <BR>[Calls]<UL><LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_common
  588. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_truncate_unsigned
  589. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_truncate_signed
  590. </UL>
  591. <BR>[Called By]<UL><LI><a href="#[75]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_u
  592. <LI><a href="#[72]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_i
  593. <LI><a href="#[74]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_d
  594. </UL>
  595. <P><STRONG><a name="[a5]"></a>_printf_longlong_hex</STRONG> (Thumb, 86 bytes, Stack size 16 bytes, _printf_hex_int_ll_ptr.o(.text))
  596. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  597. </UL>
  598. <BR>[Calls]<UL><LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_common
  599. </UL>
  600. <BR>[Called By]<UL><LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_hex_ptr
  601. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_ll_hex
  602. <LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_hex
  603. </UL>
  604. <P><STRONG><a name="[79]"></a>_printf_int_hex</STRONG> (Thumb, 28 bytes, Stack size 16 bytes, _printf_hex_int_ll_ptr.o(.text))
  605. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = _printf_int_hex &rArr; _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  606. </UL>
  607. <BR>[Calls]<UL><LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_truncate_unsigned
  608. <LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_hex
  609. </UL>
  610. <BR>[Called By]<UL><LI><a href="#[78]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_x
  611. </UL>
  612. <P><STRONG><a name="[81]"></a>_printf_ll_hex</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, _printf_hex_int_ll_ptr.o(.text))
  613. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = _printf_ll_hex &rArr; _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  614. </UL>
  615. <BR>[Calls]<UL><LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_hex
  616. </UL>
  617. <BR>[Called By]<UL><LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_llx
  618. </UL>
  619. <P><STRONG><a name="[6b]"></a>_printf_hex_ptr</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, _printf_hex_int_ll_ptr.o(.text))
  620. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = _printf_hex_ptr &rArr; _printf_longlong_hex &rArr; _printf_int_common &rArr; _printf_post_padding
  621. </UL>
  622. <BR>[Calls]<UL><LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_hex
  623. </UL>
  624. <BR>[Called By]<UL><LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_p
  625. </UL>
  626. <P><STRONG><a name="[a6]"></a>__printf</STRONG> (Thumb, 388 bytes, Stack size 40 bytes, __printf_flags_ss_wp.o(.text))
  627. <BR><BR>[Stack]<UL><LI>Max Depth = 40 + Unknown Stack Size
  628. <LI>Call Chain = __printf
  629. </UL>
  630. <BR>[Calls]<UL><LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_percent
  631. <LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_is_digit
  632. </UL>
  633. <BR>[Called By]<UL><LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_common
  634. </UL>
  635. <P><STRONG><a name="[a9]"></a>atoi</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, atoi.o(.text))
  636. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = atoi &rArr; strtol &rArr; _strtoul
  637. </UL>
  638. <BR>[Calls]<UL><LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strtol
  639. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_errno_addr
  640. </UL>
  641. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  642. </UL>
  643. <P><STRONG><a name="[18e]"></a>strstr</STRONG> (Thumb, 36 bytes, Stack size 12 bytes, strstr.o(.text))
  644. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = strstr
  645. </UL>
  646. <BR>[Called By]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Strstr
  647. </UL>
  648. <P><STRONG><a name="[18d]"></a>memcmp</STRONG> (Thumb, 88 bytes, Stack size 8 bytes, memcmp.o(.text))
  649. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = memcmp
  650. </UL>
  651. <BR>[Called By]<UL><LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  652. </UL>
  653. <P><STRONG><a name="[dc]"></a>strlen</STRONG> (Thumb, 62 bytes, Stack size 8 bytes, strlen.o(.text))
  654. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = strlen
  655. </UL>
  656. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  657. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Strcpy
  658. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  659. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  660. </UL>
  661. <P><STRONG><a name="[169]"></a>strncmp</STRONG> (Thumb, 150 bytes, Stack size 16 bytes, strncmp.o(.text))
  662. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = strncmp
  663. </UL>
  664. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  665. </UL>
  666. <P><STRONG><a name="[de]"></a>strcat</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, strcat.o(.text))
  667. <BR><BR>[Called By]<UL><LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  668. </UL>
  669. <P><STRONG><a name="[af]"></a>__aeabi_memcpy</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, rt_memcpy_v6.o(.text))
  670. <BR><BR>[Called By]<UL><LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_out
  671. <LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_in
  672. <LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanPutDataToIso15765Parse
  673. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  674. <LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_rx_callback
  675. <LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_frame_via_can
  676. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  677. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  678. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  679. <LI><a href="#[11b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashReadBytes
  680. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  681. <LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvSetValue
  682. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  683. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_memmove
  684. </UL>
  685. <P><STRONG><a name="[ac]"></a>__rt_memcpy</STRONG> (Thumb, 138 bytes, Stack size 0 bytes, rt_memcpy_v6.o(.text), UNUSED)
  686. <BR><BR>[Calls]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  687. </UL>
  688. <P><STRONG><a name="[1ec]"></a>_memcpy_lastbytes</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memcpy_v6.o(.text), UNUSED)
  689. <P><STRONG><a name="[19b]"></a>__aeabi_memmove</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, rt_memmove_v6.o(.text))
  690. <BR><BR>[Called By]<UL><LI><a href="#[17c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_send
  691. <LI><a href="#[19c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iqueue_enqueue
  692. <LI><a href="#[19a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iqueue_dequeue
  693. <LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;signaling
  694. <LI><a href="#[1a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_sf
  695. <LI><a href="#[1a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_ff
  696. <LI><a href="#[1a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_cf
  697. <LI><a href="#[1b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_unpack_dt
  698. <LI><a href="#[1b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack_dt
  699. </UL>
  700. <P><STRONG><a name="[ae]"></a>__rt_memmove</STRONG> (Thumb, 132 bytes, Stack size 0 bytes, rt_memmove_v6.o(.text), UNUSED)
  701. <BR><BR>[Calls]<UL><LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__memmove_aligned
  702. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  703. </UL>
  704. <P><STRONG><a name="[1ed]"></a>__memmove_lastfew</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memmove_v6.o(.text), UNUSED)
  705. <P><STRONG><a name="[ad]"></a>__aeabi_memcpy4</STRONG> (Thumb, 0 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text))
  706. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __aeabi_memcpy4
  707. </UL>
  708. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  709. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  710. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_memmove_w
  711. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_memcpy
  712. </UL>
  713. <P><STRONG><a name="[1ee]"></a>__aeabi_memcpy8</STRONG> (Thumb, 0 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text), UNUSED)
  714. <P><STRONG><a name="[1ef]"></a>__rt_memcpy_w</STRONG> (Thumb, 100 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text), UNUSED)
  715. <P><STRONG><a name="[1f0]"></a>_memcpy_lastbytes_aligned</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memcpy_w.o(.text), UNUSED)
  716. <P><STRONG><a name="[b4]"></a>__aeabi_memclr</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text))
  717. <BR><BR>[Called By]<UL><LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  718. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  719. <LI><a href="#[179]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_init
  720. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Str2hex
  721. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  722. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  723. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iqueue_init
  724. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  725. <LI><a href="#[181]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvInit
  726. <LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strncpy
  727. </UL>
  728. <P><STRONG><a name="[b1]"></a>__rt_memclr</STRONG> (Thumb, 68 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED)
  729. <BR><BR>[Calls]<UL><LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_memset_w
  730. </UL>
  731. <P><STRONG><a name="[1f1]"></a>_memset</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr.o(.text), UNUSED)
  732. <P><STRONG><a name="[109]"></a>__aeabi_memclr4</STRONG> (Thumb, 0 bytes, Stack size 4 bytes, rt_memclr_w.o(.text))
  733. <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = __aeabi_memclr4
  734. </UL>
  735. <BR>[Called By]<UL><LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_in
  736. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  737. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  738. <LI><a href="#[5e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_inter_callback
  739. <LI><a href="#[179]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_init
  740. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  741. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo0MsgPendingCallback
  742. <LI><a href="#[1a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_cf
  743. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  744. </UL>
  745. <P><STRONG><a name="[1f2]"></a>__aeabi_memclr8</STRONG> (Thumb, 0 bytes, Stack size 4 bytes, rt_memclr_w.o(.text), UNUSED)
  746. <P><STRONG><a name="[1f3]"></a>__rt_memclr_w</STRONG> (Thumb, 78 bytes, Stack size 4 bytes, rt_memclr_w.o(.text), UNUSED)
  747. <P><STRONG><a name="[b2]"></a>_memset_w</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text), UNUSED)
  748. <BR><BR>[Called By]<UL><LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_memclr
  749. </UL>
  750. <P><STRONG><a name="[b3]"></a>strncpy</STRONG> (Thumb, 86 bytes, Stack size 8 bytes, strncpy.o(.text))
  751. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = strncpy
  752. </UL>
  753. <BR>[Calls]<UL><LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  754. </UL>
  755. <BR>[Called By]<UL><LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Strcpy
  756. </UL>
  757. <P><STRONG><a name="[1f4]"></a>__use_two_region_memory</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
  758. <P><STRONG><a name="[1f5]"></a>__rt_heap_escrow$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
  759. <P><STRONG><a name="[1f6]"></a>__rt_heap_expand$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
  760. <P><STRONG><a name="[1f7]"></a>__I$use$semihosting</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
  761. <P><STRONG><a name="[1f8]"></a>__use_no_semihosting_swi</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
  762. <P><STRONG><a name="[aa]"></a>__aeabi_errno_addr</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text))
  763. <BR><BR>[Called By]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_strtoul
  764. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strtol
  765. <LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;atoi
  766. </UL>
  767. <P><STRONG><a name="[1f9]"></a>__errno$intlibspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text), UNUSED)
  768. <P><STRONG><a name="[1fa]"></a>__rt_errno_addr$intlibspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text), UNUSED)
  769. <P><STRONG><a name="[a2]"></a>_printf_truncate_signed</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, _printf_truncate.o(.text))
  770. <BR><BR>[Called By]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_dec
  771. </UL>
  772. <P><STRONG><a name="[a3]"></a>_printf_truncate_unsigned</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, _printf_truncate.o(.text))
  773. <BR><BR>[Called By]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_dec
  774. <LI><a href="#[77]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_oct
  775. <LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_hex
  776. </UL>
  777. <P><STRONG><a name="[a4]"></a>_printf_int_common</STRONG> (Thumb, 178 bytes, Stack size 32 bytes, _printf_intcommon.o(.text))
  778. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = _printf_int_common &rArr; _printf_post_padding
  779. </UL>
  780. <BR>[Calls]<UL><LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  781. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  782. </UL>
  783. <BR>[Called By]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_dec
  784. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_oct
  785. <LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_dec
  786. <LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_hex
  787. </UL>
  788. <P><STRONG><a name="[69]"></a>_printf_charcount</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, _printf_charcount.o(.text))
  789. <BR><BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_n
  790. </UL>
  791. <P><STRONG><a name="[9b]"></a>_printf_char_common</STRONG> (Thumb, 32 bytes, Stack size 64 bytes, _printf_char_common.o(.text))
  792. <BR><BR>[Stack]<UL><LI>Max Depth = 104 + Unknown Stack Size
  793. <LI>Call Chain = _printf_char_common &rArr; __printf
  794. </UL>
  795. <BR>[Calls]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__printf
  796. </UL>
  797. <BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2sprintf
  798. <LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vsnprintf
  799. <LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_file
  800. </UL>
  801. <P><STRONG><a name="[51]"></a>_sputc</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, _sputc.o(.text))
  802. <BR><BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2sprintf
  803. <LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vsnprintf
  804. </UL>
  805. <BR>[Address Reference Count : 1]<UL><LI> __2sprintf.o(.text)
  806. </UL>
  807. <P><STRONG><a name="[50]"></a>_snputc</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, _snputc.o(.text))
  808. <BR>[Address Reference Count : 1]<UL><LI> vsnprintf.o(.text)
  809. </UL>
  810. <P><STRONG><a name="[b5]"></a>_printf_cs_common</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, _printf_char.o(.text))
  811. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = _printf_cs_common &rArr; _printf_str &rArr; _printf_post_padding
  812. </UL>
  813. <BR>[Calls]<UL><LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_str
  814. </UL>
  815. <BR>[Called By]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_string
  816. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char
  817. </UL>
  818. <P><STRONG><a name="[83]"></a>_printf_char</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, _printf_char.o(.text))
  819. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = _printf_char &rArr; _printf_cs_common &rArr; _printf_str &rArr; _printf_post_padding
  820. </UL>
  821. <BR>[Calls]<UL><LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_cs_common
  822. </UL>
  823. <BR>[Called By]<UL><LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_c
  824. </UL>
  825. <P><STRONG><a name="[85]"></a>_printf_string</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, _printf_char.o(.text))
  826. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = _printf_string &rArr; _printf_cs_common &rArr; _printf_str &rArr; _printf_post_padding
  827. </UL>
  828. <BR>[Calls]<UL><LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_cs_common
  829. </UL>
  830. <BR>[Called By]<UL><LI><a href="#[84]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_s
  831. </UL>
  832. <P><STRONG><a name="[9d]"></a>_printf_char_file</STRONG> (Thumb, 32 bytes, Stack size 16 bytes, _printf_char_file.o(.text))
  833. <BR><BR>[Stack]<UL><LI>Max Depth = 120 + Unknown Stack Size
  834. <LI>Call Chain = _printf_char_file &rArr; _printf_char_common &rArr; __printf
  835. </UL>
  836. <BR>[Calls]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ferror
  837. <LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_common
  838. </UL>
  839. <BR>[Called By]<UL><LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2printf
  840. </UL>
  841. <P><STRONG><a name="[b7]"></a>_printf_wctomb</STRONG> (Thumb, 182 bytes, Stack size 56 bytes, _printf_wctomb.o(.text))
  842. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = _printf_wctomb &rArr; _wcrtomb &rArr; __rt_ctype_table
  843. </UL>
  844. <BR>[Calls]<UL><LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  845. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  846. <LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_wcrtomb
  847. </UL>
  848. <BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_lcs_common
  849. </UL>
  850. <P><STRONG><a name="[7b]"></a>_printf_longlong_dec</STRONG> (Thumb, 108 bytes, Stack size 24 bytes, _printf_longlong_dec.o(.text))
  851. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = _printf_longlong_dec &rArr; _printf_int_common &rArr; _printf_post_padding
  852. </UL>
  853. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_ll_udiv10
  854. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_common
  855. </UL>
  856. <BR>[Called By]<UL><LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_llu
  857. <LI><a href="#[7c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_lld
  858. <LI><a href="#[7a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_lli
  859. </UL>
  860. <P><STRONG><a name="[ba]"></a>_printf_longlong_oct</STRONG> (Thumb, 66 bytes, Stack size 8 bytes, _printf_oct_int_ll.o(.text))
  861. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = _printf_longlong_oct &rArr; _printf_int_common &rArr; _printf_post_padding
  862. </UL>
  863. <BR>[Calls]<UL><LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_common
  864. </UL>
  865. <BR>[Called By]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_ll_oct
  866. <LI><a href="#[77]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_int_oct
  867. </UL>
  868. <P><STRONG><a name="[77]"></a>_printf_int_oct</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, _printf_oct_int_ll.o(.text))
  869. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = _printf_int_oct &rArr; _printf_longlong_oct &rArr; _printf_int_common &rArr; _printf_post_padding
  870. </UL>
  871. <BR>[Calls]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_oct
  872. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_truncate_unsigned
  873. </UL>
  874. <BR>[Called By]<UL><LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_o
  875. </UL>
  876. <P><STRONG><a name="[7f]"></a>_printf_ll_oct</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, _printf_oct_int_ll.o(.text))
  877. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = _printf_ll_oct &rArr; _printf_longlong_oct &rArr; _printf_int_common &rArr; _printf_post_padding
  878. </UL>
  879. <BR>[Calls]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_oct
  880. </UL>
  881. <BR>[Called By]<UL><LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_llo
  882. </UL>
  883. <P><STRONG><a name="[ab]"></a>strtol</STRONG> (Thumb, 112 bytes, Stack size 32 bytes, strtol.o(.text))
  884. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = strtol &rArr; _strtoul
  885. </UL>
  886. <BR>[Calls]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_strtoul
  887. <LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_ctype_table
  888. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_errno_addr
  889. </UL>
  890. <BR>[Called By]<UL><LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;atoi
  891. </UL>
  892. <P><STRONG><a name="[1fb]"></a>__aeabi_memmove4</STRONG> (Thumb, 0 bytes, Stack size 8 bytes, rt_memmove_w.o(.text), UNUSED)
  893. <P><STRONG><a name="[1fc]"></a>__aeabi_memmove8</STRONG> (Thumb, 0 bytes, Stack size 8 bytes, rt_memmove_w.o(.text), UNUSED)
  894. <P><STRONG><a name="[bd]"></a>__rt_memmove_w</STRONG> (Thumb, 122 bytes, Stack size 8 bytes, rt_memmove_w.o(.text), UNUSED)
  895. <BR><BR>[Calls]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  896. </UL>
  897. <P><STRONG><a name="[b0]"></a>__memmove_aligned</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memmove_w.o(.text), UNUSED)
  898. <BR><BR>[Called By]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_memmove
  899. </UL>
  900. <P><STRONG><a name="[1fd]"></a>__memmove_lastfew_aligned</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rt_memmove_w.o(.text), UNUSED)
  901. <P><STRONG><a name="[1fe]"></a>__user_libspace</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
  902. <P><STRONG><a name="[c9]"></a>__user_perproc_libspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text))
  903. <BR><BR>[Called By]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__user_setup_stackheap
  904. </UL>
  905. <P><STRONG><a name="[1ff]"></a>__user_perthread_libspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
  906. <P><STRONG><a name="[bb]"></a>__rt_ctype_table</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, rt_ctype_table.o(.text))
  907. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __rt_ctype_table
  908. </UL>
  909. <BR>[Calls]<UL><LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_locale
  910. </UL>
  911. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_wcrtomb
  912. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strtol
  913. </UL>
  914. <P><STRONG><a name="[b9]"></a>_ll_udiv10</STRONG> (Thumb, 138 bytes, Stack size 12 bytes, lludiv10.o(.text))
  915. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = _ll_udiv10
  916. </UL>
  917. <BR>[Called By]<UL><LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  918. <LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_longlong_dec
  919. </UL>
  920. <P><STRONG><a name="[200]"></a>__lib_sel_fp_printf</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, _printf_fp_dec.o(.text), UNUSED)
  921. <P><STRONG><a name="[c3]"></a>_printf_fp_dec_real</STRONG> (Thumb, 620 bytes, Stack size 104 bytes, _printf_fp_dec.o(.text))
  922. <BR><BR>[Stack]<UL><LI>Max Depth = 324<LI>Call Chain = _printf_fp_dec_real &rArr; _fp_digits &rArr; _btod_etento &rArr; _btod_emul &rArr; _e2e
  923. </UL>
  924. <BR>[Calls]<UL><LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  925. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  926. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__ARM_fpclassify
  927. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_infnan
  928. <LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_locale
  929. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  930. </UL>
  931. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec
  932. </UL>
  933. <P><STRONG><a name="[c6]"></a>_printf_fp_hex_real</STRONG> (Thumb, 756 bytes, Stack size 72 bytes, _printf_fp_hex.o(.text))
  934. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = _printf_fp_hex_real &rArr; _printf_fp_infnan &rArr; _printf_post_padding
  935. </UL>
  936. <BR>[Calls]<UL><LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  937. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  938. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__ARM_fpclassify
  939. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_infnan
  940. </UL>
  941. <BR>[Called By]<UL><LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex
  942. </UL>
  943. <P><STRONG><a name="[c7]"></a>_printf_lcs_common</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, _printf_wchar.o(.text))
  944. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = _printf_lcs_common &rArr; _printf_wctomb &rArr; _wcrtomb &rArr; __rt_ctype_table
  945. </UL>
  946. <BR>[Calls]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wctomb
  947. </UL>
  948. <BR>[Called By]<UL><LI><a href="#[89]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wstring
  949. <LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wchar
  950. </UL>
  951. <P><STRONG><a name="[87]"></a>_printf_wchar</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, _printf_wchar.o(.text))
  952. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = _printf_wchar &rArr; _printf_lcs_common &rArr; _printf_wctomb &rArr; _wcrtomb &rArr; __rt_ctype_table
  953. </UL>
  954. <BR>[Calls]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_lcs_common
  955. </UL>
  956. <BR>[Called By]<UL><LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_lc
  957. </UL>
  958. <P><STRONG><a name="[89]"></a>_printf_wstring</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, _printf_wchar.o(.text))
  959. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = _printf_wstring &rArr; _printf_lcs_common &rArr; _printf_wctomb &rArr; _wcrtomb &rArr; __rt_ctype_table
  960. </UL>
  961. <BR>[Calls]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_lcs_common
  962. </UL>
  963. <BR>[Called By]<UL><LI><a href="#[88]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_ls
  964. </UL>
  965. <P><STRONG><a name="[bc]"></a>_strtoul</STRONG> (Thumb, 158 bytes, Stack size 40 bytes, _strtoul.o(.text))
  966. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = _strtoul
  967. </UL>
  968. <BR>[Calls]<UL><LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_chval
  969. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_errno_addr
  970. </UL>
  971. <BR>[Called By]<UL><LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strtol
  972. </UL>
  973. <P><STRONG><a name="[b6]"></a>ferror</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, ferror.o(.text))
  974. <BR><BR>[Called By]<UL><LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_char_file
  975. </UL>
  976. <P><STRONG><a name="[b8]"></a>_wcrtomb</STRONG> (Thumb, 64 bytes, Stack size 16 bytes, _wcrtomb.o(.text))
  977. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = _wcrtomb &rArr; __rt_ctype_table
  978. </UL>
  979. <BR>[Calls]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_ctype_table
  980. </UL>
  981. <BR>[Called By]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_wctomb
  982. </UL>
  983. <P><STRONG><a name="[90]"></a>__user_setup_stackheap</STRONG> (Thumb, 74 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text))
  984. <BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
  985. <LI>Call Chain = __user_setup_stackheap
  986. </UL>
  987. <BR>[Calls]<UL><LI><a href="#[ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__user_initial_stackheap
  988. <LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__user_perproc_libspace
  989. </UL>
  990. <BR>[Called By]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_entry_sh
  991. </UL>
  992. <P><STRONG><a name="[8b]"></a>__rt_locale</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, rt_locale_intlibspace.o(.text))
  993. <BR><BR>[Called By]<UL><LI><a href="#[8a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_lib_init_lc_common
  994. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  995. <LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_ctype_table
  996. </UL>
  997. <P><STRONG><a name="[c5]"></a>_printf_fp_infnan</STRONG> (Thumb, 112 bytes, Stack size 24 bytes, _printf_fp_infnan.o(.text))
  998. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = _printf_fp_infnan &rArr; _printf_post_padding
  999. </UL>
  1000. <BR>[Calls]<UL><LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  1001. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  1002. </UL>
  1003. <BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex_real
  1004. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  1005. </UL>
  1006. <P><STRONG><a name="[c8]"></a>_chval</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, _chval.o(.text))
  1007. <BR><BR>[Called By]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_strtoul
  1008. </UL>
  1009. <P><STRONG><a name="[bf]"></a>_btod_etento</STRONG> (Thumb, 224 bytes, Stack size 72 bytes, bigflt0.o(.text))
  1010. <BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = _btod_etento &rArr; _btod_emul &rArr; _e2e
  1011. </UL>
  1012. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_emul
  1013. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_ediv
  1014. </UL>
  1015. <BR>[Called By]<UL><LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  1016. </UL>
  1017. <P><STRONG><a name="[95]"></a>exit</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, exit.o(.text))
  1018. <BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
  1019. <LI>Call Chain = exit
  1020. </UL>
  1021. <BR>[Calls]<UL><LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_exit
  1022. </UL>
  1023. <BR>[Called By]<UL><LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_entry_main
  1024. </UL>
  1025. <P><STRONG><a name="[1bc]"></a>strcmp</STRONG> (Thumb, 128 bytes, Stack size 0 bytes, strcmpv7m.o(.text))
  1026. <BR><BR>[Called By]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_get_lc_numeric
  1027. <LI><a href="#[54]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_get_lc_ctype
  1028. </UL>
  1029. <P><STRONG><a name="[c0]"></a>_btod_d2e</STRONG> (Thumb, 62 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e))
  1030. <BR><BR>[Calls]<UL><LI><a href="#[cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_d2e_norm_op1
  1031. </UL>
  1032. <BR>[Called By]<UL><LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  1033. </UL>
  1034. <P><STRONG><a name="[cd]"></a>_d2e_denorm_low</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e_denorm_low))
  1035. <BR><BR>[Called By]<UL><LI><a href="#[cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_d2e_norm_op1
  1036. </UL>
  1037. <P><STRONG><a name="[cc]"></a>_d2e_norm_op1</STRONG> (Thumb, 96 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e_norm_op1))
  1038. <BR><BR>[Calls]<UL><LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_d2e_denorm_low
  1039. </UL>
  1040. <BR>[Called By]<UL><LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_d2e
  1041. </UL>
  1042. <P><STRONG><a name="[ce]"></a>__btod_div_common</STRONG> (Thumb, 696 bytes, Stack size 24 bytes, btod.o(CL$$btod_div_common))
  1043. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = __btod_div_common
  1044. </UL>
  1045. <BR>[Called By]<UL><LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_ediv
  1046. </UL>
  1047. <P><STRONG><a name="[cf]"></a>_e2e</STRONG> (Thumb, 220 bytes, Stack size 24 bytes, btod.o(CL$$btod_e2e))
  1048. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = _e2e
  1049. </UL>
  1050. <BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_emul
  1051. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_ediv
  1052. </UL>
  1053. <P><STRONG><a name="[c1]"></a>_btod_ediv</STRONG> (Thumb, 42 bytes, Stack size 28 bytes, btod.o(CL$$btod_ediv))
  1054. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = _btod_ediv &rArr; _e2e
  1055. </UL>
  1056. <BR>[Calls]<UL><LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_e2e
  1057. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__btod_div_common
  1058. </UL>
  1059. <BR>[Called By]<UL><LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_etento
  1060. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  1061. </UL>
  1062. <P><STRONG><a name="[c2]"></a>_btod_emul</STRONG> (Thumb, 42 bytes, Stack size 28 bytes, btod.o(CL$$btod_emul))
  1063. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = _btod_emul &rArr; _e2e
  1064. </UL>
  1065. <BR>[Calls]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__btod_mult_common
  1066. <LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_e2e
  1067. </UL>
  1068. <BR>[Called By]<UL><LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_etento
  1069. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  1070. </UL>
  1071. <P><STRONG><a name="[d0]"></a>__btod_mult_common</STRONG> (Thumb, 580 bytes, Stack size 16 bytes, btod.o(CL$$btod_mult_common))
  1072. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = __btod_mult_common
  1073. </UL>
  1074. <BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_emul
  1075. </UL>
  1076. <P><STRONG><a name="[d1]"></a>ADC_ConversionStop_Disable</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, stm32f1xx_hal_adc.o(i.ADC_ConversionStop_Disable))
  1077. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = ADC_ConversionStop_Disable
  1078. </UL>
  1079. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1080. </UL>
  1081. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADCEx_Calibration_Start
  1082. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_Init
  1083. </UL>
  1084. <P><STRONG><a name="[d3]"></a>ADC_Enable</STRONG> (Thumb, 122 bytes, Stack size 16 bytes, stm32f1xx_hal_adc.o(i.ADC_Enable))
  1085. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = ADC_Enable
  1086. </UL>
  1087. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1088. </UL>
  1089. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADCEx_Calibration_Start
  1090. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_Start
  1091. </UL>
  1092. <P><STRONG><a name="[c]"></a>BusFault_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.BusFault_Handler))
  1093. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  1094. </UL>
  1095. <P><STRONG><a name="[f]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.DebugMon_Handler))
  1096. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  1097. </UL>
  1098. <P><STRONG><a name="[18]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hal_spi.o(i.EXTI0_IRQHandler))
  1099. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = EXTI0_IRQHandler &rArr; HAL_GPIO_EXTI_IRQHandler &rArr; HAL_GPIO_EXTI_Callback
  1100. </UL>
  1101. <BR>[Calls]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_EXTI_IRQHandler
  1102. </UL>
  1103. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  1104. </UL>
  1105. <P><STRONG><a name="[117]"></a>FLASH_PageErase</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, stm32f1xx_hal_flash_ex.o(i.FLASH_PageErase))
  1106. <BR><BR>[Called By]<UL><LI><a href="#[115]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASHEx_Erase
  1107. </UL>
  1108. <P><STRONG><a name="[d5]"></a>FLASH_WaitForLastOperation</STRONG> (Thumb, 106 bytes, Stack size 16 bytes, stm32f1xx_hal_flash.o(i.FLASH_WaitForLastOperation))
  1109. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = FLASH_WaitForLastOperation
  1110. </UL>
  1111. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1112. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_SetErrorCode
  1113. </UL>
  1114. <BR>[Called By]<UL><LI><a href="#[115]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASHEx_Erase
  1115. <LI><a href="#[118]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Program
  1116. </UL>
  1117. <P><STRONG><a name="[d7]"></a>FW_GetFileLine</STRONG> (Thumb, 116 bytes, Stack size 24 bytes, sys_log.o(i.FW_GetFileLine))
  1118. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = FW_GetFileLine &rArr; SYS_Strstr &rArr; strstr
  1119. </UL>
  1120. <BR>[Calls]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Strstr
  1121. </UL>
  1122. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  1123. <LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanPutDataToIso15765Parse
  1124. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1125. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1126. <LI><a href="#[63]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;print_log_timer_callback
  1127. <LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_rx_callback
  1128. <LI><a href="#[5f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_error_callback
  1129. <LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_frame_via_can
  1130. <LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_finish_callback
  1131. <LI><a href="#[5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;on_error
  1132. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Str2hex
  1133. <LI><a href="#[172]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysShowPara
  1134. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  1135. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysGetPara
  1136. <LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysCheckSector
  1137. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  1138. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  1139. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  1140. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo0MsgPendingCallback
  1141. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_ErrorCallback
  1142. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  1143. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashWriteData
  1144. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashEraseData
  1145. <LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvSetValue
  1146. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  1147. </UL>
  1148. <P><STRONG><a name="[e4]"></a>HAL_ADCEx_Calibration_Start</STRONG> (Thumb, 256 bytes, Stack size 24 bytes, stm32f1xx_hal_adc_ex.o(i.HAL_ADCEx_Calibration_Start))
  1149. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = HAL_ADCEx_Calibration_Start &rArr; HAL_RCCEx_GetPeriphCLKFreq &rArr; HAL_RCC_GetSysClockFreq
  1150. </UL>
  1151. <BR>[Calls]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCCEx_GetPeriphCLKFreq
  1152. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1153. <LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Enable
  1154. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_ConversionStop_Disable
  1155. </UL>
  1156. <BR>[Called By]<UL><LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcInit
  1157. </UL>
  1158. <P><STRONG><a name="[e0]"></a>HAL_ADC_ConfigChannel</STRONG> (Thumb, 338 bytes, Stack size 16 bytes, stm32f1xx_hal_adc.o(i.HAL_ADC_ConfigChannel))
  1159. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_ADC_ConfigChannel
  1160. </UL>
  1161. <BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Adc
  1162. </UL>
  1163. <P><STRONG><a name="[e3]"></a>HAL_ADC_GetValue</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f1xx_hal_adc.o(i.HAL_ADC_GetValue))
  1164. <BR><BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Adc
  1165. </UL>
  1166. <P><STRONG><a name="[e6]"></a>HAL_ADC_Init</STRONG> (Thumb, 340 bytes, Stack size 24 bytes, stm32f1xx_hal_adc.o(i.HAL_ADC_Init))
  1167. <BR><BR>[Stack]<UL><LI>Max Depth = 92<LI>Call Chain = HAL_ADC_Init &rArr; HAL_ADC_MspInit &rArr; HAL_GPIO_Init
  1168. </UL>
  1169. <BR>[Calls]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_ConversionStop_Disable
  1170. <LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_MspInit
  1171. </UL>
  1172. <BR>[Called By]<UL><LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcInit
  1173. </UL>
  1174. <P><STRONG><a name="[e7]"></a>HAL_ADC_MspInit</STRONG> (Thumb, 84 bytes, Stack size 32 bytes, hal_adc.o(i.HAL_ADC_MspInit))
  1175. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = HAL_ADC_MspInit &rArr; HAL_GPIO_Init
  1176. </UL>
  1177. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1178. </UL>
  1179. <BR>[Called By]<UL><LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_Init
  1180. </UL>
  1181. <P><STRONG><a name="[e2]"></a>HAL_ADC_PollForConversion</STRONG> (Thumb, 350 bytes, Stack size 24 bytes, stm32f1xx_hal_adc.o(i.HAL_ADC_PollForConversion))
  1182. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = HAL_ADC_PollForConversion &rArr; HAL_RCCEx_GetPeriphCLKFreq &rArr; HAL_RCC_GetSysClockFreq
  1183. </UL>
  1184. <BR>[Calls]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCCEx_GetPeriphCLKFreq
  1185. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1186. </UL>
  1187. <BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Adc
  1188. </UL>
  1189. <P><STRONG><a name="[e1]"></a>HAL_ADC_Start</STRONG> (Thumb, 294 bytes, Stack size 16 bytes, stm32f1xx_hal_adc.o(i.HAL_ADC_Start))
  1190. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = HAL_ADC_Start &rArr; ADC_Enable
  1191. </UL>
  1192. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Enable
  1193. </UL>
  1194. <BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Adc
  1195. </UL>
  1196. <P><STRONG><a name="[e9]"></a>HAL_AdcGetVal</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, hal_adc.o(i.HAL_AdcGetVal))
  1197. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = HAL_AdcGetVal &rArr; Get_Adc &rArr; HAL_ADC_PollForConversion &rArr; HAL_RCCEx_GetPeriphCLKFreq &rArr; HAL_RCC_GetSysClockFreq
  1198. </UL>
  1199. <BR>[Calls]<UL><LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_ms
  1200. <LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Adc
  1201. </UL>
  1202. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1203. </UL>
  1204. <P><STRONG><a name="[eb]"></a>HAL_AdcInit</STRONG> (Thumb, 66 bytes, Stack size 32 bytes, hal_adc.o(i.HAL_AdcInit))
  1205. <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = HAL_AdcInit &rArr; HAL_ADCEx_Calibration_Start &rArr; HAL_RCCEx_GetPeriphCLKFreq &rArr; HAL_RCC_GetSysClockFreq
  1206. </UL>
  1207. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCCEx_PeriphCLKConfig
  1208. <LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADCEx_Calibration_Start
  1209. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_Init
  1210. </UL>
  1211. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1212. </UL>
  1213. <P><STRONG><a name="[ed]"></a>HAL_BleEnGpioInit</STRONG> (Thumb, 68 bytes, Stack size 24 bytes, hal_ble.o(i.HAL_BleEnGpioInit))
  1214. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = HAL_BleEnGpioInit &rArr; HAL_GPIO_Init
  1215. </UL>
  1216. <BR>[Calls]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_WritePin
  1217. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1218. </UL>
  1219. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1220. </UL>
  1221. <P><STRONG><a name="[ef]"></a>HAL_BleGpioEn</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, hal_ble.o(i.HAL_BleGpioEn))
  1222. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_BleGpioEn
  1223. </UL>
  1224. <BR>[Calls]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_WritePin
  1225. </UL>
  1226. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1227. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1228. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  1229. </UL>
  1230. <P><STRONG><a name="[f0]"></a>HAL_BleReboot</STRONG> (Thumb, 46 bytes, Stack size 8 bytes, hal_ble.o(i.HAL_BleReboot))
  1231. <BR><BR>[Stack]<UL><LI>Max Depth = 100<LI>Call Chain = HAL_BleReboot &rArr; HAL_SpiGpioInit &rArr; SPI1_Init &rArr; HAL_SPI_Init &rArr; HAL_SPI_MspInit &rArr; HAL_GPIO_Init
  1232. </UL>
  1233. <BR>[Calls]<UL><LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleGpioEn
  1234. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_ms
  1235. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiUnint
  1236. <LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiSetCsPin
  1237. <LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiGpioInit
  1238. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiClockPinReset
  1239. </UL>
  1240. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1241. </UL>
  1242. <P><STRONG><a name="[10f]"></a>HAL_CAN_ActivateNotification</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_ActivateNotification))
  1243. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_CAN_ActivateNotification
  1244. </UL>
  1245. <BR>[Called By]<UL><LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanInit
  1246. </UL>
  1247. <P><STRONG><a name="[111]"></a>HAL_CAN_AddTxMessage</STRONG> (Thumb, 342 bytes, Stack size 20 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_AddTxMessage))
  1248. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = HAL_CAN_AddTxMessage
  1249. </UL>
  1250. <BR>[Called By]<UL><LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTx
  1251. </UL>
  1252. <P><STRONG><a name="[10d]"></a>HAL_CAN_ConfigFilter</STRONG> (Thumb, 266 bytes, Stack size 20 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_ConfigFilter))
  1253. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = HAL_CAN_ConfigFilter
  1254. </UL>
  1255. <BR>[Called By]<UL><LI><a href="#[10c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanFilterConfig
  1256. </UL>
  1257. <P><STRONG><a name="[f5]"></a>HAL_CAN_ErrorCallback</STRONG> (Thumb, 124 bytes, Stack size 48 bytes, hal_can.o(i.HAL_CAN_ErrorCallback))
  1258. <BR><BR>[Stack]<UL><LI>Max Depth = 280 + Unknown Stack Size
  1259. <LI>Call Chain = HAL_CAN_ErrorCallback &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1260. </UL>
  1261. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  1262. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  1263. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTx
  1264. </UL>
  1265. <BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1266. </UL>
  1267. <P><STRONG><a name="[10a]"></a>HAL_CAN_GetRxMessage</STRONG> (Thumb, 378 bytes, Stack size 16 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_GetRxMessage))
  1268. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_CAN_GetRxMessage
  1269. </UL>
  1270. <BR>[Called By]<UL><LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo0MsgPendingCallback
  1271. </UL>
  1272. <P><STRONG><a name="[f8]"></a>HAL_CAN_IRQHandler</STRONG> (Thumb, 590 bytes, Stack size 40 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_IRQHandler))
  1273. <BR><BR>[Stack]<UL><LI>Max Depth = 320 + Unknown Stack Size
  1274. <LI>Call Chain = HAL_CAN_IRQHandler &rArr; HAL_CAN_RxFifo0MsgPendingCallback &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1275. </UL>
  1276. <BR>[Calls]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_WakeUpFromRxMsgCallback
  1277. <LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_TxMailbox2AbortCallback
  1278. <LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_TxMailbox1AbortCallback
  1279. <LI><a href="#[fa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_TxMailbox0AbortCallback
  1280. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_SleepCallback
  1281. <LI><a href="#[102]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo1MsgPendingCallback
  1282. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo1FullCallback
  1283. <LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo0FullCallback
  1284. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_TxMailbox2CompleteCallback
  1285. <LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_TxMailbox1CompleteCallback
  1286. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_TxMailbox0CompleteCallback
  1287. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo0MsgPendingCallback
  1288. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_ErrorCallback
  1289. </UL>
  1290. <BR>[Called By]<UL><LI><a href="#[26]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  1291. <LI><a href="#[25]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_HP_CAN1_TX_IRQHandler
  1292. </UL>
  1293. <P><STRONG><a name="[105]"></a>HAL_CAN_Init</STRONG> (Thumb, 372 bytes, Stack size 16 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_Init))
  1294. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = HAL_CAN_Init &rArr; HAL_CAN_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1295. </UL>
  1296. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1297. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_MspInit
  1298. </UL>
  1299. <BR>[Called By]<UL><LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanInit
  1300. </UL>
  1301. <P><STRONG><a name="[106]"></a>HAL_CAN_MspInit</STRONG> (Thumb, 142 bytes, Stack size 32 bytes, hal_can.o(i.HAL_CAN_MspInit))
  1302. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = HAL_CAN_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1303. </UL>
  1304. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1305. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_EnableIRQ
  1306. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  1307. </UL>
  1308. <BR>[Called By]<UL><LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_Init
  1309. </UL>
  1310. <P><STRONG><a name="[ff]"></a>HAL_CAN_RxFifo0FullCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_RxFifo0FullCallback))
  1311. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1312. </UL>
  1313. <P><STRONG><a name="[100]"></a>HAL_CAN_RxFifo0MsgPendingCallback</STRONG> (Thumb, 112 bytes, Stack size 48 bytes, hal_can.o(i.HAL_CAN_RxFifo0MsgPendingCallback))
  1314. <BR><BR>[Stack]<UL><LI>Max Depth = 280 + Unknown Stack Size
  1315. <LI>Call Chain = HAL_CAN_RxFifo0MsgPendingCallback &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1316. </UL>
  1317. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  1318. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  1319. <LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_GetRxMessage
  1320. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1321. </UL>
  1322. <BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1323. </UL>
  1324. <P><STRONG><a name="[101]"></a>HAL_CAN_RxFifo1FullCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_RxFifo1FullCallback))
  1325. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1326. </UL>
  1327. <P><STRONG><a name="[102]"></a>HAL_CAN_RxFifo1MsgPendingCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_RxFifo1MsgPendingCallback))
  1328. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1329. </UL>
  1330. <P><STRONG><a name="[103]"></a>HAL_CAN_SleepCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_SleepCallback))
  1331. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1332. </UL>
  1333. <P><STRONG><a name="[10b]"></a>HAL_CAN_Start</STRONG> (Thumb, 94 bytes, Stack size 16 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_Start))
  1334. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_CAN_Start
  1335. </UL>
  1336. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1337. </UL>
  1338. <BR>[Called By]<UL><LI><a href="#[110]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanStart
  1339. </UL>
  1340. <P><STRONG><a name="[fa]"></a>HAL_CAN_TxMailbox0AbortCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_TxMailbox0AbortCallback))
  1341. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1342. </UL>
  1343. <P><STRONG><a name="[f9]"></a>HAL_CAN_TxMailbox0CompleteCallback</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hal_can.o(i.HAL_CAN_TxMailbox0CompleteCallback))
  1344. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_CAN_TxMailbox0CompleteCallback
  1345. </UL>
  1346. <BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1347. </UL>
  1348. <P><STRONG><a name="[fc]"></a>HAL_CAN_TxMailbox1AbortCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_TxMailbox1AbortCallback))
  1349. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1350. </UL>
  1351. <P><STRONG><a name="[fb]"></a>HAL_CAN_TxMailbox1CompleteCallback</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hal_can.o(i.HAL_CAN_TxMailbox1CompleteCallback))
  1352. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_CAN_TxMailbox1CompleteCallback
  1353. </UL>
  1354. <BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1355. </UL>
  1356. <P><STRONG><a name="[fe]"></a>HAL_CAN_TxMailbox2AbortCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_TxMailbox2AbortCallback))
  1357. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1358. </UL>
  1359. <P><STRONG><a name="[fd]"></a>HAL_CAN_TxMailbox2CompleteCallback</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, hal_can.o(i.HAL_CAN_TxMailbox2CompleteCallback))
  1360. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_CAN_TxMailbox2CompleteCallback
  1361. </UL>
  1362. <BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1363. </UL>
  1364. <P><STRONG><a name="[104]"></a>HAL_CAN_WakeUpFromRxMsgCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_can.o(i.HAL_CAN_WakeUpFromRxMsgCallback))
  1365. <BR><BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  1366. </UL>
  1367. <P><STRONG><a name="[1b0]"></a>HAL_CanCallbackRegister</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hal_can.o(i.HAL_CanCallbackRegister))
  1368. <BR><BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1369. </UL>
  1370. <P><STRONG><a name="[10e]"></a>HAL_CanInit</STRONG> (Thumb, 182 bytes, Stack size 8 bytes, hal_can.o(i.HAL_CanInit))
  1371. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = HAL_CanInit &rArr; HAL_CAN_Init &rArr; HAL_CAN_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1372. </UL>
  1373. <BR>[Calls]<UL><LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_Init
  1374. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_ActivateNotification
  1375. <LI><a href="#[10c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanFilterConfig
  1376. </UL>
  1377. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1378. </UL>
  1379. <P><STRONG><a name="[110]"></a>HAL_CanStart</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, hal_can.o(i.HAL_CanStart))
  1380. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = HAL_CanStart &rArr; HAL_CAN_Start
  1381. </UL>
  1382. <BR>[Calls]<UL><LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_Start
  1383. </UL>
  1384. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1385. </UL>
  1386. <P><STRONG><a name="[112]"></a>HAL_CanTxData</STRONG> (Thumb, 186 bytes, Stack size 32 bytes, hal_can.o(i.HAL_CanTxData))
  1387. <BR><BR>[Stack]<UL><LI>Max Depth = 264 + Unknown Stack Size
  1388. <LI>Call Chain = HAL_CanTxData &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1389. </UL>
  1390. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  1391. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  1392. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  1393. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  1394. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTx
  1395. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  1396. </UL>
  1397. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1398. <LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_frame_via_can
  1399. </UL>
  1400. <P><STRONG><a name="[15c]"></a>HAL_DMA_Abort_IT</STRONG> (Thumb, 414 bytes, Stack size 16 bytes, stm32f1xx_hal_dma.o(i.HAL_DMA_Abort_IT))
  1401. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_DMA_Abort_IT
  1402. </UL>
  1403. <BR>[Called By]<UL><LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  1404. </UL>
  1405. <P><STRONG><a name="[115]"></a>HAL_FLASHEx_Erase</STRONG> (Thumb, 168 bytes, Stack size 24 bytes, stm32f1xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase))
  1406. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = HAL_FLASHEx_Erase &rArr; FLASH_WaitForLastOperation
  1407. </UL>
  1408. <BR>[Calls]<UL><LI><a href="#[116]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_MassErase
  1409. <LI><a href="#[117]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_PageErase
  1410. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  1411. </UL>
  1412. <BR>[Called By]<UL><LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_sector_erase
  1413. </UL>
  1414. <P><STRONG><a name="[196]"></a>HAL_FLASH_Lock</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f1xx_hal_flash.o(i.HAL_FLASH_Lock))
  1415. <BR><BR>[Called By]<UL><LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_write_word
  1416. <LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_sector_erase
  1417. </UL>
  1418. <P><STRONG><a name="[118]"></a>HAL_FLASH_Program</STRONG> (Thumb, 168 bytes, Stack size 48 bytes, stm32f1xx_hal_flash.o(i.HAL_FLASH_Program))
  1419. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = HAL_FLASH_Program &rArr; FLASH_WaitForLastOperation
  1420. </UL>
  1421. <BR>[Calls]<UL><LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  1422. <LI><a href="#[11a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Program_HalfWord
  1423. <LI><a href="#[119]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  1424. </UL>
  1425. <BR>[Called By]<UL><LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_write_word
  1426. </UL>
  1427. <P><STRONG><a name="[195]"></a>HAL_FLASH_Unlock</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, stm32f1xx_hal_flash.o(i.HAL_FLASH_Unlock))
  1428. <BR><BR>[Called By]<UL><LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_write_word
  1429. <LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_sector_erase
  1430. </UL>
  1431. <P><STRONG><a name="[187]"></a>HAL_FlashInit</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hal_flash.o(i.HAL_FlashInit))
  1432. <BR><BR>[Called By]<UL><LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashInit
  1433. </UL>
  1434. <P><STRONG><a name="[11b]"></a>HAL_FlashReadBytes</STRONG> (Thumb, 22 bytes, Stack size 16 bytes, hal_flash.o(i.HAL_FlashReadBytes))
  1435. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_FlashReadBytes
  1436. </UL>
  1437. <BR>[Calls]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  1438. </UL>
  1439. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1440. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  1441. <LI><a href="#[184]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashReadData
  1442. </UL>
  1443. <P><STRONG><a name="[11c]"></a>HAL_FlashSectorErase</STRONG> (Thumb, 12 bytes, Stack size 8 bytes, hal_flash.o(i.HAL_FlashSectorErase))
  1444. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_FlashSectorErase &rArr; _flash_sector_erase &rArr; HAL_FLASHEx_Erase &rArr; FLASH_WaitForLastOperation
  1445. </UL>
  1446. <BR>[Calls]<UL><LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_sector_erase
  1447. </UL>
  1448. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1449. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashEraseData
  1450. </UL>
  1451. <P><STRONG><a name="[11e]"></a>HAL_FlashWriteBytes</STRONG> (Thumb, 110 bytes, Stack size 40 bytes, hal_flash.o(i.HAL_FlashWriteBytes))
  1452. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = HAL_FlashWriteBytes &rArr; _flash_write_word &rArr; HAL_FLASH_Program &rArr; FLASH_WaitForLastOperation
  1453. </UL>
  1454. <BR>[Calls]<UL><LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_flash_write_word
  1455. </UL>
  1456. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1457. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashWriteData
  1458. </UL>
  1459. <P><STRONG><a name="[120]"></a>HAL_GPIO_EXTI_Callback</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, hal_spi.o(i.HAL_GPIO_EXTI_Callback))
  1460. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_GPIO_EXTI_Callback
  1461. </UL>
  1462. <BR>[Called By]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_EXTI_IRQHandler
  1463. </UL>
  1464. <P><STRONG><a name="[d4]"></a>HAL_GPIO_EXTI_IRQHandler</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, stm32f1xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler))
  1465. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_GPIO_EXTI_IRQHandler &rArr; HAL_GPIO_EXTI_Callback
  1466. </UL>
  1467. <BR>[Calls]<UL><LI><a href="#[120]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_EXTI_Callback
  1468. </UL>
  1469. <BR>[Called By]<UL><LI><a href="#[18]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTI0_IRQHandler
  1470. </UL>
  1471. <P><STRONG><a name="[e8]"></a>HAL_GPIO_Init</STRONG> (Thumb, 792 bytes, Stack size 36 bytes, stm32f1xx_hal_gpio.o(i.HAL_GPIO_Init))
  1472. <BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = HAL_GPIO_Init
  1473. </UL>
  1474. <BR>[Called By]<UL><LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_LedInit
  1475. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleEnGpioInit
  1476. <LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_MspInit
  1477. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiClockPinReset
  1478. <LI><a href="#[139]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_MspInit
  1479. <LI><a href="#[145]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_EXTI_Init
  1480. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_CsPinInit
  1481. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_MspInit
  1482. <LI><a href="#[161]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_MspInit
  1483. </UL>
  1484. <P><STRONG><a name="[128]"></a>HAL_GPIO_ReadPin</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(i.HAL_GPIO_ReadPin))
  1485. <BR><BR>[Called By]<UL><LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_KeyGetStatus
  1486. </UL>
  1487. <P><STRONG><a name="[12c]"></a>HAL_GPIO_TogglePin</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(i.HAL_GPIO_TogglePin))
  1488. <BR><BR>[Called By]<UL><LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_LedToggle
  1489. </UL>
  1490. <P><STRONG><a name="[ee]"></a>HAL_GPIO_WritePin</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal_gpio.o(i.HAL_GPIO_WritePin))
  1491. <BR><BR>[Called By]<UL><LI><a href="#[12a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_LedOff
  1492. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleGpioEn
  1493. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleEnGpioInit
  1494. <LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiSetCsPin
  1495. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_CsPinInit
  1496. </UL>
  1497. <P><STRONG><a name="[d2]"></a>HAL_GetTick</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal.o(i.HAL_GetTick))
  1498. <BR><BR>[Called By]<UL><LI><a href="#[164]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_WaitOnFlagUntilTimeout
  1499. <LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCCEx_PeriphCLKConfig
  1500. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_OscConfig
  1501. <LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_ClockConfig
  1502. <LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_WaitFlagStateUntilTimeout
  1503. <LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_Start
  1504. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_Init
  1505. <LI><a href="#[163]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Transmit
  1506. <LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_TransmitReceive
  1507. <LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Transmit
  1508. <LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Receive
  1509. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  1510. <LI><a href="#[121]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_IWDG_Init
  1511. <LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADCEx_Calibration_Start
  1512. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_PollForConversion
  1513. <LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Enable
  1514. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_ConversionStop_Disable
  1515. <LI><a href="#[14a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SysGetTickMs
  1516. </UL>
  1517. <P><STRONG><a name="[121]"></a>HAL_IWDG_Init</STRONG> (Thumb, 80 bytes, Stack size 16 bytes, stm32f1xx_hal_iwdg.o(i.HAL_IWDG_Init))
  1518. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_IWDG_Init
  1519. </UL>
  1520. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1521. </UL>
  1522. <BR>[Called By]<UL><LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_WdgInit
  1523. </UL>
  1524. <P><STRONG><a name="[1bb]"></a>HAL_IWDG_Refresh</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f1xx_hal_iwdg.o(i.HAL_IWDG_Refresh))
  1525. <BR><BR>[Called By]<UL><LI><a href="#[56]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;wdg_feed_timer_callback
  1526. </UL>
  1527. <P><STRONG><a name="[190]"></a>HAL_IncTick</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f1xx_hal.o(i.HAL_IncTick))
  1528. <BR><BR>[Called By]<UL><LI><a href="#[11]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_Handler
  1529. </UL>
  1530. <P><STRONG><a name="[122]"></a>HAL_Init</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, stm32f1xx_hal.o(i.HAL_Init))
  1531. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = HAL_Init &rArr; HAL_InitTick &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1532. </UL>
  1533. <BR>[Calls]<UL><LI><a href="#[125]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_MspInit
  1534. <LI><a href="#[124]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_InitTick
  1535. <LI><a href="#[123]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriorityGrouping
  1536. </UL>
  1537. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1538. </UL>
  1539. <P><STRONG><a name="[124]"></a>HAL_InitTick</STRONG> (Thumb, 64 bytes, Stack size 16 bytes, stm32f1xx_hal.o(i.HAL_InitTick))
  1540. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = HAL_InitTick &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1541. </UL>
  1542. <BR>[Calls]<UL><LI><a href="#[126]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SYSTICK_Config
  1543. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  1544. </UL>
  1545. <BR>[Called By]<UL><LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Init
  1546. <LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_ClockConfig
  1547. </UL>
  1548. <P><STRONG><a name="[127]"></a>HAL_KeyGetStatus</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, hal_key.o(i.HAL_KeyGetStatus))
  1549. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_KeyGetStatus
  1550. </UL>
  1551. <BR>[Calls]<UL><LI><a href="#[128]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_ReadPin
  1552. </UL>
  1553. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1554. </UL>
  1555. <P><STRONG><a name="[129]"></a>HAL_LedInit</STRONG> (Thumb, 102 bytes, Stack size 24 bytes, hal_led.o(i.HAL_LedInit))
  1556. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = HAL_LedInit &rArr; HAL_GPIO_Init
  1557. </UL>
  1558. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1559. </UL>
  1560. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1561. </UL>
  1562. <P><STRONG><a name="[12a]"></a>HAL_LedOff</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, hal_led.o(i.HAL_LedOff))
  1563. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_LedOff
  1564. </UL>
  1565. <BR>[Calls]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_WritePin
  1566. </UL>
  1567. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1568. </UL>
  1569. <P><STRONG><a name="[12b]"></a>HAL_LedToggle</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_led.o(i.HAL_LedToggle))
  1570. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_LedToggle
  1571. </UL>
  1572. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_TogglePin
  1573. </UL>
  1574. <BR>[Called By]<UL><LI><a href="#[62]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;led_toggle_timer_callback
  1575. </UL>
  1576. <P><STRONG><a name="[125]"></a>HAL_MspInit</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_msp.o(i.HAL_MspInit))
  1577. <BR><BR>[Called By]<UL><LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Init
  1578. </UL>
  1579. <P><STRONG><a name="[108]"></a>HAL_NVIC_EnableIRQ</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ))
  1580. <BR><BR>[Called By]<UL><LI><a href="#[145]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_EXTI_Init
  1581. <LI><a href="#[14c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_MspInit
  1582. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_MspInit
  1583. <LI><a href="#[161]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_MspInit
  1584. </UL>
  1585. <P><STRONG><a name="[107]"></a>HAL_NVIC_SetPriority</STRONG> (Thumb, 124 bytes, Stack size 40 bytes, stm32f1xx_hal_cortex.o(i.HAL_NVIC_SetPriority))
  1586. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1587. </UL>
  1588. <BR>[Calls]<UL><LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_SetPriority
  1589. <LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_GetPriorityGrouping
  1590. </UL>
  1591. <BR>[Called By]<UL><LI><a href="#[124]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_InitTick
  1592. <LI><a href="#[145]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_EXTI_Init
  1593. <LI><a href="#[14c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_MspInit
  1594. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_MspInit
  1595. <LI><a href="#[161]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_MspInit
  1596. </UL>
  1597. <P><STRONG><a name="[123]"></a>HAL_NVIC_SetPriorityGrouping</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(i.HAL_NVIC_SetPriorityGrouping))
  1598. <BR><BR>[Called By]<UL><LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Init
  1599. </UL>
  1600. <P><STRONG><a name="[e5]"></a>HAL_RCCEx_GetPeriphCLKFreq</STRONG> (Thumb, 276 bytes, Stack size 48 bytes, stm32f1xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq))
  1601. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_RCCEx_GetPeriphCLKFreq &rArr; HAL_RCC_GetSysClockFreq
  1602. </UL>
  1603. <BR>[Calls]<UL><LI><a href="#[12f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetSysClockFreq
  1604. <LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetPCLK2Freq
  1605. </UL>
  1606. <BR>[Called By]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADCEx_Calibration_Start
  1607. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_PollForConversion
  1608. </UL>
  1609. <P><STRONG><a name="[ec]"></a>HAL_RCCEx_PeriphCLKConfig</STRONG> (Thumb, 288 bytes, Stack size 24 bytes, stm32f1xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig))
  1610. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = HAL_RCCEx_PeriphCLKConfig
  1611. </UL>
  1612. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1613. </UL>
  1614. <BR>[Called By]<UL><LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcInit
  1615. </UL>
  1616. <P><STRONG><a name="[131]"></a>HAL_RCC_ClockConfig</STRONG> (Thumb, 376 bytes, Stack size 16 bytes, stm32f1xx_hal_rcc.o(i.HAL_RCC_ClockConfig))
  1617. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = HAL_RCC_ClockConfig &rArr; HAL_InitTick &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1618. </UL>
  1619. <BR>[Calls]<UL><LI><a href="#[12f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetSysClockFreq
  1620. <LI><a href="#[124]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_InitTick
  1621. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1622. </UL>
  1623. <BR>[Called By]<UL><LI><a href="#[18f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stm32_Clock_Init
  1624. </UL>
  1625. <P><STRONG><a name="[133]"></a>HAL_RCC_GetHCLKFreq</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq))
  1626. <BR><BR>[Called By]<UL><LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetPCLK2Freq
  1627. <LI><a href="#[132]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetPCLK1Freq
  1628. </UL>
  1629. <P><STRONG><a name="[132]"></a>HAL_RCC_GetPCLK1Freq</STRONG> (Thumb, 22 bytes, Stack size 4 bytes, stm32f1xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq))
  1630. <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = HAL_RCC_GetPCLK1Freq
  1631. </UL>
  1632. <BR>[Calls]<UL><LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetHCLKFreq
  1633. </UL>
  1634. <BR>[Called By]<UL><LI><a href="#[162]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_SetConfig
  1635. </UL>
  1636. <P><STRONG><a name="[130]"></a>HAL_RCC_GetPCLK2Freq</STRONG> (Thumb, 22 bytes, Stack size 4 bytes, stm32f1xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq))
  1637. <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = HAL_RCC_GetPCLK2Freq
  1638. </UL>
  1639. <BR>[Calls]<UL><LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetHCLKFreq
  1640. </UL>
  1641. <BR>[Called By]<UL><LI><a href="#[162]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_SetConfig
  1642. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCCEx_GetPeriphCLKFreq
  1643. </UL>
  1644. <P><STRONG><a name="[12f]"></a>HAL_RCC_GetSysClockFreq</STRONG> (Thumb, 116 bytes, Stack size 40 bytes, stm32f1xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq))
  1645. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = HAL_RCC_GetSysClockFreq
  1646. </UL>
  1647. <BR>[Called By]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCCEx_GetPeriphCLKFreq
  1648. <LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_ClockConfig
  1649. </UL>
  1650. <P><STRONG><a name="[134]"></a>HAL_RCC_OscConfig</STRONG> (Thumb, 1114 bytes, Stack size 24 bytes, stm32f1xx_hal_rcc.o(i.HAL_RCC_OscConfig))
  1651. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = HAL_RCC_OscConfig &rArr; RCC_Delay
  1652. </UL>
  1653. <BR>[Calls]<UL><LI><a href="#[135]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_Delay
  1654. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1655. </UL>
  1656. <BR>[Called By]<UL><LI><a href="#[18f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stm32_Clock_Init
  1657. </UL>
  1658. <P><STRONG><a name="[136]"></a>HAL_SPI_DeInit</STRONG> (Thumb, 54 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(i.HAL_SPI_DeInit))
  1659. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_SPI_DeInit
  1660. </UL>
  1661. <BR>[Calls]<UL><LI><a href="#[137]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_MspDeInit
  1662. </UL>
  1663. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiUnint
  1664. </UL>
  1665. <P><STRONG><a name="[138]"></a>HAL_SPI_Init</STRONG> (Thumb, 156 bytes, Stack size 8 bytes, stm32f1xx_hal_spi.o(i.HAL_SPI_Init))
  1666. <BR><BR>[Stack]<UL><LI>Max Depth = 76<LI>Call Chain = HAL_SPI_Init &rArr; HAL_SPI_MspInit &rArr; HAL_GPIO_Init
  1667. </UL>
  1668. <BR>[Calls]<UL><LI><a href="#[139]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_MspInit
  1669. </UL>
  1670. <BR>[Called By]<UL><LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_Init
  1671. </UL>
  1672. <P><STRONG><a name="[137]"></a>HAL_SPI_MspDeInit</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(i.HAL_SPI_MspDeInit))
  1673. <BR><BR>[Called By]<UL><LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_DeInit
  1674. </UL>
  1675. <P><STRONG><a name="[139]"></a>HAL_SPI_MspInit</STRONG> (Thumb, 88 bytes, Stack size 32 bytes, hal_spi.o(i.HAL_SPI_MspInit))
  1676. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = HAL_SPI_MspInit &rArr; HAL_GPIO_Init
  1677. </UL>
  1678. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1679. </UL>
  1680. <BR>[Called By]<UL><LI><a href="#[138]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Init
  1681. </UL>
  1682. <P><STRONG><a name="[13a]"></a>HAL_SPI_Receive</STRONG> (Thumb, 586 bytes, Stack size 32 bytes, stm32f1xx_hal_spi.o(i.HAL_SPI_Receive))
  1683. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = HAL_SPI_Receive &rArr; HAL_SPI_TransmitReceive &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  1684. </UL>
  1685. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1686. <LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_WaitFlagStateUntilTimeout
  1687. <LI><a href="#[13d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_EndRxTransaction
  1688. <LI><a href="#[13e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_ISCRCErrorValid
  1689. <LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_TransmitReceive
  1690. </UL>
  1691. <BR>[Called By]<UL><LI><a href="#[147]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_Rx_Data
  1692. </UL>
  1693. <P><STRONG><a name="[13f]"></a>HAL_SPI_Transmit</STRONG> (Thumb, 474 bytes, Stack size 40 bytes, stm32f1xx_hal_spi.o(i.HAL_SPI_Transmit))
  1694. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_SPI_Transmit &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  1695. </UL>
  1696. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1697. <LI><a href="#[140]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_EndRxTxTransaction
  1698. </UL>
  1699. <BR>[Called By]<UL><LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_Tx_Data
  1700. </UL>
  1701. <P><STRONG><a name="[13b]"></a>HAL_SPI_TransmitReceive</STRONG> (Thumb, 750 bytes, Stack size 56 bytes, stm32f1xx_hal_spi.o(i.HAL_SPI_TransmitReceive))
  1702. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = HAL_SPI_TransmitReceive &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  1703. </UL>
  1704. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1705. <LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_WaitFlagStateUntilTimeout
  1706. <LI><a href="#[140]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_EndRxTxTransaction
  1707. <LI><a href="#[13e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_ISCRCErrorValid
  1708. </UL>
  1709. <BR>[Called By]<UL><LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Receive
  1710. </UL>
  1711. <P><STRONG><a name="[198]"></a>HAL_SYSTICK_CLKSourceConfig</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(i.HAL_SYSTICK_CLKSourceConfig))
  1712. <BR><BR>[Called By]<UL><LI><a href="#[197]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_init
  1713. </UL>
  1714. <P><STRONG><a name="[126]"></a>HAL_SYSTICK_Config</STRONG> (Thumb, 52 bytes, Stack size 16 bytes, stm32f1xx_hal_cortex.o(i.HAL_SYSTICK_Config))
  1715. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = HAL_SYSTICK_Config &rArr; __NVIC_SetPriority
  1716. </UL>
  1717. <BR>[Calls]<UL><LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_SetPriority
  1718. </UL>
  1719. <BR>[Called By]<UL><LI><a href="#[124]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_InitTick
  1720. </UL>
  1721. <P><STRONG><a name="[f3]"></a>HAL_SpiClockPinReset</STRONG> (Thumb, 60 bytes, Stack size 24 bytes, hal_spi.o(i.HAL_SpiClockPinReset))
  1722. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = HAL_SpiClockPinReset &rArr; HAL_GPIO_Init
  1723. </UL>
  1724. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1725. </UL>
  1726. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1727. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  1728. </UL>
  1729. <P><STRONG><a name="[f4]"></a>HAL_SpiGpioInit</STRONG> (Thumb, 14 bytes, Stack size 8 bytes, hal_spi.o(i.HAL_SpiGpioInit))
  1730. <BR><BR>[Stack]<UL><LI>Max Depth = 92<LI>Call Chain = HAL_SpiGpioInit &rArr; SPI1_Init &rArr; HAL_SPI_Init &rArr; HAL_SPI_MspInit &rArr; HAL_GPIO_Init
  1731. </UL>
  1732. <BR>[Calls]<UL><LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_SetSpeed
  1733. <LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_Init
  1734. </UL>
  1735. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1736. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiInit
  1737. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  1738. </UL>
  1739. <P><STRONG><a name="[143]"></a>HAL_SpiInit</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, hal_spi.o(i.HAL_SpiInit))
  1740. <BR><BR>[Stack]<UL><LI>Max Depth = 100<LI>Call Chain = HAL_SpiInit &rArr; HAL_SpiGpioInit &rArr; SPI1_Init &rArr; HAL_SPI_Init &rArr; HAL_SPI_MspInit &rArr; HAL_GPIO_Init
  1741. </UL>
  1742. <BR>[Calls]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiGpioInit
  1743. <LI><a href="#[145]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_EXTI_Init
  1744. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_CsPinInit
  1745. </UL>
  1746. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1747. </UL>
  1748. <P><STRONG><a name="[146]"></a>HAL_SpiRxData</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, hal_spi.o(i.HAL_SpiRxData))
  1749. <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = HAL_SpiRxData &rArr; SPI1_Rx_Data &rArr; HAL_SPI_Receive &rArr; HAL_SPI_TransmitReceive &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  1750. </UL>
  1751. <BR>[Calls]<UL><LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiSetCsPin
  1752. <LI><a href="#[147]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_Rx_Data
  1753. </UL>
  1754. <BR>[Called By]<UL><LI><a href="#[5e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_inter_callback
  1755. </UL>
  1756. <P><STRONG><a name="[f2]"></a>HAL_SpiSetCsPin</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, hal_spi.o(i.HAL_SpiSetCsPin))
  1757. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_SpiSetCsPin
  1758. </UL>
  1759. <BR>[Calls]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_WritePin
  1760. </UL>
  1761. <BR>[Called By]<UL><LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiTxData
  1762. <LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiRxData
  1763. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  1764. </UL>
  1765. <P><STRONG><a name="[148]"></a>HAL_SpiTxData</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, hal_spi.o(i.HAL_SpiTxData))
  1766. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = HAL_SpiTxData &rArr; SPI1_Tx_Data &rArr; HAL_SPI_Transmit &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  1767. </UL>
  1768. <BR>[Calls]<UL><LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiSetCsPin
  1769. <LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI1_Tx_Data
  1770. </UL>
  1771. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  1772. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1773. </UL>
  1774. <P><STRONG><a name="[f1]"></a>HAL_SpiUnint</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hal_spi.o(i.HAL_SpiUnint))
  1775. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_SpiUnint &rArr; HAL_SPI_DeInit
  1776. </UL>
  1777. <BR>[Calls]<UL><LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_DeInit
  1778. </UL>
  1779. <BR>[Called By]<UL><LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  1780. </UL>
  1781. <P><STRONG><a name="[db]"></a>HAL_Sprintf</STRONG> (Thumb, 36 bytes, Stack size 32 bytes, sys_common.o(i.HAL_Sprintf))
  1782. <BR><BR>[Stack]<UL><LI>Max Depth = 160 + Unknown Stack Size
  1783. <LI>Call Chain = HAL_Sprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1784. </UL>
  1785. <BR>[Calls]<UL><LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vsnprintf
  1786. </UL>
  1787. <BR>[Called By]<UL><LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  1788. </UL>
  1789. <P><STRONG><a name="[14a]"></a>HAL_SysGetTickMs</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, hal_timer.o(i.HAL_SysGetTickMs))
  1790. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_SysGetTickMs
  1791. </UL>
  1792. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1793. </UL>
  1794. <BR>[Called By]<UL><LI><a href="#[6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;getms
  1795. </UL>
  1796. <P><STRONG><a name="[153]"></a>HAL_TIMEx_BreakCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_tim_ex.o(i.HAL_TIMEx_BreakCallback))
  1797. <BR><BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1798. </UL>
  1799. <P><STRONG><a name="[155]"></a>HAL_TIMEx_CommutCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_tim_ex.o(i.HAL_TIMEx_CommutCallback))
  1800. <BR><BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1801. </UL>
  1802. <P><STRONG><a name="[14b]"></a>HAL_TIM_Base_Init</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_Base_Init))
  1803. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = HAL_TIM_Base_Init &rArr; HAL_TIM_Base_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1804. </UL>
  1805. <BR>[Calls]<UL><LI><a href="#[14d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Base_SetConfig
  1806. <LI><a href="#[14c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_MspInit
  1807. </UL>
  1808. <BR>[Called By]<UL><LI><a href="#[157]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Timer3Init
  1809. </UL>
  1810. <P><STRONG><a name="[14c]"></a>HAL_TIM_Base_MspInit</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, hal_timer.o(i.HAL_TIM_Base_MspInit))
  1811. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = HAL_TIM_Base_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1812. </UL>
  1813. <BR>[Calls]<UL><LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_EnableIRQ
  1814. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  1815. </UL>
  1816. <BR>[Called By]<UL><LI><a href="#[14b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_Init
  1817. </UL>
  1818. <P><STRONG><a name="[158]"></a>HAL_TIM_Base_Start_IT</STRONG> (Thumb, 42 bytes, Stack size 0 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_Base_Start_IT))
  1819. <BR><BR>[Called By]<UL><LI><a href="#[157]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Timer3Init
  1820. </UL>
  1821. <P><STRONG><a name="[14f]"></a>HAL_TIM_IC_CaptureCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback))
  1822. <BR><BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1823. </UL>
  1824. <P><STRONG><a name="[14e]"></a>HAL_TIM_IRQHandler</STRONG> (Thumb, 406 bytes, Stack size 8 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_IRQHandler))
  1825. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = HAL_TIM_IRQHandler &rArr; HAL_TIM_PeriodElapsedCallback &rArr; HAL_TimerTickCheck
  1826. </UL>
  1827. <BR>[Calls]<UL><LI><a href="#[154]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_TriggerCallback
  1828. <LI><a href="#[151]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_PWM_PulseFinishedCallback
  1829. <LI><a href="#[150]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_OC_DelayElapsedCallback
  1830. <LI><a href="#[14f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IC_CaptureCallback
  1831. <LI><a href="#[155]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIMEx_CommutCallback
  1832. <LI><a href="#[153]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIMEx_BreakCallback
  1833. <LI><a href="#[152]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_PeriodElapsedCallback
  1834. </UL>
  1835. <BR>[Called By]<UL><LI><a href="#[2f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM3_IRQHandler
  1836. </UL>
  1837. <P><STRONG><a name="[150]"></a>HAL_TIM_OC_DelayElapsedCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_OC_DelayElapsedCallback))
  1838. <BR><BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1839. </UL>
  1840. <P><STRONG><a name="[151]"></a>HAL_TIM_PWM_PulseFinishedCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback))
  1841. <BR><BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1842. </UL>
  1843. <P><STRONG><a name="[152]"></a>HAL_TIM_PeriodElapsedCallback</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, hal_timer.o(i.HAL_TIM_PeriodElapsedCallback))
  1844. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = HAL_TIM_PeriodElapsedCallback &rArr; HAL_TimerTickCheck
  1845. </UL>
  1846. <BR>[Calls]<UL><LI><a href="#[156]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TimerTickCheck
  1847. </UL>
  1848. <BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1849. </UL>
  1850. <P><STRONG><a name="[154]"></a>HAL_TIM_TriggerCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_tim.o(i.HAL_TIM_TriggerCallback))
  1851. <BR><BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  1852. </UL>
  1853. <P><STRONG><a name="[157]"></a>HAL_Timer3Init</STRONG> (Thumb, 36 bytes, Stack size 16 bytes, hal_timer.o(i.HAL_Timer3Init))
  1854. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_Timer3Init &rArr; HAL_TIM_Base_Init &rArr; HAL_TIM_Base_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1855. </UL>
  1856. <BR>[Calls]<UL><LI><a href="#[158]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_Start_IT
  1857. <LI><a href="#[14b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_Init
  1858. </UL>
  1859. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1860. </UL>
  1861. <P><STRONG><a name="[166]"></a>HAL_TimerRegister</STRONG> (Thumb, 116 bytes, Stack size 12 bytes, sys_timer.o(i.HAL_TimerRegister))
  1862. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = HAL_TimerRegister
  1863. </UL>
  1864. <BR>[Called By]<UL><LI><a href="#[165]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_WdgFeed
  1865. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1866. </UL>
  1867. <P><STRONG><a name="[156]"></a>HAL_TimerTickCheck</STRONG> (Thumb, 74 bytes, Stack size 8 bytes, sys_timer.o(i.HAL_TimerTickCheck))
  1868. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_TimerTickCheck
  1869. </UL>
  1870. <BR>[Called By]<UL><LI><a href="#[152]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_PeriodElapsedCallback
  1871. </UL>
  1872. <P><STRONG><a name="[15d]"></a>HAL_UART_ErrorCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_ErrorCallback))
  1873. <BR><BR>[Called By]<UL><LI><a href="#[55]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_DMAAbortOnError
  1874. <LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  1875. </UL>
  1876. <P><STRONG><a name="[193]"></a>HAL_UART_GetState</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_GetState))
  1877. <BR><BR>[Called By]<UL><LI><a href="#[37]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  1878. </UL>
  1879. <P><STRONG><a name="[159]"></a>HAL_UART_IRQHandler</STRONG> (Thumb, 326 bytes, Stack size 32 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_IRQHandler))
  1880. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = HAL_UART_IRQHandler &rArr; UART_Receive_IT &rArr; HAL_UART_RxCpltCallback
  1881. </UL>
  1882. <BR>[Calls]<UL><LI><a href="#[15e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_Transmit_IT
  1883. <LI><a href="#[15a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_Receive_IT
  1884. <LI><a href="#[15f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_EndTransmit_IT
  1885. <LI><a href="#[15b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_EndRxTransfer
  1886. <LI><a href="#[15d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_ErrorCallback
  1887. <LI><a href="#[15c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_DMA_Abort_IT
  1888. </UL>
  1889. <BR>[Called By]<UL><LI><a href="#[37]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  1890. </UL>
  1891. <P><STRONG><a name="[160]"></a>HAL_UART_Init</STRONG> (Thumb, 114 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_Init))
  1892. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = HAL_UART_Init &rArr; HAL_UART_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1893. </UL>
  1894. <BR>[Calls]<UL><LI><a href="#[162]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_SetConfig
  1895. <LI><a href="#[161]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_MspInit
  1896. </UL>
  1897. <BR>[Called By]<UL><LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uart_init
  1898. </UL>
  1899. <P><STRONG><a name="[161]"></a>HAL_UART_MspInit</STRONG> (Thumb, 156 bytes, Stack size 32 bytes, usart.o(i.HAL_UART_MspInit))
  1900. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = HAL_UART_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  1901. </UL>
  1902. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  1903. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_EnableIRQ
  1904. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  1905. </UL>
  1906. <BR>[Called By]<UL><LI><a href="#[160]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Init
  1907. </UL>
  1908. <P><STRONG><a name="[194]"></a>HAL_UART_Receive_IT</STRONG> (Thumb, 112 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_Receive_IT))
  1909. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_UART_Receive_IT
  1910. </UL>
  1911. <BR>[Called By]<UL><LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uart_init
  1912. <LI><a href="#[37]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  1913. </UL>
  1914. <P><STRONG><a name="[192]"></a>HAL_UART_RxCpltCallback</STRONG> (Thumb, 144 bytes, Stack size 8 bytes, usart.o(i.HAL_UART_RxCpltCallback))
  1915. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = HAL_UART_RxCpltCallback
  1916. </UL>
  1917. <BR>[Called By]<UL><LI><a href="#[15a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_Receive_IT
  1918. </UL>
  1919. <P><STRONG><a name="[163]"></a>HAL_UART_Transmit</STRONG> (Thumb, 214 bytes, Stack size 32 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_Transmit))
  1920. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
  1921. </UL>
  1922. <BR>[Calls]<UL><LI><a href="#[164]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_WaitOnFlagUntilTimeout
  1923. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  1924. </UL>
  1925. <BR>[Called By]<UL><LI><a href="#[5c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Usart1SendData
  1926. </UL>
  1927. <P><STRONG><a name="[191]"></a>HAL_UART_TxCpltCallback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(i.HAL_UART_TxCpltCallback))
  1928. <BR><BR>[Called By]<UL><LI><a href="#[15f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART_EndTransmit_IT
  1929. </UL>
  1930. <P><STRONG><a name="[1ad]"></a>HAL_UartIsrCallbackRegister</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, usart.o(i.HAL_UartIsrCallbackRegister))
  1931. <BR><BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1932. </UL>
  1933. <P><STRONG><a name="[5c]"></a>HAL_Usart1SendData</STRONG> (Thumb, 22 bytes, Stack size 16 bytes, usart.o(i.HAL_Usart1SendData))
  1934. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = HAL_Usart1SendData &rArr; HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
  1935. </UL>
  1936. <BR>[Calls]<UL><LI><a href="#[163]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Transmit
  1937. </UL>
  1938. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  1939. </UL>
  1940. <P><STRONG><a name="[dd]"></a>HAL_Vsnprintf</STRONG> (Thumb, 24 bytes, Stack size 32 bytes, sys_common.o(i.HAL_Vsnprintf))
  1941. <BR><BR>[Stack]<UL><LI>Max Depth = 160 + Unknown Stack Size
  1942. <LI>Call Chain = HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1943. </UL>
  1944. <BR>[Calls]<UL><LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vsnprintf
  1945. </UL>
  1946. <BR>[Called By]<UL><LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  1947. </UL>
  1948. <P><STRONG><a name="[165]"></a>HAL_WdgFeed</STRONG> (Thumb, 14 bytes, Stack size 8 bytes, hal_wdg.o(i.HAL_WdgFeed))
  1949. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = HAL_WdgFeed &rArr; HAL_TimerRegister
  1950. </UL>
  1951. <BR>[Calls]<UL><LI><a href="#[166]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TimerRegister
  1952. </UL>
  1953. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1954. </UL>
  1955. <P><STRONG><a name="[167]"></a>HAL_WdgInit</STRONG> (Thumb, 24 bytes, Stack size 16 bytes, hal_wdg.o(i.HAL_WdgInit))
  1956. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = HAL_WdgInit &rArr; HAL_IWDG_Init
  1957. </UL>
  1958. <BR>[Calls]<UL><LI><a href="#[121]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_IWDG_Init
  1959. </UL>
  1960. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1961. </UL>
  1962. <P><STRONG><a name="[a]"></a>HardFault_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.HardFault_Handler))
  1963. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  1964. </UL>
  1965. <P><STRONG><a name="[168]"></a>MOD_AtCmdDataProcess</STRONG> (Thumb, 1854 bytes, Stack size 104 bytes, mod_atcmd.o(i.MOD_AtCmdDataProcess))
  1966. <BR><BR>[Stack]<UL><LI>Max Depth = 440 + Unknown Stack Size
  1967. <LI>Call Chain = MOD_AtCmdDataProcess &rArr; MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  1968. </UL>
  1969. <BR>[Calls]<UL><LI><a href="#[16c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;get_ver
  1970. <LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  1971. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  1972. <LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiTxData
  1973. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleGpioEn
  1974. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  1975. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Str2hex
  1976. <LI><a href="#[172]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysShowPara
  1977. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  1978. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysGetPara
  1979. <LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysCheckSector
  1980. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  1981. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  1982. <LI><a href="#[16b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Sys_Soft_Reset
  1983. <LI><a href="#[11e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashWriteBytes
  1984. <LI><a href="#[11c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashSectorErase
  1985. <LI><a href="#[11b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashReadBytes
  1986. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  1987. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcGetVal
  1988. <LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_KeyGetStatus
  1989. <LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiGpioInit
  1990. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiClockPinReset
  1991. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  1992. <LI><a href="#[16f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1993. <LI><a href="#[16e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_i2d
  1994. <LI><a href="#[170]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2iz
  1995. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1996. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  1997. <LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  1998. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  1999. <LI><a href="#[169]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strncmp
  2000. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strlen
  2001. <LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;atoi
  2002. </UL>
  2003. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2004. </UL>
  2005. <P><STRONG><a name="[176]"></a>MOD_CanIso15765Parse</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, mod_candataprocess.o(i.MOD_CanIso15765Parse))
  2006. <BR><BR>[Stack]<UL><LI>Max Depth = 164<LI>Call Chain = MOD_CanIso15765Parse &rArr; iso15765_process &rArr; iso15765_process_in &rArr; process_in_ff &rArr; send_N_PCI_T_FC &rArr; n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  2007. </UL>
  2008. <BR>[Calls]<UL><LI><a href="#[177]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process
  2009. </UL>
  2010. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2011. </UL>
  2012. <P><STRONG><a name="[178]"></a>MOD_CanIso15765ParseInit</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, mod_candataprocess.o(i.MOD_CanIso15765ParseInit))
  2013. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = MOD_CanIso15765ParseInit &rArr; iso15765_init &rArr; iqueue_init
  2014. </UL>
  2015. <BR>[Calls]<UL><LI><a href="#[179]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_init
  2016. </UL>
  2017. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2018. </UL>
  2019. <P><STRONG><a name="[17a]"></a>MOD_CanPutDataToIso15765Parse</STRONG> (Thumb, 216 bytes, Stack size 48 bytes, mod_candataprocess.o(i.MOD_CanPutDataToIso15765Parse))
  2020. <BR><BR>[Stack]<UL><LI>Max Depth = 280 + Unknown Stack Size
  2021. <LI>Call Chain = MOD_CanPutDataToIso15765Parse &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2022. </UL>
  2023. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2024. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  2025. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2026. <LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_enqueue
  2027. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2028. </UL>
  2029. <BR>[Called By]<UL><LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_rx_callback
  2030. </UL>
  2031. <P><STRONG><a name="[16a]"></a>MOD_CanTransferData</STRONG> (Thumb, 114 bytes, Stack size 16 bytes, mod_candataprocess.o(i.MOD_CanTransferData))
  2032. <BR><BR>[Stack]<UL><LI>Max Depth = 248 + Unknown Stack Size
  2033. <LI>Call Chain = MOD_CanTransferData &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2034. </UL>
  2035. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2036. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  2037. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2038. <LI><a href="#[17c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_send
  2039. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2040. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2041. </UL>
  2042. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2043. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2044. </UL>
  2045. <P><STRONG><a name="[17d]"></a>MOD_SpiDataProcess</STRONG> (Thumb, 328 bytes, Stack size 48 bytes, mod_spi.o(i.MOD_SpiDataProcess))
  2046. <BR><BR>[Stack]<UL><LI>Max Depth = 440 + Unknown Stack Size
  2047. <LI>Call Chain = MOD_SpiDataProcess &rArr; MOD_SpiSetBleConfig &rArr; MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2048. </UL>
  2049. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2050. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  2051. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2052. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  2053. <LI><a href="#[17f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;small_big_transfer16
  2054. <LI><a href="#[17e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UTIL_CRC
  2055. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2056. </UL>
  2057. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2058. </UL>
  2059. <P><STRONG><a name="[16d]"></a>MOD_SpiDataSend</STRONG> (Thumb, 160 bytes, Stack size 104 bytes, mod_spi.o(i.MOD_SpiDataSend))
  2060. <BR><BR>[Stack]<UL><LI>Max Depth = 336 + Unknown Stack Size
  2061. <LI>Call Chain = MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2062. </UL>
  2063. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2064. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  2065. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2066. <LI><a href="#[17e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UTIL_CRC
  2067. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2068. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2069. </UL>
  2070. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2071. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2072. </UL>
  2073. <P><STRONG><a name="[1af]"></a>MOD_SpiDataSendCallbackRegister</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, mod_spi.o(i.MOD_SpiDataSendCallbackRegister))
  2074. <BR><BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2075. </UL>
  2076. <P><STRONG><a name="[180]"></a>MOD_SpiSetBleConfig</STRONG> (Thumb, 234 bytes, Stack size 56 bytes, mod_spi.o(i.MOD_SpiSetBleConfig))
  2077. <BR><BR>[Stack]<UL><LI>Max Depth = 392 + Unknown Stack Size
  2078. <LI>Call Chain = MOD_SpiSetBleConfig &rArr; MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2079. </UL>
  2080. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2081. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2082. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysGetPara
  2083. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  2084. <LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvSetValue
  2085. <LI><a href="#[181]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvInit
  2086. <LI><a href="#[183]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvGetLen
  2087. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2088. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strlen
  2089. </UL>
  2090. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2091. </UL>
  2092. <P><STRONG><a name="[183]"></a>MOD_SpiTlvGetLen</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, mod_spi.o(i.MOD_SpiTlvGetLen))
  2093. <BR><BR>[Called By]<UL><LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2094. </UL>
  2095. <P><STRONG><a name="[181]"></a>MOD_SpiTlvInit</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, mod_spi.o(i.MOD_SpiTlvInit))
  2096. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = MOD_SpiTlvInit
  2097. </UL>
  2098. <BR>[Calls]<UL><LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2099. </UL>
  2100. <BR>[Called By]<UL><LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2101. </UL>
  2102. <P><STRONG><a name="[182]"></a>MOD_SpiTlvSetValue</STRONG> (Thumb, 138 bytes, Stack size 24 bytes, mod_spi.o(i.MOD_SpiTlvSetValue))
  2103. <BR><BR>[Stack]<UL><LI>Max Depth = 256 + Unknown Stack Size
  2104. <LI>Call Chain = MOD_SpiTlvSetValue &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2105. </UL>
  2106. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2107. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2108. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2109. </UL>
  2110. <BR>[Called By]<UL><LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2111. </UL>
  2112. <P><STRONG><a name="[171]"></a>MOD_SysCheckSector</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, mod_sys.o(i.MOD_SysCheckSector))
  2113. <BR><BR>[Stack]<UL><LI>Max Depth = 248 + Unknown Stack Size
  2114. <LI>Call Chain = MOD_SysCheckSector &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2115. </UL>
  2116. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2117. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2118. <LI><a href="#[184]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashReadData
  2119. </UL>
  2120. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2121. <LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysWritePara
  2122. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2123. </UL>
  2124. <P><STRONG><a name="[173]"></a>MOD_SysGetPara</STRONG> (Thumb, 48 bytes, Stack size 16 bytes, mod_sys.o(i.MOD_SysGetPara))
  2125. <BR><BR>[Stack]<UL><LI>Max Depth = 248 + Unknown Stack Size
  2126. <LI>Call Chain = MOD_SysGetPara &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2127. </UL>
  2128. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2129. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2130. <LI><a href="#[189]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysBinarySearch
  2131. </UL>
  2132. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2133. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  2134. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2135. </UL>
  2136. <P><STRONG><a name="[18a]"></a>MOD_SysInit</STRONG> (Thumb, 12 bytes, Stack size 8 bytes, mod_sys.o(i.MOD_SysInit))
  2137. <BR><BR>[Stack]<UL><LI>Max Depth = 336 + Unknown Stack Size
  2138. <LI>Call Chain = MOD_SysInit &rArr; MOD_SysLoadPara &rArr; MOD_SysWritePara &rArr; MOD_SysCheckSector &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2139. </UL>
  2140. <BR>[Calls]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2141. <LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashInit
  2142. </UL>
  2143. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2144. </UL>
  2145. <P><STRONG><a name="[175]"></a>MOD_SysSetPara</STRONG> (Thumb, 186 bytes, Stack size 24 bytes, mod_sys.o(i.MOD_SysSetPara))
  2146. <BR><BR>[Stack]<UL><LI>Max Depth = 296 + Unknown Stack Size
  2147. <LI>Call Chain = MOD_SysSetPara &rArr; MOD_SysWritePara &rArr; MOD_SysCheckSector &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2148. </UL>
  2149. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2150. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2151. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2152. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysGetPara
  2153. <LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysWritePara
  2154. <LI><a href="#[189]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysBinarySearch
  2155. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2156. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2157. <LI><a href="#[18d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;memcmp
  2158. </UL>
  2159. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2160. </UL>
  2161. <P><STRONG><a name="[172]"></a>MOD_SysShowPara</STRONG> (Thumb, 116 bytes, Stack size 16 bytes, mod_sys.o(i.MOD_SysShowPara))
  2162. <BR><BR>[Stack]<UL><LI>Max Depth = 248 + Unknown Stack Size
  2163. <LI>Call Chain = MOD_SysShowPara &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2164. </UL>
  2165. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2166. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2167. </UL>
  2168. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2169. </UL>
  2170. <P><STRONG><a name="[18c]"></a>MOD_SysWritePara</STRONG> (Thumb, 112 bytes, Stack size 24 bytes, mod_sys.o(i.MOD_SysWritePara))
  2171. <BR><BR>[Stack]<UL><LI>Max Depth = 272 + Unknown Stack Size
  2172. <LI>Call Chain = MOD_SysWritePara &rArr; MOD_SysCheckSector &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2173. </UL>
  2174. <BR>[Calls]<UL><LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysCheckSector
  2175. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashWriteData
  2176. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashEraseData
  2177. <LI><a href="#[17e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UTIL_CRC
  2178. </UL>
  2179. <BR>[Called By]<UL><LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  2180. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2181. </UL>
  2182. <P><STRONG><a name="[b]"></a>MemManage_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.MemManage_Handler))
  2183. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2184. </UL>
  2185. <P><STRONG><a name="[9]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.NMI_Handler))
  2186. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2187. </UL>
  2188. <P><STRONG><a name="[10]"></a>PendSV_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.PendSV_Handler))
  2189. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2190. </UL>
  2191. <P><STRONG><a name="[13e]"></a>SPI_ISCRCErrorValid</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f1xx_hal_spi.o(i.SPI_ISCRCErrorValid))
  2192. <BR><BR>[Called By]<UL><LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_TransmitReceive
  2193. <LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Receive
  2194. </UL>
  2195. <P><STRONG><a name="[e]"></a>SVC_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.SVC_Handler))
  2196. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2197. </UL>
  2198. <P><STRONG><a name="[113]"></a>SYS_Hex2str</STRONG> (Thumb, 76 bytes, Stack size 24 bytes, sys_common.o(i.SYS_Hex2str))
  2199. <BR><BR>[Stack]<UL><LI>Max Depth = 160 + Unknown Stack Size
  2200. <LI>Call Chain = SYS_Hex2str &rArr; __2sprintf &rArr; _printf_char_common &rArr; __printf
  2201. </UL>
  2202. <BR>[Calls]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2sprintf
  2203. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2204. </UL>
  2205. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2206. <LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanPutDataToIso15765Parse
  2207. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2208. <LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_rx_callback
  2209. <LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_frame_via_can
  2210. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  2211. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  2212. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  2213. </UL>
  2214. <P><STRONG><a name="[174]"></a>SYS_Str2hex</STRONG> (Thumb, 242 bytes, Stack size 32 bytes, sys_common.o(i.SYS_Str2hex))
  2215. <BR><BR>[Stack]<UL><LI>Max Depth = 264 + Unknown Stack Size
  2216. <LI>Call Chain = SYS_Str2hex &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2217. </UL>
  2218. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2219. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2220. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2221. </UL>
  2222. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2223. </UL>
  2224. <P><STRONG><a name="[da]"></a>SYS_Strcpy</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, sys_common.o(i.SYS_Strcpy))
  2225. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = SYS_Strcpy &rArr; strncpy
  2226. </UL>
  2227. <BR>[Calls]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strncpy
  2228. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strlen
  2229. </UL>
  2230. <BR>[Called By]<UL><LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  2231. </UL>
  2232. <P><STRONG><a name="[d8]"></a>SYS_Strstr</STRONG> (Thumb, 16 bytes, Stack size 16 bytes, sys_common.o(i.SYS_Strstr))
  2233. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = SYS_Strstr &rArr; strstr
  2234. </UL>
  2235. <BR>[Calls]<UL><LI><a href="#[18e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strstr
  2236. </UL>
  2237. <BR>[Called By]<UL><LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2238. </UL>
  2239. <P><STRONG><a name="[18f]"></a>Stm32_Clock_Init</STRONG> (Thumb, 86 bytes, Stack size 72 bytes, sys.o(i.Stm32_Clock_Init))
  2240. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = Stm32_Clock_Init &rArr; HAL_RCC_ClockConfig &rArr; HAL_InitTick &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  2241. </UL>
  2242. <BR>[Calls]<UL><LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_OscConfig
  2243. <LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_ClockConfig
  2244. </UL>
  2245. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2246. </UL>
  2247. <P><STRONG><a name="[11]"></a>SysTick_Handler</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, stm32f1xx_it.o(i.SysTick_Handler))
  2248. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SysTick_Handler
  2249. </UL>
  2250. <BR>[Calls]<UL><LI><a href="#[190]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_IncTick
  2251. </UL>
  2252. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2253. </UL>
  2254. <P><STRONG><a name="[1ae]"></a>Sys_LogPrintCallbackRegister</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, sys_log.o(i.Sys_LogPrintCallbackRegister))
  2255. <BR><BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2256. </UL>
  2257. <P><STRONG><a name="[4e]"></a>SystemInit</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, system_stm32f1xx.o(i.SystemInit))
  2258. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(.text)
  2259. </UL>
  2260. <P><STRONG><a name="[2f]"></a>TIM3_IRQHandler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hal_timer.o(i.TIM3_IRQHandler))
  2261. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = TIM3_IRQHandler &rArr; HAL_TIM_IRQHandler &rArr; HAL_TIM_PeriodElapsedCallback &rArr; HAL_TimerTickCheck
  2262. </UL>
  2263. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_IRQHandler
  2264. </UL>
  2265. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2266. </UL>
  2267. <P><STRONG><a name="[14d]"></a>TIM_Base_SetConfig</STRONG> (Thumb, 134 bytes, Stack size 8 bytes, stm32f1xx_hal_tim.o(i.TIM_Base_SetConfig))
  2268. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = TIM_Base_SetConfig
  2269. </UL>
  2270. <BR>[Called By]<UL><LI><a href="#[14b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TIM_Base_Init
  2271. </UL>
  2272. <P><STRONG><a name="[37]"></a>USART1_IRQHandler</STRONG> (Thumb, 56 bytes, Stack size 8 bytes, usart.o(i.USART1_IRQHandler))
  2273. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = USART1_IRQHandler &rArr; HAL_UART_IRQHandler &rArr; UART_Receive_IT &rArr; HAL_UART_RxCpltCallback
  2274. </UL>
  2275. <BR>[Calls]<UL><LI><a href="#[194]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Receive_IT
  2276. <LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  2277. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_GetState
  2278. </UL>
  2279. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2280. </UL>
  2281. <P><STRONG><a name="[25]"></a>USB_HP_CAN1_TX_IRQHandler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hal_can.o(i.USB_HP_CAN1_TX_IRQHandler))
  2282. <BR><BR>[Stack]<UL><LI>Max Depth = 328 + Unknown Stack Size
  2283. <LI>Call Chain = USB_HP_CAN1_TX_IRQHandler &rArr; HAL_CAN_IRQHandler &rArr; HAL_CAN_RxFifo0MsgPendingCallback &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2284. </UL>
  2285. <BR>[Calls]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  2286. </UL>
  2287. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2288. </UL>
  2289. <P><STRONG><a name="[26]"></a>USB_LP_CAN1_RX0_IRQHandler</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hal_can.o(i.USB_LP_CAN1_RX0_IRQHandler))
  2290. <BR><BR>[Stack]<UL><LI>Max Depth = 328 + Unknown Stack Size
  2291. <LI>Call Chain = USB_LP_CAN1_RX0_IRQHandler &rArr; HAL_CAN_IRQHandler &rArr; HAL_CAN_RxFifo0MsgPendingCallback &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2292. </UL>
  2293. <BR>[Calls]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_IRQHandler
  2294. </UL>
  2295. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2296. </UL>
  2297. <P><STRONG><a name="[17e]"></a>UTIL_CRC</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, sys_crc.o(i.UTIL_CRC))
  2298. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UTIL_CRC
  2299. </UL>
  2300. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2301. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  2302. <LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysWritePara
  2303. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2304. </UL>
  2305. <P><STRONG><a name="[d]"></a>UsageFault_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(i.UsageFault_Handler))
  2306. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f103xe.o(RESET)
  2307. </UL>
  2308. <P><STRONG><a name="[f6]"></a>_FW_LogError</STRONG> (Thumb, 42 bytes, Stack size 24 bytes, sys_log.o(i._FW_LogError))
  2309. <BR><BR>[Stack]<UL><LI>Max Depth = 232 + Unknown Stack Size
  2310. <LI>Call Chain = _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2311. </UL>
  2312. <BR>[Calls]<UL><LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  2313. </UL>
  2314. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2315. <LI><a href="#[5f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_error_callback
  2316. <LI><a href="#[5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;on_error
  2317. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Str2hex
  2318. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  2319. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysGetPara
  2320. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  2321. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_RxFifo0MsgPendingCallback
  2322. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_ErrorCallback
  2323. <LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiTlvSetValue
  2324. </UL>
  2325. <P><STRONG><a name="[114]"></a>_FW_LogInfo</STRONG> (Thumb, 42 bytes, Stack size 24 bytes, sys_log.o(i._FW_LogInfo))
  2326. <BR><BR>[Stack]<UL><LI>Max Depth = 232 + Unknown Stack Size
  2327. <LI>Call Chain = _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2328. </UL>
  2329. <BR>[Calls]<UL><LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_Log
  2330. </UL>
  2331. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2332. <LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanPutDataToIso15765Parse
  2333. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2334. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2335. <LI><a href="#[63]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;print_log_timer_callback
  2336. <LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_rx_callback
  2337. <LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_frame_via_can
  2338. <LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_finish_callback
  2339. <LI><a href="#[172]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysShowPara
  2340. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  2341. <LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysCheckSector
  2342. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSend
  2343. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  2344. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  2345. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2346. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashWriteData
  2347. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashEraseData
  2348. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiSetBleConfig
  2349. </UL>
  2350. <P><STRONG><a name="[c4]"></a>__ARM_fpclassify</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, fpclassify.o(i.__ARM_fpclassify))
  2351. <BR><BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex_real
  2352. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  2353. </UL>
  2354. <P><STRONG><a name="[a7]"></a>_is_digit</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, __printf_wp.o(i._is_digit))
  2355. <BR><BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__printf
  2356. </UL>
  2357. <P><STRONG><a name="[99]"></a>_sys_exit</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, usart.o(i._sys_exit))
  2358. <BR><BR>[Called By]<UL><LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_exit_exit
  2359. </UL>
  2360. <P><STRONG><a name="[197]"></a>delay_init</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, delay.o(i.delay_init))
  2361. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = delay_init
  2362. </UL>
  2363. <BR>[Calls]<UL><LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SYSTICK_CLKSourceConfig
  2364. </UL>
  2365. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2366. </UL>
  2367. <P><STRONG><a name="[ea]"></a>delay_ms</STRONG> (Thumb, 24 bytes, Stack size 12 bytes, delay.o(i.delay_ms))
  2368. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = delay_ms &rArr; delay_us
  2369. </UL>
  2370. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_us
  2371. </UL>
  2372. <BR>[Called By]<UL><LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleReboot
  2373. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcGetVal
  2374. </UL>
  2375. <P><STRONG><a name="[199]"></a>delay_us</STRONG> (Thumb, 68 bytes, Stack size 16 bytes, delay.o(i.delay_us))
  2376. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = delay_us
  2377. </UL>
  2378. <BR>[Called By]<UL><LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_ms
  2379. </UL>
  2380. <P><STRONG><a name="[53]"></a>fputc</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, usart.o(i.fputc))
  2381. <BR>[Address Reference Count : 1]<UL><LI> _printf_char_file.o(.text)
  2382. </UL>
  2383. <P><STRONG><a name="[16c]"></a>get_ver</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, sys_ver.o(i.get_ver))
  2384. <BR><BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2385. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2386. </UL>
  2387. <P><STRONG><a name="[19a]"></a>iqueue_dequeue</STRONG> (Thumb, 76 bytes, Stack size 16 bytes, lib_iqueue.o(i.iqueue_dequeue))
  2388. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = iqueue_dequeue
  2389. </UL>
  2390. <BR>[Calls]<UL><LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  2391. </UL>
  2392. <BR>[Called By]<UL><LI><a href="#[177]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process
  2393. </UL>
  2394. <P><STRONG><a name="[19c]"></a>iqueue_enqueue</STRONG> (Thumb, 76 bytes, Stack size 16 bytes, lib_iqueue.o(i.iqueue_enqueue))
  2395. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = iqueue_enqueue
  2396. </UL>
  2397. <BR>[Calls]<UL><LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  2398. </UL>
  2399. <BR>[Called By]<UL><LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_enqueue
  2400. </UL>
  2401. <P><STRONG><a name="[19d]"></a>iqueue_init</STRONG> (Thumb, 44 bytes, Stack size 24 bytes, lib_iqueue.o(i.iqueue_init))
  2402. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = iqueue_init
  2403. </UL>
  2404. <BR>[Calls]<UL><LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2405. </UL>
  2406. <BR>[Called By]<UL><LI><a href="#[179]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_init
  2407. </UL>
  2408. <P><STRONG><a name="[17b]"></a>iso15765_enqueue</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, lib_iso15765.o(i.iso15765_enqueue))
  2409. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = iso15765_enqueue &rArr; iqueue_enqueue
  2410. </UL>
  2411. <BR>[Calls]<UL><LI><a href="#[19c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iqueue_enqueue
  2412. </UL>
  2413. <BR>[Called By]<UL><LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanPutDataToIso15765Parse
  2414. </UL>
  2415. <P><STRONG><a name="[179]"></a>iso15765_init</STRONG> (Thumb, 158 bytes, Stack size 8 bytes, lib_iso15765.o(i.iso15765_init))
  2416. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = iso15765_init &rArr; iqueue_init
  2417. </UL>
  2418. <BR>[Calls]<UL><LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iqueue_init
  2419. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2420. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2421. </UL>
  2422. <BR>[Called By]<UL><LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanIso15765ParseInit
  2423. </UL>
  2424. <P><STRONG><a name="[177]"></a>iso15765_process</STRONG> (Thumb, 54 bytes, Stack size 32 bytes, lib_iso15765.o(i.iso15765_process))
  2425. <BR><BR>[Stack]<UL><LI>Max Depth = 156<LI>Call Chain = iso15765_process &rArr; iso15765_process_in &rArr; process_in_ff &rArr; send_N_PCI_T_FC &rArr; n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  2426. </UL>
  2427. <BR>[Calls]<UL><LI><a href="#[19a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iqueue_dequeue
  2428. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_timeouts
  2429. <LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_out
  2430. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_in
  2431. </UL>
  2432. <BR>[Called By]<UL><LI><a href="#[176]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanIso15765Parse
  2433. </UL>
  2434. <P><STRONG><a name="[17c]"></a>iso15765_send</STRONG> (Thumb, 84 bytes, Stack size 16 bytes, lib_iso15765.o(i.iso15765_send))
  2435. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = iso15765_send
  2436. </UL>
  2437. <BR>[Calls]<UL><LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  2438. </UL>
  2439. <BR>[Called By]<UL><LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanTransferData
  2440. </UL>
  2441. <P><STRONG><a name="[94]"></a>main</STRONG> (Thumb, 358 bytes, Stack size 96 bytes, main.o(i.main))
  2442. <BR><BR>[Stack]<UL><LI>Max Depth = 536 + Unknown Stack Size
  2443. <LI>Call Chain = main &rArr; MOD_SpiDataProcess &rArr; MOD_SpiSetBleConfig &rArr; MOD_SpiDataSend &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2444. </UL>
  2445. <BR>[Calls]<UL><LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uart_init
  2446. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_out
  2447. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_init
  2448. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_empty
  2449. <LI><a href="#[16c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;get_ver
  2450. <LI><a href="#[197]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_init
  2451. <LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2452. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2453. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Sys_LogPrintCallbackRegister
  2454. <LI><a href="#[18f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stm32_Clock_Init
  2455. <LI><a href="#[18a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysInit
  2456. <LI><a href="#[1af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataSendCallbackRegister
  2457. <LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2458. <LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanIso15765ParseInit
  2459. <LI><a href="#[176]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanIso15765Parse
  2460. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2461. <LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_WdgInit
  2462. <LI><a href="#[165]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_WdgFeed
  2463. <LI><a href="#[1ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UartIsrCallbackRegister
  2464. <LI><a href="#[166]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_TimerRegister
  2465. <LI><a href="#[157]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Timer3Init
  2466. <LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiTxData
  2467. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiInit
  2468. <LI><a href="#[12a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_LedOff
  2469. <LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_LedInit
  2470. <LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Init
  2471. <LI><a href="#[110]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanStart
  2472. <LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanInit
  2473. <LI><a href="#[1b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanCallbackRegister
  2474. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleGpioEn
  2475. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_BleEnGpioInit
  2476. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcInit
  2477. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2478. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2479. </UL>
  2480. <BR>[Called By]<UL><LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_entry_main
  2481. </UL>
  2482. <P><STRONG><a name="[1b1]"></a>queue_empty</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, sys_queue.o(i.queue_empty))
  2483. <BR><BR>[Called By]<UL><LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_out
  2484. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2485. </UL>
  2486. <P><STRONG><a name="[1ba]"></a>queue_full</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, sys_queue.o(i.queue_full))
  2487. <BR><BR>[Called By]<UL><LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_in
  2488. </UL>
  2489. <P><STRONG><a name="[1b9]"></a>queue_in</STRONG> (Thumb, 120 bytes, Stack size 16 bytes, sys_queue.o(i.queue_in))
  2490. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = queue_in &rArr; __aeabi_memclr4
  2491. </UL>
  2492. <BR>[Calls]<UL><LI><a href="#[1ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_full
  2493. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2494. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2495. </UL>
  2496. <BR>[Called By]<UL><LI><a href="#[5b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;uart_isr_callback
  2497. <LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_send_callback
  2498. <LI><a href="#[5e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;spi_inter_callback
  2499. </UL>
  2500. <P><STRONG><a name="[1ac]"></a>queue_init</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, sys_queue.o(i.queue_init))
  2501. <BR><BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2502. </UL>
  2503. <P><STRONG><a name="[1b2]"></a>queue_out</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, sys_queue.o(i.queue_out))
  2504. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = queue_out
  2505. </UL>
  2506. <BR>[Calls]<UL><LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_empty
  2507. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2508. </UL>
  2509. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2510. </UL>
  2511. <P><STRONG><a name="[17f]"></a>small_big_transfer16</STRONG> (Thumb, 14 bytes, Stack size 8 bytes, sys_common.o(i.small_big_transfer16))
  2512. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = small_big_transfer16
  2513. </UL>
  2514. <BR>[Called By]<UL><LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SpiDataProcess
  2515. </UL>
  2516. <P><STRONG><a name="[5d]"></a>spi_send_callback</STRONG> (Thumb, 18 bytes, Stack size 16 bytes, main.o(i.spi_send_callback))
  2517. <BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = spi_send_callback &rArr; queue_in &rArr; __aeabi_memclr4
  2518. </UL>
  2519. <BR>[Calls]<UL><LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_in
  2520. </UL>
  2521. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2522. </UL>
  2523. <P><STRONG><a name="[1ab]"></a>uart_init</STRONG> (Thumb, 44 bytes, Stack size 8 bytes, usart.o(i.uart_init))
  2524. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = uart_init &rArr; HAL_UART_Init &rArr; HAL_UART_MspInit &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  2525. </UL>
  2526. <BR>[Calls]<UL><LI><a href="#[194]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Receive_IT
  2527. <LI><a href="#[160]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Init
  2528. </UL>
  2529. <BR>[Called By]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2530. </UL>
  2531. <P><STRONG><a name="[5b]"></a>uart_isr_callback</STRONG> (Thumb, 18 bytes, Stack size 16 bytes, main.o(i.uart_isr_callback))
  2532. <BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = uart_isr_callback &rArr; queue_in &rArr; __aeabi_memclr4
  2533. </UL>
  2534. <BR>[Calls]<UL><LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_in
  2535. </UL>
  2536. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2537. </UL>
  2538. <P><STRONG><a name="[54]"></a>_get_lc_ctype</STRONG> (Thumb, 44 bytes, Stack size 8 bytes, lc_ctype_c.o(locale$$code))
  2539. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = _get_lc_ctype
  2540. </UL>
  2541. <BR>[Calls]<UL><LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strcmp
  2542. </UL>
  2543. <BR>[Called By]<UL><LI><a href="#[8c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_lib_init_lc_ctype_2
  2544. </UL>
  2545. <BR>[Address Reference Count : 1]<UL><LI> rt_ctype_table.o(.text)
  2546. </UL>
  2547. <P><STRONG><a name="[8e]"></a>_get_lc_numeric</STRONG> (Thumb, 44 bytes, Stack size 8 bytes, lc_numeric_c.o(locale$$code))
  2548. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = _get_lc_numeric
  2549. </UL>
  2550. <BR>[Calls]<UL><LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strcmp
  2551. </UL>
  2552. <BR>[Called By]<UL><LI><a href="#[8d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_lib_init_lc_numeric_2
  2553. </UL>
  2554. <P><STRONG><a name="[170]"></a>__aeabi_d2iz</STRONG> (Thumb, 0 bytes, Stack size 32 bytes, dfix.o(x$fpl$dfix))
  2555. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = __aeabi_d2iz
  2556. </UL>
  2557. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2558. </UL>
  2559. <P><STRONG><a name="[1bd]"></a>_dfix</STRONG> (Thumb, 94 bytes, Stack size 32 bytes, dfix.o(x$fpl$dfix), UNUSED)
  2560. <BR><BR>[Calls]<UL><LI><a href="#[1be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__fpl_dnaninf
  2561. </UL>
  2562. <P><STRONG><a name="[16e]"></a>__aeabi_i2d</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, dflt_clz.o(x$fpl$dflt))
  2563. <BR><BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2564. </UL>
  2565. <P><STRONG><a name="[201]"></a>_dflt</STRONG> (Thumb, 46 bytes, Stack size 0 bytes, dflt_clz.o(x$fpl$dflt), UNUSED)
  2566. <P><STRONG><a name="[16f]"></a>__aeabi_dmul</STRONG> (Thumb, 0 bytes, Stack size 32 bytes, dmul.o(x$fpl$dmul))
  2567. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = __aeabi_dmul
  2568. </UL>
  2569. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2570. </UL>
  2571. <P><STRONG><a name="[1bf]"></a>_dmul</STRONG> (Thumb, 332 bytes, Stack size 32 bytes, dmul.o(x$fpl$dmul), UNUSED)
  2572. <BR><BR>[Calls]<UL><LI><a href="#[1c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__fpl_dretinf
  2573. <LI><a href="#[1be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__fpl_dnaninf
  2574. </UL>
  2575. <P><STRONG><a name="[1be]"></a>__fpl_dnaninf</STRONG> (Thumb, 156 bytes, Stack size 16 bytes, dnaninf.o(x$fpl$dnaninf), UNUSED)
  2576. <BR><BR>[Called By]<UL><LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_dmul
  2577. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_dfix
  2578. </UL>
  2579. <P><STRONG><a name="[1c0]"></a>__fpl_dretinf</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, dretinf.o(x$fpl$dretinf), UNUSED)
  2580. <BR><BR>[Called By]<UL><LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_dmul
  2581. </UL>
  2582. <P><STRONG><a name="[6d]"></a>_printf_fp_dec</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, printf1.o(x$fpl$printf1))
  2583. <BR><BR>[Stack]<UL><LI>Max Depth = 324<LI>Call Chain = _printf_fp_dec &rArr; _printf_fp_dec_real &rArr; _fp_digits &rArr; _btod_etento &rArr; _btod_emul &rArr; _e2e
  2584. </UL>
  2585. <BR>[Calls]<UL><LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  2586. </UL>
  2587. <BR>[Called By]<UL><LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_g
  2588. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_e
  2589. <LI><a href="#[6c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_f
  2590. </UL>
  2591. <P><STRONG><a name="[71]"></a>_printf_fp_hex</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, printf2.o(x$fpl$printf2))
  2592. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = _printf_fp_hex &rArr; _printf_fp_hex_real &rArr; _printf_fp_infnan &rArr; _printf_post_padding
  2593. </UL>
  2594. <BR>[Calls]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_hex_real
  2595. </UL>
  2596. <BR>[Called By]<UL><LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_a
  2597. </UL>
  2598. <P>
  2599. <H3>
  2600. Local Symbols
  2601. </H3>
  2602. <P><STRONG><a name="[5f]"></a>can_error_callback</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, main.o(i.can_error_callback))
  2603. <BR><BR>[Stack]<UL><LI>Max Depth = 240 + Unknown Stack Size
  2604. <LI>Call Chain = can_error_callback &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2605. </UL>
  2606. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2607. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2608. </UL>
  2609. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2610. </UL>
  2611. <P><STRONG><a name="[61]"></a>can_rx_callback</STRONG> (Thumb, 114 bytes, Stack size 64 bytes, main.o(i.can_rx_callback))
  2612. <BR><BR>[Stack]<UL><LI>Max Depth = 344 + Unknown Stack Size
  2613. <LI>Call Chain = can_rx_callback &rArr; MOD_CanPutDataToIso15765Parse &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2614. </UL>
  2615. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2616. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  2617. <LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_CanPutDataToIso15765Parse
  2618. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2619. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2620. </UL>
  2621. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2622. </UL>
  2623. <P><STRONG><a name="[60]"></a>can_tx_callback</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, main.o(i.can_tx_callback))
  2624. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2625. </UL>
  2626. <P><STRONG><a name="[62]"></a>led_toggle_timer_callback</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, main.o(i.led_toggle_timer_callback))
  2627. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = led_toggle_timer_callback &rArr; HAL_LedToggle
  2628. </UL>
  2629. <BR>[Calls]<UL><LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_LedToggle
  2630. </UL>
  2631. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2632. </UL>
  2633. <P><STRONG><a name="[63]"></a>print_log_timer_callback</STRONG> (Thumb, 50 bytes, Stack size 8 bytes, main.o(i.print_log_timer_callback))
  2634. <BR><BR>[Stack]<UL><LI>Max Depth = 240 + Unknown Stack Size
  2635. <LI>Call Chain = print_log_timer_callback &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2636. </UL>
  2637. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2638. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2639. </UL>
  2640. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2641. </UL>
  2642. <P><STRONG><a name="[5e]"></a>spi_inter_callback</STRONG> (Thumb, 36 bytes, Stack size 72 bytes, main.o(i.spi_inter_callback))
  2643. <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = spi_inter_callback &rArr; HAL_SpiRxData &rArr; SPI1_Rx_Data &rArr; HAL_SPI_Receive &rArr; HAL_SPI_TransmitReceive &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  2644. </UL>
  2645. <BR>[Calls]<UL><LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;queue_in
  2646. <LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiRxData
  2647. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2648. </UL>
  2649. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.main)
  2650. </UL>
  2651. <P><STRONG><a name="[12d]"></a>__NVIC_GetPriorityGrouping</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(i.__NVIC_GetPriorityGrouping))
  2652. <BR><BR>[Called By]<UL><LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  2653. </UL>
  2654. <P><STRONG><a name="[12e]"></a>__NVIC_SetPriority</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, stm32f1xx_hal_cortex.o(i.__NVIC_SetPriority))
  2655. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __NVIC_SetPriority
  2656. </UL>
  2657. <BR>[Called By]<UL><LI><a href="#[126]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SYSTICK_Config
  2658. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  2659. </UL>
  2660. <P><STRONG><a name="[135]"></a>RCC_Delay</STRONG> (Thumb, 36 bytes, Stack size 8 bytes, stm32f1xx_hal_rcc.o(i.RCC_Delay))
  2661. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = RCC_Delay
  2662. </UL>
  2663. <BR>[Called By]<UL><LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_OscConfig
  2664. </UL>
  2665. <P><STRONG><a name="[55]"></a>UART_DMAAbortOnError</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(i.UART_DMAAbortOnError))
  2666. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = UART_DMAAbortOnError
  2667. </UL>
  2668. <BR>[Calls]<UL><LI><a href="#[15d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_ErrorCallback
  2669. </UL>
  2670. <BR>[Address Reference Count : 1]<UL><LI> stm32f1xx_hal_uart.o(i.HAL_UART_IRQHandler)
  2671. </UL>
  2672. <P><STRONG><a name="[15b]"></a>UART_EndRxTransfer</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(i.UART_EndRxTransfer))
  2673. <BR><BR>[Called By]<UL><LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  2674. </UL>
  2675. <P><STRONG><a name="[15f]"></a>UART_EndTransmit_IT</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, stm32f1xx_hal_uart.o(i.UART_EndTransmit_IT))
  2676. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = UART_EndTransmit_IT
  2677. </UL>
  2678. <BR>[Calls]<UL><LI><a href="#[191]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_TxCpltCallback
  2679. </UL>
  2680. <BR>[Called By]<UL><LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  2681. </UL>
  2682. <P><STRONG><a name="[15a]"></a>UART_Receive_IT</STRONG> (Thumb, 166 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(i.UART_Receive_IT))
  2683. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = UART_Receive_IT &rArr; HAL_UART_RxCpltCallback
  2684. </UL>
  2685. <BR>[Calls]<UL><LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_RxCpltCallback
  2686. </UL>
  2687. <BR>[Called By]<UL><LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  2688. </UL>
  2689. <P><STRONG><a name="[162]"></a>UART_SetConfig</STRONG> (Thumb, 412 bytes, Stack size 16 bytes, stm32f1xx_hal_uart.o(i.UART_SetConfig))
  2690. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = UART_SetConfig &rArr; HAL_RCC_GetPCLK2Freq
  2691. </UL>
  2692. <BR>[Calls]<UL><LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetPCLK2Freq
  2693. <LI><a href="#[132]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_RCC_GetPCLK1Freq
  2694. </UL>
  2695. <BR>[Called By]<UL><LI><a href="#[160]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Init
  2696. </UL>
  2697. <P><STRONG><a name="[15e]"></a>UART_Transmit_IT</STRONG> (Thumb, 104 bytes, Stack size 0 bytes, stm32f1xx_hal_uart.o(i.UART_Transmit_IT))
  2698. <BR><BR>[Called By]<UL><LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_IRQHandler
  2699. </UL>
  2700. <P><STRONG><a name="[164]"></a>UART_WaitOnFlagUntilTimeout</STRONG> (Thumb, 108 bytes, Stack size 24 bytes, stm32f1xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout))
  2701. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = UART_WaitOnFlagUntilTimeout
  2702. </UL>
  2703. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  2704. </UL>
  2705. <BR>[Called By]<UL><LI><a href="#[163]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_UART_Transmit
  2706. </UL>
  2707. <P><STRONG><a name="[13d]"></a>SPI_EndRxTransaction</STRONG> (Thumb, 120 bytes, Stack size 24 bytes, stm32f1xx_hal_spi.o(i.SPI_EndRxTransaction))
  2708. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = SPI_EndRxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  2709. </UL>
  2710. <BR>[Calls]<UL><LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_WaitFlagStateUntilTimeout
  2711. </UL>
  2712. <BR>[Called By]<UL><LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Receive
  2713. </UL>
  2714. <P><STRONG><a name="[140]"></a>SPI_EndRxTxTransaction</STRONG> (Thumb, 40 bytes, Stack size 24 bytes, stm32f1xx_hal_spi.o(i.SPI_EndRxTxTransaction))
  2715. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  2716. </UL>
  2717. <BR>[Calls]<UL><LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_WaitFlagStateUntilTimeout
  2718. </UL>
  2719. <BR>[Called By]<UL><LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_TransmitReceive
  2720. <LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Transmit
  2721. </UL>
  2722. <P><STRONG><a name="[13c]"></a>SPI_WaitFlagStateUntilTimeout</STRONG> (Thumb, 168 bytes, Stack size 24 bytes, stm32f1xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout))
  2723. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = SPI_WaitFlagStateUntilTimeout
  2724. </UL>
  2725. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GetTick
  2726. </UL>
  2727. <BR>[Called By]<UL><LI><a href="#[140]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_EndRxTxTransaction
  2728. <LI><a href="#[13d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SPI_EndRxTransaction
  2729. <LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_TransmitReceive
  2730. <LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Receive
  2731. </UL>
  2732. <P><STRONG><a name="[11a]"></a>FLASH_Program_HalfWord</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, stm32f1xx_hal_flash.o(i.FLASH_Program_HalfWord))
  2733. <BR><BR>[Called By]<UL><LI><a href="#[118]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Program
  2734. </UL>
  2735. <P><STRONG><a name="[d6]"></a>FLASH_SetErrorCode</STRONG> (Thumb, 124 bytes, Stack size 0 bytes, stm32f1xx_hal_flash.o(i.FLASH_SetErrorCode))
  2736. <BR><BR>[Called By]<UL><LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  2737. </UL>
  2738. <P><STRONG><a name="[116]"></a>FLASH_MassErase</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, stm32f1xx_hal_flash_ex.o(i.FLASH_MassErase))
  2739. <BR><BR>[Called By]<UL><LI><a href="#[115]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASHEx_Erase
  2740. </UL>
  2741. <P><STRONG><a name="[10c]"></a>HAL_CanFilterConfig</STRONG> (Thumb, 58 bytes, Stack size 48 bytes, hal_can.o(i.HAL_CanFilterConfig))
  2742. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = HAL_CanFilterConfig &rArr; HAL_CAN_ConfigFilter
  2743. </UL>
  2744. <BR>[Calls]<UL><LI><a href="#[10d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_ConfigFilter
  2745. </UL>
  2746. <BR>[Called By]<UL><LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanInit
  2747. </UL>
  2748. <P><STRONG><a name="[f7]"></a>HAL_CanTx</STRONG> (Thumb, 30 bytes, Stack size 16 bytes, hal_can.o(i.HAL_CanTx))
  2749. <BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = HAL_CanTx &rArr; HAL_CAN_AddTxMessage
  2750. </UL>
  2751. <BR>[Calls]<UL><LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_AddTxMessage
  2752. </UL>
  2753. <BR>[Called By]<UL><LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  2754. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CAN_ErrorCallback
  2755. </UL>
  2756. <P><STRONG><a name="[144]"></a>SPI1_CsPinInit</STRONG> (Thumb, 70 bytes, Stack size 24 bytes, hal_spi.o(i.SPI1_CsPinInit))
  2757. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = SPI1_CsPinInit &rArr; HAL_GPIO_Init
  2758. </UL>
  2759. <BR>[Calls]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_WritePin
  2760. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  2761. </UL>
  2762. <BR>[Called By]<UL><LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiInit
  2763. </UL>
  2764. <P><STRONG><a name="[145]"></a>SPI1_EXTI_Init</STRONG> (Thumb, 72 bytes, Stack size 24 bytes, hal_spi.o(i.SPI1_EXTI_Init))
  2765. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = SPI1_EXTI_Init &rArr; HAL_NVIC_SetPriority &rArr; __NVIC_SetPriority
  2766. </UL>
  2767. <BR>[Calls]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_GPIO_Init
  2768. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_EnableIRQ
  2769. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_NVIC_SetPriority
  2770. </UL>
  2771. <BR>[Called By]<UL><LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiInit
  2772. </UL>
  2773. <P><STRONG><a name="[141]"></a>SPI1_Init</STRONG> (Thumb, 72 bytes, Stack size 8 bytes, hal_spi.o(i.SPI1_Init))
  2774. <BR><BR>[Stack]<UL><LI>Max Depth = 84<LI>Call Chain = SPI1_Init &rArr; HAL_SPI_Init &rArr; HAL_SPI_MspInit &rArr; HAL_GPIO_Init
  2775. </UL>
  2776. <BR>[Calls]<UL><LI><a href="#[138]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Init
  2777. </UL>
  2778. <BR>[Called By]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiGpioInit
  2779. </UL>
  2780. <P><STRONG><a name="[147]"></a>SPI1_Rx_Data</STRONG> (Thumb, 32 bytes, Stack size 16 bytes, hal_spi.o(i.SPI1_Rx_Data))
  2781. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = SPI1_Rx_Data &rArr; HAL_SPI_Receive &rArr; HAL_SPI_TransmitReceive &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  2782. </UL>
  2783. <BR>[Calls]<UL><LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Receive
  2784. </UL>
  2785. <BR>[Called By]<UL><LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiRxData
  2786. </UL>
  2787. <P><STRONG><a name="[142]"></a>SPI1_SetSpeed</STRONG> (Thumb, 66 bytes, Stack size 0 bytes, hal_spi.o(i.SPI1_SetSpeed))
  2788. <BR><BR>[Called By]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiGpioInit
  2789. </UL>
  2790. <P><STRONG><a name="[149]"></a>SPI1_Tx_Data</STRONG> (Thumb, 32 bytes, Stack size 16 bytes, hal_spi.o(i.SPI1_Tx_Data))
  2791. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = SPI1_Tx_Data &rArr; HAL_SPI_Transmit &rArr; SPI_EndRxTxTransaction &rArr; SPI_WaitFlagStateUntilTimeout
  2792. </UL>
  2793. <BR>[Calls]<UL><LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SPI_Transmit
  2794. </UL>
  2795. <BR>[Called By]<UL><LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SpiTxData
  2796. </UL>
  2797. <P><STRONG><a name="[df]"></a>Get_Adc</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, hal_adc.o(i.Get_Adc))
  2798. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = Get_Adc &rArr; HAL_ADC_PollForConversion &rArr; HAL_RCCEx_GetPeriphCLKFreq &rArr; HAL_RCC_GetSysClockFreq
  2799. </UL>
  2800. <BR>[Calls]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_Start
  2801. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_PollForConversion
  2802. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_GetValue
  2803. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_ADC_ConfigChannel
  2804. </UL>
  2805. <BR>[Called By]<UL><LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_AdcGetVal
  2806. </UL>
  2807. <P><STRONG><a name="[56]"></a>wdg_feed_timer_callback</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, hal_wdg.o(i.wdg_feed_timer_callback))
  2808. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = wdg_feed_timer_callback
  2809. </UL>
  2810. <BR>[Calls]<UL><LI><a href="#[1bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_IWDG_Refresh
  2811. </UL>
  2812. <BR>[Address Reference Count : 1]<UL><LI> hal_wdg.o(i.HAL_WdgFeed)
  2813. </UL>
  2814. <P><STRONG><a name="[11d]"></a>_flash_sector_erase</STRONG> (Thumb, 68 bytes, Stack size 40 bytes, hal_flash.o(i._flash_sector_erase))
  2815. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = _flash_sector_erase &rArr; HAL_FLASHEx_Erase &rArr; FLASH_WaitForLastOperation
  2816. </UL>
  2817. <BR>[Calls]<UL><LI><a href="#[115]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASHEx_Erase
  2818. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Unlock
  2819. <LI><a href="#[196]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Lock
  2820. </UL>
  2821. <BR>[Called By]<UL><LI><a href="#[11c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashSectorErase
  2822. </UL>
  2823. <P><STRONG><a name="[11f]"></a>_flash_write_word</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, hal_flash.o(i._flash_write_word))
  2824. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = _flash_write_word &rArr; HAL_FLASH_Program &rArr; FLASH_WaitForLastOperation
  2825. </UL>
  2826. <BR>[Calls]<UL><LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Unlock
  2827. <LI><a href="#[118]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Program
  2828. <LI><a href="#[196]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FLASH_Lock
  2829. </UL>
  2830. <BR>[Called By]<UL><LI><a href="#[11e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashWriteBytes
  2831. </UL>
  2832. <P><STRONG><a name="[16b]"></a>Sys_Soft_Reset</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, mod_atcmd.o(i.Sys_Soft_Reset))
  2833. <BR><BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_AtCmdDataProcess
  2834. </UL>
  2835. <P><STRONG><a name="[6]"></a>getms</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, mod_candataprocess.o(i.getms))
  2836. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = getms &rArr; HAL_SysGetTickMs
  2837. </UL>
  2838. <BR>[Calls]<UL><LI><a href="#[14a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_SysGetTickMs
  2839. </UL>
  2840. <BR>[Address Reference Count : 1]<UL><LI> mod_candataprocess.o(.data)
  2841. </UL>
  2842. <P><STRONG><a name="[5]"></a>on_error</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, mod_candataprocess.o(i.on_error))
  2843. <BR><BR>[Stack]<UL><LI>Max Depth = 240 + Unknown Stack Size
  2844. <LI>Call Chain = on_error &rArr; _FW_LogError &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2845. </UL>
  2846. <BR>[Calls]<UL><LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2847. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2848. </UL>
  2849. <BR>[Address Reference Count : 1]<UL><LI> mod_candataprocess.o(.data)
  2850. </UL>
  2851. <P><STRONG><a name="[4]"></a>parse_finish_callback</STRONG> (Thumb, 114 bytes, Stack size 16 bytes, mod_candataprocess.o(i.parse_finish_callback))
  2852. <BR><BR>[Stack]<UL><LI>Max Depth = 248 + Unknown Stack Size
  2853. <LI>Call Chain = parse_finish_callback &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2854. </UL>
  2855. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2856. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2857. <LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__2printf
  2858. </UL>
  2859. <BR>[Address Reference Count : 1]<UL><LI> mod_candataprocess.o(.data)
  2860. </UL>
  2861. <P><STRONG><a name="[7]"></a>send_frame_via_can</STRONG> (Thumb, 114 bytes, Stack size 48 bytes, mod_candataprocess.o(i.send_frame_via_can))
  2862. <BR><BR>[Stack]<UL><LI>Max Depth = 312 + Unknown Stack Size
  2863. <LI>Call Chain = send_frame_via_can &rArr; HAL_CanTxData &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2864. </UL>
  2865. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2866. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Hex2str
  2867. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2868. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_CanTxData
  2869. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2870. </UL>
  2871. <BR>[Address Reference Count : 1]<UL><LI> mod_candataprocess.o(.data)
  2872. </UL>
  2873. <P><STRONG><a name="[189]"></a>MOD_SysBinarySearch</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, mod_sys.o(i.MOD_SysBinarySearch))
  2874. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = MOD_SysBinarySearch
  2875. </UL>
  2876. <BR>[Called By]<UL><LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysSetPara
  2877. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysGetPara
  2878. </UL>
  2879. <P><STRONG><a name="[185]"></a>MOD_SysFlashEraseData</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, mod_sys.o(i.MOD_SysFlashEraseData))
  2880. <BR><BR>[Stack]<UL><LI>Max Depth = 240 + Unknown Stack Size
  2881. <LI>Call Chain = MOD_SysFlashEraseData &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2882. </UL>
  2883. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2884. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2885. <LI><a href="#[11c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashSectorErase
  2886. </UL>
  2887. <BR>[Called By]<UL><LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysWritePara
  2888. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2889. </UL>
  2890. <P><STRONG><a name="[186]"></a>MOD_SysFlashInit</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, mod_sys.o(i.MOD_SysFlashInit))
  2891. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = MOD_SysFlashInit
  2892. </UL>
  2893. <BR>[Calls]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashInit
  2894. </UL>
  2895. <BR>[Called By]<UL><LI><a href="#[18a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysInit
  2896. </UL>
  2897. <P><STRONG><a name="[184]"></a>MOD_SysFlashReadData</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, mod_sys.o(i.MOD_SysFlashReadData))
  2898. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = MOD_SysFlashReadData &rArr; HAL_FlashReadBytes
  2899. </UL>
  2900. <BR>[Calls]<UL><LI><a href="#[11b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashReadBytes
  2901. </UL>
  2902. <BR>[Called By]<UL><LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysCheckSector
  2903. </UL>
  2904. <P><STRONG><a name="[188]"></a>MOD_SysFlashWriteData</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, mod_sys.o(i.MOD_SysFlashWriteData))
  2905. <BR><BR>[Stack]<UL><LI>Max Depth = 248 + Unknown Stack Size
  2906. <LI>Call Chain = MOD_SysFlashWriteData &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2907. </UL>
  2908. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2909. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2910. <LI><a href="#[11e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashWriteBytes
  2911. </UL>
  2912. <BR>[Called By]<UL><LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysWritePara
  2913. <LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysLoadPara
  2914. </UL>
  2915. <P><STRONG><a name="[18b]"></a>MOD_SysLoadPara</STRONG> (Thumb, 286 bytes, Stack size 56 bytes, mod_sys.o(i.MOD_SysLoadPara))
  2916. <BR><BR>[Stack]<UL><LI>Max Depth = 328 + Unknown Stack Size
  2917. <LI>Call Chain = MOD_SysLoadPara &rArr; MOD_SysWritePara &rArr; MOD_SysCheckSector &rArr; _FW_LogInfo &rArr; FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2918. </UL>
  2919. <BR>[Calls]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2920. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FW_GetFileLine
  2921. <LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysCheckSector
  2922. <LI><a href="#[11b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_FlashReadBytes
  2923. <LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysWritePara
  2924. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashWriteData
  2925. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysFlashEraseData
  2926. <LI><a href="#[17e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UTIL_CRC
  2927. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2928. <LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  2929. </UL>
  2930. <BR>[Called By]<UL><LI><a href="#[18a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MOD_SysInit
  2931. </UL>
  2932. <P><STRONG><a name="[d9]"></a>FW_Log</STRONG> (Thumb, 166 bytes, Stack size 48 bytes, sys_log.o(i.FW_Log))
  2933. <BR><BR>[Stack]<UL><LI>Max Depth = 208 + Unknown Stack Size
  2934. <LI>Call Chain = FW_Log &rArr; HAL_Vsnprintf &rArr; vsnprintf &rArr; _printf_char_common &rArr; __printf
  2935. </UL>
  2936. <BR>[Calls]<UL><LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SYS_Strcpy
  2937. <LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Vsnprintf
  2938. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HAL_Sprintf
  2939. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2940. <LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strcat
  2941. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strlen
  2942. </UL>
  2943. <BR>[Called By]<UL><LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogInfo
  2944. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_FW_LogError
  2945. </UL>
  2946. <P><STRONG><a name="[5a]"></a>cfg_cfm</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, lib_iso15765.o(i.cfg_cfm))
  2947. <BR>[Address Reference Count : 1]<UL><LI> lib_iso15765.o(i.iso15765_init)
  2948. </UL>
  2949. <P><STRONG><a name="[59]"></a>cfm</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, lib_iso15765.o(i.cfm))
  2950. <BR>[Address Reference Count : 1]<UL><LI> lib_iso15765.o(i.iso15765_init)
  2951. </UL>
  2952. <P><STRONG><a name="[58]"></a>ff_indn</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, lib_iso15765.o(i.ff_indn))
  2953. <BR>[Address Reference Count : 1]<UL><LI> lib_iso15765.o(i.iso15765_init)
  2954. </UL>
  2955. <P><STRONG><a name="[57]"></a>indn</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, lib_iso15765.o(i.indn))
  2956. <BR>[Address Reference Count : 1]<UL><LI> lib_iso15765.o(i.iso15765_init)
  2957. </UL>
  2958. <P><STRONG><a name="[19f]"></a>iso15765_process_in</STRONG> (Thumb, 134 bytes, Stack size 16 bytes, lib_iso15765.o(i.iso15765_process_in))
  2959. <BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = iso15765_process_in &rArr; process_in_ff &rArr; send_N_PCI_T_FC &rArr; n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  2960. </UL>
  2961. <BR>[Calls]<UL><LI><a href="#[1a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_sf
  2962. <LI><a href="#[1a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_ff
  2963. <LI><a href="#[1a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_fc
  2964. <LI><a href="#[1a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_cf
  2965. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_unpack
  2966. </UL>
  2967. <BR>[Called By]<UL><LI><a href="#[177]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process
  2968. </UL>
  2969. <P><STRONG><a name="[1a0]"></a>iso15765_process_out</STRONG> (Thumb, 798 bytes, Stack size 40 bytes, lib_iso15765.o(i.iso15765_process_out))
  2970. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = iso15765_process_out &rArr; n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  2971. </UL>
  2972. <BR>[Calls]<UL><LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;signaling
  2973. <LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack
  2974. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_out_frame_type
  2975. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_get_dt_offset
  2976. <LI><a href="#[1a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_get_closest_can_dl
  2977. </UL>
  2978. <BR>[Called By]<UL><LI><a href="#[177]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process
  2979. </UL>
  2980. <P><STRONG><a name="[1a9]"></a>n_get_closest_can_dl</STRONG> (Thumb, 82 bytes, Stack size 0 bytes, lib_iso15765.o(i.n_get_closest_can_dl))
  2981. <BR><BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_out
  2982. </UL>
  2983. <P><STRONG><a name="[1a8]"></a>n_get_dt_offset</STRONG> (Thumb, 98 bytes, Stack size 12 bytes, lib_iso15765.o(i.n_get_dt_offset))
  2984. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = n_get_dt_offset
  2985. </UL>
  2986. <BR>[Called By]<UL><LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_N_PCI_T_FC
  2987. <LI><a href="#[1b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_unpack_dt
  2988. <LI><a href="#[1b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack_dt
  2989. <LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_out
  2990. </UL>
  2991. <P><STRONG><a name="[1a6]"></a>n_out_frame_type</STRONG> (Thumb, 114 bytes, Stack size 0 bytes, lib_iso15765.o(i.n_out_frame_type))
  2992. <BR><BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_out
  2993. </UL>
  2994. <P><STRONG><a name="[1b3]"></a>n_pci_pack</STRONG> (Thumb, 226 bytes, Stack size 20 bytes, lib_iso15765.o(i.n_pci_pack))
  2995. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = n_pci_pack
  2996. </UL>
  2997. <BR>[Called By]<UL><LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack
  2998. </UL>
  2999. <P><STRONG><a name="[1b5]"></a>n_pci_unpack</STRONG> (Thumb, 194 bytes, Stack size 20 bytes, lib_iso15765.o(i.n_pci_unpack))
  3000. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = n_pci_unpack
  3001. </UL>
  3002. <BR>[Called By]<UL><LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_unpack
  3003. </UL>
  3004. <P><STRONG><a name="[1a7]"></a>n_pdu_pack</STRONG> (Thumb, 258 bytes, Stack size 24 bytes, lib_iso15765.o(i.n_pdu_pack))
  3005. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  3006. </UL>
  3007. <BR>[Calls]<UL><LI><a href="#[1b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack_dt
  3008. <LI><a href="#[1b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pci_pack
  3009. </UL>
  3010. <BR>[Called By]<UL><LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_N_PCI_T_FC
  3011. <LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_out
  3012. </UL>
  3013. <P><STRONG><a name="[1b4]"></a>n_pdu_pack_dt</STRONG> (Thumb, 176 bytes, Stack size 32 bytes, lib_iso15765.o(i.n_pdu_pack_dt))
  3014. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = n_pdu_pack_dt &rArr; n_get_dt_offset
  3015. </UL>
  3016. <BR>[Calls]<UL><LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_get_dt_offset
  3017. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  3018. </UL>
  3019. <BR>[Called By]<UL><LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack
  3020. </UL>
  3021. <P><STRONG><a name="[1a1]"></a>n_pdu_unpack</STRONG> (Thumb, 286 bytes, Stack size 32 bytes, lib_iso15765.o(i.n_pdu_unpack))
  3022. <BR><BR>[Stack]<UL><LI>Max Depth = 76<LI>Call Chain = n_pdu_unpack &rArr; n_pdu_unpack_dt &rArr; n_get_dt_offset
  3023. </UL>
  3024. <BR>[Calls]<UL><LI><a href="#[1b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_unpack_dt
  3025. <LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pci_unpack
  3026. </UL>
  3027. <BR>[Called By]<UL><LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_in
  3028. </UL>
  3029. <P><STRONG><a name="[1b6]"></a>n_pdu_unpack_dt</STRONG> (Thumb, 206 bytes, Stack size 32 bytes, lib_iso15765.o(i.n_pdu_unpack_dt))
  3030. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = n_pdu_unpack_dt &rArr; n_get_dt_offset
  3031. </UL>
  3032. <BR>[Calls]<UL><LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_get_dt_offset
  3033. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  3034. </UL>
  3035. <BR>[Called By]<UL><LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_unpack
  3036. </UL>
  3037. <P><STRONG><a name="[1a4]"></a>process_in_cf</STRONG> (Thumb, 208 bytes, Stack size 24 bytes, lib_iso15765.o(i.process_in_cf))
  3038. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = process_in_cf &rArr; signaling
  3039. </UL>
  3040. <BR>[Calls]<UL><LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;signaling
  3041. <LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  3042. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  3043. </UL>
  3044. <BR>[Called By]<UL><LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_in
  3045. </UL>
  3046. <P><STRONG><a name="[1a5]"></a>process_in_fc</STRONG> (Thumb, 194 bytes, Stack size 24 bytes, lib_iso15765.o(i.process_in_fc))
  3047. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = process_in_fc
  3048. </UL>
  3049. <BR>[Calls]<UL><LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;set_stream_data
  3050. </UL>
  3051. <BR>[Called By]<UL><LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_in
  3052. </UL>
  3053. <P><STRONG><a name="[1a3]"></a>process_in_ff</STRONG> (Thumb, 150 bytes, Stack size 16 bytes, lib_iso15765.o(i.process_in_ff))
  3054. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = process_in_ff &rArr; send_N_PCI_T_FC &rArr; n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  3055. </UL>
  3056. <BR>[Calls]<UL><LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;signaling
  3057. <LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;send_N_PCI_T_FC
  3058. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  3059. </UL>
  3060. <BR>[Called By]<UL><LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_in
  3061. </UL>
  3062. <P><STRONG><a name="[1a2]"></a>process_in_sf</STRONG> (Thumb, 46 bytes, Stack size 16 bytes, lib_iso15765.o(i.process_in_sf))
  3063. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = process_in_sf &rArr; signaling
  3064. </UL>
  3065. <BR>[Calls]<UL><LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;signaling
  3066. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  3067. </UL>
  3068. <BR>[Called By]<UL><LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_in
  3069. </UL>
  3070. <P><STRONG><a name="[19e]"></a>process_timeouts</STRONG> (Thumb, 104 bytes, Stack size 16 bytes, lib_iso15765.o(i.process_timeouts))
  3071. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = process_timeouts &rArr; signaling
  3072. </UL>
  3073. <BR>[Calls]<UL><LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;signaling
  3074. </UL>
  3075. <BR>[Called By]<UL><LI><a href="#[177]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process
  3076. </UL>
  3077. <P><STRONG><a name="[1b8]"></a>send_N_PCI_T_FC</STRONG> (Thumb, 190 bytes, Stack size 24 bytes, lib_iso15765.o(i.send_N_PCI_T_FC))
  3078. <BR><BR>[Stack]<UL><LI>Max Depth = 92<LI>Call Chain = send_N_PCI_T_FC &rArr; n_pdu_pack &rArr; n_pdu_pack_dt &rArr; n_get_dt_offset
  3079. </UL>
  3080. <BR>[Calls]<UL><LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_pdu_pack
  3081. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;n_get_dt_offset
  3082. </UL>
  3083. <BR>[Called By]<UL><LI><a href="#[1a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_ff
  3084. </UL>
  3085. <P><STRONG><a name="[1b7]"></a>set_stream_data</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, lib_iso15765.o(i.set_stream_data))
  3086. <BR><BR>[Called By]<UL><LI><a href="#[1a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_fc
  3087. </UL>
  3088. <P><STRONG><a name="[1aa]"></a>signaling</STRONG> (Thumb, 306 bytes, Stack size 24 bytes, lib_iso15765.o(i.signaling))
  3089. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = signaling
  3090. </UL>
  3091. <BR>[Calls]<UL><LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memmove
  3092. </UL>
  3093. <BR>[Called By]<UL><LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_timeouts
  3094. <LI><a href="#[1a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_sf
  3095. <LI><a href="#[1a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_ff
  3096. <LI><a href="#[1a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;process_in_cf
  3097. <LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;iso15765_process_out
  3098. </UL>
  3099. <P><STRONG><a name="[52]"></a>_printf_input_char</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, _printf_char_common.o(.text))
  3100. <BR>[Address Reference Count : 1]<UL><LI> _printf_char_common.o(.text)
  3101. </UL>
  3102. <P><STRONG><a name="[be]"></a>_fp_digits</STRONG> (Thumb, 432 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text))
  3103. <BR><BR>[Stack]<UL><LI>Max Depth = 220<LI>Call Chain = _fp_digits &rArr; _btod_etento &rArr; _btod_emul &rArr; _e2e
  3104. </UL>
  3105. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_emul
  3106. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_ediv
  3107. <LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_d2e
  3108. <LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_btod_etento
  3109. <LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_ll_udiv10
  3110. </UL>
  3111. <BR>[Called By]<UL><LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_fp_dec_real
  3112. </UL>
  3113. <P>
  3114. <H3>
  3115. Undefined Global Symbols
  3116. </H3><HR></body></html>