N4Drive.htm 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  2. <html><head>
  3. <title>Static Call Graph - [.\Objects\N4Drive.axf]</title></head>
  4. <body><HR>
  5. <H1>Static Call Graph for image .\Objects\N4Drive.axf</H1><HR>
  6. <BR><P>#&#060CALLGRAPH&#062# ARM Linker, 5060750: Last Updated: Fri Dec 09 15:39:02 2022
  7. <BR><P>
  8. <H3>Maximum Stack Usage = 280 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
  9. Call chain for Maximum Stack Depth:</H3>
  10. DMA2_Stream0_IRQHandler &rArr; Get_Temperature &rArr; __hardfp_log &rArr; __kernel_poly &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  11. <P>
  12. <H3>
  13. Mutually Recursive functions
  14. </H3> <LI><a href="#[2]">NMI_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[2]">NMI_Handler</a><BR>
  15. <LI><a href="#[4]">MemManage_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[4]">MemManage_Handler</a><BR>
  16. <LI><a href="#[5]">BusFault_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[5]">BusFault_Handler</a><BR>
  17. <LI><a href="#[6]">UsageFault_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[6]">UsageFault_Handler</a><BR>
  18. <LI><a href="#[7]">SVC_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[7]">SVC_Handler</a><BR>
  19. <LI><a href="#[8]">DebugMon_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[8]">DebugMon_Handler</a><BR>
  20. <LI><a href="#[9]">PendSV_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[9]">PendSV_Handler</a><BR>
  21. <LI><a href="#[1d]">ADC_IRQHandler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[1d]">ADC_IRQHandler</a><BR>
  22. <LI><a href="#[3]">HardFault_Handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[3]">HardFault_Handler</a><BR>
  23. </UL>
  24. <P>
  25. <H3>
  26. Function Pointers
  27. </H3><UL>
  28. <LI><a href="#[1d]">ADC_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  29. <LI><a href="#[5]">BusFault_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  30. <LI><a href="#[1f]">CAN1_RX0_IRQHandler</a> from it.o(i.CAN1_RX0_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  31. <LI><a href="#[20]">CAN1_RX1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  32. <LI><a href="#[21]">CAN1_SCE_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  33. <LI><a href="#[1e]">CAN1_TX_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  34. <LI><a href="#[4b]">CAN2_RX0_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  35. <LI><a href="#[4c]">CAN2_RX1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  36. <LI><a href="#[4d]">CAN2_SCE_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  37. <LI><a href="#[4a]">CAN2_TX_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  38. <LI><a href="#[5a]">CRYP_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  39. <LI><a href="#[59]">DCMI_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  40. <LI><a href="#[16]">DMA1_Stream0_IRQHandler</a> from it.o(i.DMA1_Stream0_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  41. <LI><a href="#[17]">DMA1_Stream1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  42. <LI><a href="#[18]">DMA1_Stream2_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  43. <LI><a href="#[19]">DMA1_Stream3_IRQHandler</a> from it.o(i.DMA1_Stream3_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  44. <LI><a href="#[1a]">DMA1_Stream4_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  45. <LI><a href="#[1b]">DMA1_Stream5_IRQHandler</a> from it.o(i.DMA1_Stream5_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  46. <LI><a href="#[1c]">DMA1_Stream6_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  47. <LI><a href="#[3a]">DMA1_Stream7_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  48. <LI><a href="#[43]">DMA2_Stream0_IRQHandler</a> from it.o(i.DMA2_Stream0_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  49. <LI><a href="#[44]">DMA2_Stream1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  50. <LI><a href="#[45]">DMA2_Stream2_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  51. <LI><a href="#[46]">DMA2_Stream3_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  52. <LI><a href="#[47]">DMA2_Stream4_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  53. <LI><a href="#[4f]">DMA2_Stream5_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  54. <LI><a href="#[50]">DMA2_Stream6_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  55. <LI><a href="#[51]">DMA2_Stream7_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  56. <LI><a href="#[8]">DebugMon_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  57. <LI><a href="#[48]">ETH_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  58. <LI><a href="#[49]">ETH_WKUP_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  59. <LI><a href="#[11]">EXTI0_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  60. <LI><a href="#[33]">EXTI15_10_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  61. <LI><a href="#[12]">EXTI1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  62. <LI><a href="#[13]">EXTI2_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  63. <LI><a href="#[14]">EXTI3_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  64. <LI><a href="#[15]">EXTI4_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  65. <LI><a href="#[22]">EXTI9_5_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  66. <LI><a href="#[f]">FLASH_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  67. <LI><a href="#[5c]">FPU_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  68. <LI><a href="#[3b]">FSMC_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  69. <LI><a href="#[5b]">HASH_RNG_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  70. <LI><a href="#[3]">HardFault_Handler</a> from it.o(i.HardFault_Handler) referenced from startup_stm32f40_41xxx.o(RESET)
  71. <LI><a href="#[2b]">I2C1_ER_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  72. <LI><a href="#[2a]">I2C1_EV_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  73. <LI><a href="#[2d]">I2C2_ER_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  74. <LI><a href="#[2c]">I2C2_EV_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  75. <LI><a href="#[54]">I2C3_ER_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  76. <LI><a href="#[53]">I2C3_EV_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  77. <LI><a href="#[4]">MemManage_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  78. <LI><a href="#[2]">NMI_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  79. <LI><a href="#[4e]">OTG_FS_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  80. <LI><a href="#[35]">OTG_FS_WKUP_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  81. <LI><a href="#[56]">OTG_HS_EP1_IN_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  82. <LI><a href="#[55]">OTG_HS_EP1_OUT_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  83. <LI><a href="#[58]">OTG_HS_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  84. <LI><a href="#[57]">OTG_HS_WKUP_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  85. <LI><a href="#[c]">PVD_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  86. <LI><a href="#[9]">PendSV_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  87. <LI><a href="#[62]">RCC_APB1PeriphClockCmd</a> from stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd) referenced from main.o(i.ADC_Config)
  88. <LI><a href="#[62]">RCC_APB1PeriphClockCmd</a> from stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd) referenced from main.o(i.Dshot_Config)
  89. <LI><a href="#[62]">RCC_APB1PeriphClockCmd</a> from stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd) referenced from main.o(i.USART_Config)
  90. <LI><a href="#[65]">RCC_APB2PeriphClockCmd</a> from stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) referenced from main.o(i.Dshot_Config)
  91. <LI><a href="#[65]">RCC_APB2PeriphClockCmd</a> from stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) referenced from main.o(i.USART_Config)
  92. <LI><a href="#[10]">RCC_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  93. <LI><a href="#[34]">RTC_Alarm_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  94. <LI><a href="#[e]">RTC_WKUP_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  95. <LI><a href="#[1]">Reset_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  96. <LI><a href="#[3c]">SDIO_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  97. <LI><a href="#[2e]">SPI1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  98. <LI><a href="#[2f]">SPI2_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  99. <LI><a href="#[3e]">SPI3_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  100. <LI><a href="#[7]">SVC_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  101. <LI><a href="#[a]">SysTick_Handler</a> from it.o(i.SysTick_Handler) referenced from startup_stm32f40_41xxx.o(RESET)
  102. <LI><a href="#[5e]">SystemInit</a> from system_stm32f4xx.o(i.SystemInit) referenced from startup_stm32f40_41xxx.o(.text)
  103. <LI><a href="#[d]">TAMP_STAMP_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  104. <LI><a href="#[23]">TIM1_BRK_TIM9_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  105. <LI><a href="#[26]">TIM1_CC_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  106. <LI><a href="#[25]">TIM1_TRG_COM_TIM11_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  107. <LI><a href="#[24]">TIM1_UP_TIM10_IRQHandler</a> from it.o(i.TIM1_UP_TIM10_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  108. <LI><a href="#[27]">TIM2_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  109. <LI><a href="#[28]">TIM3_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  110. <LI><a href="#[29]">TIM4_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  111. <LI><a href="#[3d]">TIM5_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  112. <LI><a href="#[41]">TIM6_DAC_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  113. <LI><a href="#[42]">TIM7_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  114. <LI><a href="#[36]">TIM8_BRK_TIM12_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  115. <LI><a href="#[39]">TIM8_CC_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  116. <LI><a href="#[38]">TIM8_TRG_COM_TIM14_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  117. <LI><a href="#[37]">TIM8_UP_TIM13_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  118. <LI><a href="#[61]">TIM_OC1Init</a> from stm32f4xx_tim.o(i.TIM_OC1Init) referenced from main.o(i.ADC_Config)
  119. <LI><a href="#[61]">TIM_OC1Init</a> from stm32f4xx_tim.o(i.TIM_OC1Init) referenced from main.o(i.Dshot_Config)
  120. <LI><a href="#[60]">TIM_OC1PreloadConfig</a> from stm32f4xx_tim.o(i.TIM_OC1PreloadConfig) referenced from main.o(i.ADC_Config)
  121. <LI><a href="#[60]">TIM_OC1PreloadConfig</a> from stm32f4xx_tim.o(i.TIM_OC1PreloadConfig) referenced from main.o(i.Dshot_Config)
  122. <LI><a href="#[64]">TIM_OC2Init</a> from stm32f4xx_tim.o(i.TIM_OC2Init) referenced from main.o(i.Dshot_Config)
  123. <LI><a href="#[63]">TIM_OC2PreloadConfig</a> from stm32f4xx_tim.o(i.TIM_OC2PreloadConfig) referenced from main.o(i.Dshot_Config)
  124. <LI><a href="#[3f]">UART4_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  125. <LI><a href="#[40]">UART5_IRQHandler</a> from it.o(i.UART5_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  126. <LI><a href="#[30]">USART1_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  127. <LI><a href="#[31]">USART2_IRQHandler</a> from it.o(i.USART2_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  128. <LI><a href="#[32]">USART3_IRQHandler</a> from it.o(i.USART3_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  129. <LI><a href="#[52]">USART6_IRQHandler</a> from it.o(i.USART6_IRQHandler) referenced from startup_stm32f40_41xxx.o(RESET)
  130. <LI><a href="#[6]">UsageFault_Handler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  131. <LI><a href="#[b]">WWDG_IRQHandler</a> from startup_stm32f40_41xxx.o(.text) referenced from startup_stm32f40_41xxx.o(RESET)
  132. <LI><a href="#[5f]">__main</a> from entry.o(.ARM.Collect$$$$00000000) referenced from startup_stm32f40_41xxx.o(.text)
  133. <LI><a href="#[5d]">main</a> from main.o(i.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
  134. </UL>
  135. <P>
  136. <H3>
  137. Global Symbols
  138. </H3>
  139. <P><STRONG><a name="[5f]"></a>__main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000))
  140. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(.text)
  141. </UL>
  142. <P><STRONG><a name="[105]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
  143. <P><STRONG><a name="[66]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
  144. <BR><BR>[Calls]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  145. </UL>
  146. <P><STRONG><a name="[78]"></a>__main_after_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
  147. <BR><BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  148. </UL>
  149. <P><STRONG><a name="[106]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
  150. <P><STRONG><a name="[107]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
  151. <P><STRONG><a name="[108]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
  152. <P><STRONG><a name="[109]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000D))
  153. <P><STRONG><a name="[10a]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F))
  154. <P><STRONG><a name="[1]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  155. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  156. </UL>
  157. <P><STRONG><a name="[2]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  158. <BR><BR>[Calls]<UL><LI><a href="#[2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NMI_Handler
  159. </UL>
  160. <BR>[Called By]<UL><LI><a href="#[2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NMI_Handler
  161. </UL>
  162. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  163. </UL>
  164. <P><STRONG><a name="[4]"></a>MemManage_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  165. <BR><BR>[Calls]<UL><LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MemManage_Handler
  166. </UL>
  167. <BR>[Called By]<UL><LI><a href="#[4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MemManage_Handler
  168. </UL>
  169. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  170. </UL>
  171. <P><STRONG><a name="[5]"></a>BusFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  172. <BR><BR>[Calls]<UL><LI><a href="#[5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BusFault_Handler
  173. </UL>
  174. <BR>[Called By]<UL><LI><a href="#[5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BusFault_Handler
  175. </UL>
  176. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  177. </UL>
  178. <P><STRONG><a name="[6]"></a>UsageFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  179. <BR><BR>[Calls]<UL><LI><a href="#[6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UsageFault_Handler
  180. </UL>
  181. <BR>[Called By]<UL><LI><a href="#[6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UsageFault_Handler
  182. </UL>
  183. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  184. </UL>
  185. <P><STRONG><a name="[7]"></a>SVC_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  186. <BR><BR>[Calls]<UL><LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SVC_Handler
  187. </UL>
  188. <BR>[Called By]<UL><LI><a href="#[7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SVC_Handler
  189. </UL>
  190. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  191. </UL>
  192. <P><STRONG><a name="[8]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  193. <BR><BR>[Calls]<UL><LI><a href="#[8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DebugMon_Handler
  194. </UL>
  195. <BR>[Called By]<UL><LI><a href="#[8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DebugMon_Handler
  196. </UL>
  197. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  198. </UL>
  199. <P><STRONG><a name="[9]"></a>PendSV_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  200. <BR><BR>[Calls]<UL><LI><a href="#[9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PendSV_Handler
  201. </UL>
  202. <BR>[Called By]<UL><LI><a href="#[9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PendSV_Handler
  203. </UL>
  204. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  205. </UL>
  206. <P><STRONG><a name="[1d]"></a>ADC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  207. <BR><BR>[Calls]<UL><LI><a href="#[1d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_IRQHandler
  208. </UL>
  209. <BR>[Called By]<UL><LI><a href="#[1d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_IRQHandler
  210. </UL>
  211. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  212. </UL>
  213. <P><STRONG><a name="[20]"></a>CAN1_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  214. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  215. </UL>
  216. <P><STRONG><a name="[21]"></a>CAN1_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  217. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  218. </UL>
  219. <P><STRONG><a name="[1e]"></a>CAN1_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  220. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  221. </UL>
  222. <P><STRONG><a name="[4b]"></a>CAN2_RX0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  223. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  224. </UL>
  225. <P><STRONG><a name="[4c]"></a>CAN2_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  226. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  227. </UL>
  228. <P><STRONG><a name="[4d]"></a>CAN2_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  229. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  230. </UL>
  231. <P><STRONG><a name="[4a]"></a>CAN2_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  232. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  233. </UL>
  234. <P><STRONG><a name="[5a]"></a>CRYP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  235. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  236. </UL>
  237. <P><STRONG><a name="[59]"></a>DCMI_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  238. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  239. </UL>
  240. <P><STRONG><a name="[17]"></a>DMA1_Stream1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  241. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  242. </UL>
  243. <P><STRONG><a name="[18]"></a>DMA1_Stream2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  244. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  245. </UL>
  246. <P><STRONG><a name="[1a]"></a>DMA1_Stream4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  247. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  248. </UL>
  249. <P><STRONG><a name="[1c]"></a>DMA1_Stream6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  250. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  251. </UL>
  252. <P><STRONG><a name="[3a]"></a>DMA1_Stream7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  253. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  254. </UL>
  255. <P><STRONG><a name="[44]"></a>DMA2_Stream1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  256. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  257. </UL>
  258. <P><STRONG><a name="[45]"></a>DMA2_Stream2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  259. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  260. </UL>
  261. <P><STRONG><a name="[46]"></a>DMA2_Stream3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  262. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  263. </UL>
  264. <P><STRONG><a name="[47]"></a>DMA2_Stream4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  265. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  266. </UL>
  267. <P><STRONG><a name="[4f]"></a>DMA2_Stream5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  268. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  269. </UL>
  270. <P><STRONG><a name="[50]"></a>DMA2_Stream6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  271. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  272. </UL>
  273. <P><STRONG><a name="[51]"></a>DMA2_Stream7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  274. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  275. </UL>
  276. <P><STRONG><a name="[48]"></a>ETH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  277. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  278. </UL>
  279. <P><STRONG><a name="[49]"></a>ETH_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  280. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  281. </UL>
  282. <P><STRONG><a name="[11]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  283. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  284. </UL>
  285. <P><STRONG><a name="[33]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  286. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  287. </UL>
  288. <P><STRONG><a name="[12]"></a>EXTI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  289. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  290. </UL>
  291. <P><STRONG><a name="[13]"></a>EXTI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  292. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  293. </UL>
  294. <P><STRONG><a name="[14]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  295. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  296. </UL>
  297. <P><STRONG><a name="[15]"></a>EXTI4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  298. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  299. </UL>
  300. <P><STRONG><a name="[22]"></a>EXTI9_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  301. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  302. </UL>
  303. <P><STRONG><a name="[f]"></a>FLASH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  304. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  305. </UL>
  306. <P><STRONG><a name="[5c]"></a>FPU_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  307. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  308. </UL>
  309. <P><STRONG><a name="[3b]"></a>FSMC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  310. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  311. </UL>
  312. <P><STRONG><a name="[5b]"></a>HASH_RNG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  313. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  314. </UL>
  315. <P><STRONG><a name="[2b]"></a>I2C1_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  316. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  317. </UL>
  318. <P><STRONG><a name="[2a]"></a>I2C1_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  319. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  320. </UL>
  321. <P><STRONG><a name="[2d]"></a>I2C2_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  322. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  323. </UL>
  324. <P><STRONG><a name="[2c]"></a>I2C2_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  325. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  326. </UL>
  327. <P><STRONG><a name="[54]"></a>I2C3_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  328. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  329. </UL>
  330. <P><STRONG><a name="[53]"></a>I2C3_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  331. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  332. </UL>
  333. <P><STRONG><a name="[4e]"></a>OTG_FS_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  334. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  335. </UL>
  336. <P><STRONG><a name="[35]"></a>OTG_FS_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  337. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  338. </UL>
  339. <P><STRONG><a name="[56]"></a>OTG_HS_EP1_IN_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  340. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  341. </UL>
  342. <P><STRONG><a name="[55]"></a>OTG_HS_EP1_OUT_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  343. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  344. </UL>
  345. <P><STRONG><a name="[58]"></a>OTG_HS_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  346. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  347. </UL>
  348. <P><STRONG><a name="[57]"></a>OTG_HS_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  349. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  350. </UL>
  351. <P><STRONG><a name="[c]"></a>PVD_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  352. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  353. </UL>
  354. <P><STRONG><a name="[10]"></a>RCC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  355. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  356. </UL>
  357. <P><STRONG><a name="[34]"></a>RTC_Alarm_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  358. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  359. </UL>
  360. <P><STRONG><a name="[e]"></a>RTC_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  361. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  362. </UL>
  363. <P><STRONG><a name="[3c]"></a>SDIO_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  364. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  365. </UL>
  366. <P><STRONG><a name="[2e]"></a>SPI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  367. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  368. </UL>
  369. <P><STRONG><a name="[2f]"></a>SPI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  370. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  371. </UL>
  372. <P><STRONG><a name="[3e]"></a>SPI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  373. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  374. </UL>
  375. <P><STRONG><a name="[d]"></a>TAMP_STAMP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  376. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  377. </UL>
  378. <P><STRONG><a name="[23]"></a>TIM1_BRK_TIM9_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  379. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  380. </UL>
  381. <P><STRONG><a name="[26]"></a>TIM1_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  382. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  383. </UL>
  384. <P><STRONG><a name="[25]"></a>TIM1_TRG_COM_TIM11_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  385. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  386. </UL>
  387. <P><STRONG><a name="[27]"></a>TIM2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  388. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  389. </UL>
  390. <P><STRONG><a name="[28]"></a>TIM3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  391. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  392. </UL>
  393. <P><STRONG><a name="[29]"></a>TIM4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  394. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  395. </UL>
  396. <P><STRONG><a name="[3d]"></a>TIM5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  397. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  398. </UL>
  399. <P><STRONG><a name="[41]"></a>TIM6_DAC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  400. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  401. </UL>
  402. <P><STRONG><a name="[42]"></a>TIM7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  403. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  404. </UL>
  405. <P><STRONG><a name="[36]"></a>TIM8_BRK_TIM12_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  406. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  407. </UL>
  408. <P><STRONG><a name="[39]"></a>TIM8_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  409. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  410. </UL>
  411. <P><STRONG><a name="[38]"></a>TIM8_TRG_COM_TIM14_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  412. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  413. </UL>
  414. <P><STRONG><a name="[37]"></a>TIM8_UP_TIM13_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  415. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  416. </UL>
  417. <P><STRONG><a name="[3f]"></a>UART4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  418. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  419. </UL>
  420. <P><STRONG><a name="[30]"></a>USART1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  421. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  422. </UL>
  423. <P><STRONG><a name="[b]"></a>WWDG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f40_41xxx.o(.text))
  424. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  425. </UL>
  426. <P><STRONG><a name="[68]"></a>__aeabi_dadd</STRONG> (Thumb, 322 bytes, Stack size 48 bytes, dadd.o(.text))
  427. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  428. </UL>
  429. <BR>[Calls]<UL><LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_lasr
  430. <LI><a href="#[69]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  431. <LI><a href="#[6c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_round
  432. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  433. </UL>
  434. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dsub
  435. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Motor_AD_correct
  436. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_drsub
  437. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  438. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Rec_Flash_Set
  439. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  440. <LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__kernel_poly
  441. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_dbl_infnan
  442. </UL>
  443. <P><STRONG><a name="[6d]"></a>__aeabi_dsub</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text))
  444. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = __aeabi_dsub &rArr; __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  445. </UL>
  446. <BR>[Calls]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  447. </UL>
  448. <BR>[Called By]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stall_check
  449. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  450. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  451. </UL>
  452. <P><STRONG><a name="[6e]"></a>__aeabi_drsub</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text))
  453. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = __aeabi_drsub &rArr; __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  454. </UL>
  455. <BR>[Calls]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  456. </UL>
  457. <BR>[Called By]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  458. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  459. </UL>
  460. <P><STRONG><a name="[6f]"></a>__aeabi_dmul</STRONG> (Thumb, 228 bytes, Stack size 48 bytes, dmul.o(.text))
  461. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  462. </UL>
  463. <BR>[Calls]<UL><LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  464. </UL>
  465. <BR>[Called By]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stall_check
  466. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Motor_AD_correct
  467. <LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetDShotValue
  468. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  469. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  470. <LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  471. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Rec_Flash_Set
  472. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  473. <LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__kernel_poly
  474. </UL>
  475. <P><STRONG><a name="[70]"></a>__aeabi_ddiv</STRONG> (Thumb, 222 bytes, Stack size 32 bytes, ddiv.o(.text))
  476. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = __aeabi_ddiv &rArr; _double_round
  477. </UL>
  478. <BR>[Calls]<UL><LI><a href="#[6c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_round
  479. </UL>
  480. <BR>[Called By]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  481. <LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  482. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  483. <LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_dbl_invalid
  484. <LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_dbl_divzero
  485. </UL>
  486. <P><STRONG><a name="[71]"></a>__aeabi_i2d</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, dflti.o(.text))
  487. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = __aeabi_i2d &rArr; _double_epilogue &rArr; _double_round
  488. </UL>
  489. <BR>[Calls]<UL><LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  490. </UL>
  491. <BR>[Called By]<UL><LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetDShotValue
  492. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Rec_Flash_Set
  493. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  494. </UL>
  495. <P><STRONG><a name="[72]"></a>__aeabi_ui2d</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, dfltui.o(.text))
  496. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = __aeabi_ui2d &rArr; _double_epilogue &rArr; _double_round
  497. </UL>
  498. <BR>[Calls]<UL><LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  499. </UL>
  500. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  501. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  502. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Rec_Flash_Set
  503. </UL>
  504. <P><STRONG><a name="[73]"></a>__aeabi_d2iz</STRONG> (Thumb, 62 bytes, Stack size 16 bytes, dfixi.o(.text))
  505. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = __aeabi_d2iz
  506. </UL>
  507. <BR>[Calls]<UL><LI><a href="#[74]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  508. </UL>
  509. <BR>[Called By]<UL><LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetDShotValue
  510. </UL>
  511. <P><STRONG><a name="[75]"></a>__aeabi_d2uiz</STRONG> (Thumb, 50 bytes, Stack size 8 bytes, dfixui.o(.text))
  512. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __aeabi_d2uiz
  513. </UL>
  514. <BR>[Calls]<UL><LI><a href="#[74]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  515. </UL>
  516. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  517. </UL>
  518. <P><STRONG><a name="[ad]"></a>__aeabi_f2d</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, f2d.o(.text))
  519. <BR><BR>[Called By]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stall_check
  520. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  521. <LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  522. </UL>
  523. <P><STRONG><a name="[fd]"></a>__aeabi_cdcmpeq</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, cdcmple.o(.text))
  524. <BR><BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  525. </UL>
  526. <P><STRONG><a name="[e0]"></a>__aeabi_cdcmple</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, cdcmple.o(.text))
  527. <BR><BR>[Called By]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stall_check
  528. </UL>
  529. <P><STRONG><a name="[df]"></a>__aeabi_cdrcmple</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, cdrcmple.o(.text))
  530. <BR><BR>[Called By]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stall_check
  531. </UL>
  532. <P><STRONG><a name="[76]"></a>__aeabi_d2f</STRONG> (Thumb, 56 bytes, Stack size 8 bytes, d2f.o(.text))
  533. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __aeabi_d2f
  534. </UL>
  535. <BR>[Calls]<UL><LI><a href="#[77]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_float_round
  536. </UL>
  537. <BR>[Called By]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  538. <LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  539. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Rec_Flash_Set
  540. </UL>
  541. <P><STRONG><a name="[69]"></a>__aeabi_llsl</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, llshl.o(.text))
  542. <BR><BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  543. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  544. </UL>
  545. <P><STRONG><a name="[10b]"></a>_ll_shift_l</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
  546. <P><STRONG><a name="[74]"></a>__aeabi_llsr</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, llushr.o(.text))
  547. <BR><BR>[Called By]<UL><LI><a href="#[75]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2uiz
  548. <LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2iz
  549. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  550. </UL>
  551. <P><STRONG><a name="[10c]"></a>_ll_ushift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
  552. <P><STRONG><a name="[6a]"></a>__aeabi_lasr</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, llsshr.o(.text))
  553. <BR><BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  554. </UL>
  555. <P><STRONG><a name="[10d]"></a>_ll_sshift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llsshr.o(.text), UNUSED)
  556. <P><STRONG><a name="[10e]"></a>__I$use$fp</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, iusefp.o(.text), UNUSED)
  557. <P><STRONG><a name="[77]"></a>_float_round</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, fepilogue.o(.text))
  558. <BR><BR>[Called By]<UL><LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2f
  559. </UL>
  560. <P><STRONG><a name="[10f]"></a>_float_epilogue</STRONG> (Thumb, 92 bytes, Stack size 4 bytes, fepilogue.o(.text), UNUSED)
  561. <P><STRONG><a name="[6c]"></a>_double_round</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, depilogue.o(.text))
  562. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = _double_round
  563. </UL>
  564. <BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  565. <LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  566. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  567. </UL>
  568. <P><STRONG><a name="[6b]"></a>_double_epilogue</STRONG> (Thumb, 156 bytes, Stack size 32 bytes, depilogue.o(.text))
  569. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = _double_epilogue &rArr; _double_round
  570. </UL>
  571. <BR>[Calls]<UL><LI><a href="#[74]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  572. <LI><a href="#[69]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  573. <LI><a href="#[6c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_round
  574. </UL>
  575. <BR>[Called By]<UL><LI><a href="#[72]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ui2d
  576. <LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_i2d
  577. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  578. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  579. </UL>
  580. <P><STRONG><a name="[67]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
  581. <BR><BR>[Calls]<UL><LI><a href="#[78]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__main_after_scatterload
  582. </UL>
  583. <BR>[Called By]<UL><LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_main_scatterload
  584. </UL>
  585. <P><STRONG><a name="[110]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
  586. <P><STRONG><a name="[8d]"></a>ADC_Cmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_adc.o(i.ADC_Cmd))
  587. <BR><BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  588. </UL>
  589. <P><STRONG><a name="[88]"></a>ADC_CommonInit</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, stm32f4xx_adc.o(i.ADC_CommonInit))
  590. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = ADC_CommonInit
  591. </UL>
  592. <BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  593. </UL>
  594. <P><STRONG><a name="[79]"></a>ADC_Config</STRONG> (Thumb, 116 bytes, Stack size 32 bytes, main.o(i.ADC_Config))
  595. <BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = ADC_Config &rArr; ADC_DMA_Config &rArr; DMA_Init
  596. </UL>
  597. <BR>[Calls]<UL><LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_TIM_Config
  598. <LI><a href="#[7c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_NVIC_Config
  599. <LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  600. <LI><a href="#[7a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_GPIO_Config
  601. <LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  602. </UL>
  603. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  604. </UL>
  605. <P><STRONG><a name="[8c]"></a>ADC_DMACmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_adc.o(i.ADC_DMACmd))
  606. <BR><BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  607. </UL>
  608. <P><STRONG><a name="[8b]"></a>ADC_DMARequestAfterLastTransferCmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_adc.o(i.ADC_DMARequestAfterLastTransferCmd))
  609. <BR><BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  610. </UL>
  611. <P><STRONG><a name="[7d]"></a>ADC_DMA_Config</STRONG> (Thumb, 124 bytes, Stack size 80 bytes, adc.o(i.ADC_DMA_Config))
  612. <BR><BR>[Stack]<UL><LI>Max Depth = 92<LI>Call Chain = ADC_DMA_Config &rArr; DMA_Init
  613. </UL>
  614. <BR>[Calls]<UL><LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_DoubleBufferModeConfig
  615. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_DoubleBufferModeCmd
  616. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  617. <LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Init
  618. <LI><a href="#[84]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ITConfig
  619. <LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  620. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearITPendingBit
  621. </UL>
  622. <BR>[Called By]<UL><LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Config
  623. </UL>
  624. <P><STRONG><a name="[7a]"></a>ADC_GPIO_Config</STRONG> (Thumb, 36 bytes, Stack size 24 bytes, adc.o(i.ADC_GPIO_Config))
  625. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = ADC_GPIO_Config &rArr; GPIO_Init
  626. </UL>
  627. <BR>[Calls]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  628. <LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  629. </UL>
  630. <BR>[Called By]<UL><LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Config
  631. </UL>
  632. <P><STRONG><a name="[89]"></a>ADC_Init</STRONG> (Thumb, 66 bytes, Stack size 12 bytes, stm32f4xx_adc.o(i.ADC_Init))
  633. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = ADC_Init
  634. </UL>
  635. <BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  636. </UL>
  637. <P><STRONG><a name="[7b]"></a>ADC_Mode_Config</STRONG> (Thumb, 144 bytes, Stack size 64 bytes, adc.o(i.ADC_Mode_Config))
  638. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = ADC_Mode_Config &rArr; ADC_RegularChannelConfig
  639. </UL>
  640. <BR>[Calls]<UL><LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_APB2PeriphResetCmd
  641. <LI><a href="#[8a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_RegularChannelConfig
  642. <LI><a href="#[89]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Init
  643. <LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMARequestAfterLastTransferCmd
  644. <LI><a href="#[8c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMACmd
  645. <LI><a href="#[88]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_CommonInit
  646. <LI><a href="#[8d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Cmd
  647. <LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_APB2PeriphClockCmd
  648. </UL>
  649. <BR>[Called By]<UL><LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Config
  650. </UL>
  651. <P><STRONG><a name="[7c]"></a>ADC_NVIC_Config</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, adc.o(i.ADC_NVIC_Config))
  652. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = ADC_NVIC_Config &rArr; NVIC_Init
  653. </UL>
  654. <BR>[Calls]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  655. </UL>
  656. <BR>[Called By]<UL><LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Config
  657. </UL>
  658. <P><STRONG><a name="[8a]"></a>ADC_RegularChannelConfig</STRONG> (Thumb, 116 bytes, Stack size 16 bytes, stm32f4xx_adc.o(i.ADC_RegularChannelConfig))
  659. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = ADC_RegularChannelConfig
  660. </UL>
  661. <BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  662. </UL>
  663. <P><STRONG><a name="[7e]"></a>ADC_TIM_Config</STRONG> (Thumb, 114 bytes, Stack size 56 bytes, adc.o(i.ADC_TIM_Config))
  664. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = ADC_TIM_Config &rArr; TIM_TimeBaseInit
  665. </UL>
  666. <BR>[Calls]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_CtrlPWMOutputs
  667. <LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_TimeBaseInit
  668. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_SelectOutputTrigger
  669. <LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Cmd
  670. </UL>
  671. <BR>[Called By]<UL><LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Config
  672. </UL>
  673. <P><STRONG><a name="[93]"></a>All_motor_Config</STRONG> (Thumb, 118 bytes, Stack size 4 bytes, main.o(i.All_motor_Config))
  674. <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = All_motor_Config
  675. </UL>
  676. <BR>[Calls]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Single_Motor_Config
  677. </UL>
  678. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  679. </UL>
  680. <P><STRONG><a name="[95]"></a>AnaMotorData</STRONG> (Thumb, 148 bytes, Stack size 8 bytes, main.o(i.AnaMotorData))
  681. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = AnaMotorData &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  682. </UL>
  683. <BR>[Calls]<UL><LI><a href="#[72]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ui2d
  684. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  685. <LI><a href="#[75]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2uiz
  686. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;get_crc8
  687. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Equation
  688. </UL>
  689. <BR>[Called By]<UL><LI><a href="#[52]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART6_IRQHandler
  690. <LI><a href="#[32]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART3_IRQHandler
  691. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  692. <LI><a href="#[40]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART5_IRQHandler
  693. </UL>
  694. <P><STRONG><a name="[1f]"></a>CAN1_RX0_IRQHandler</STRONG> (Thumb, 542 bytes, Stack size 48 bytes, it.o(i.CAN1_RX0_IRQHandler))
  695. <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = CAN1_RX0_IRQHandler &rArr; Rec_Flash_Set &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  696. </UL>
  697. <BR>[Calls]<UL><LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Feed
  698. <LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SoftReset
  699. <LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetDShotValue
  700. <LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ResearchProtection
  701. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Rec_Flash_Set
  702. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Receive_Msg
  703. </UL>
  704. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  705. </UL>
  706. <P><STRONG><a name="[98]"></a>CAN1_Receive_Msg</STRONG> (Thumb, 64 bytes, Stack size 40 bytes, can.o(i.CAN1_Receive_Msg))
  707. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = CAN1_Receive_Msg &rArr; CAN_Receive
  708. </UL>
  709. <BR>[Calls]<UL><LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Receive
  710. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_MessagePending
  711. </UL>
  712. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_RX0_IRQHandler
  713. </UL>
  714. <P><STRONG><a name="[a0]"></a>CAN1_Send_Msg</STRONG> (Thumb, 92 bytes, Stack size 40 bytes, can.o(i.CAN1_Send_Msg))
  715. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = CAN1_Send_Msg &rArr; CAN_Transmit
  716. </UL>
  717. <BR>[Calls]<UL><LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_TransmitStatus
  718. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Transmit
  719. </UL>
  720. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Flash_Set
  721. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA6
  722. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA5
  723. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA4
  724. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA3
  725. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA2
  726. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA1
  727. </UL>
  728. <P><STRONG><a name="[a3]"></a>CAN_Config</STRONG> (Thumb, 64 bytes, Stack size 16 bytes, main.o(i.CAN_Config))
  729. <BR><BR>[Stack]<UL><LI>Max Depth = 92<LI>Call Chain = CAN_Config &rArr; CAN_Mod_Config &rArr; CAN_FilterInit
  730. </UL>
  731. <BR>[Calls]<UL><LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_NVIC_Config
  732. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Mod_Config
  733. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GPIO_Config
  734. </UL>
  735. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  736. </UL>
  737. <P><STRONG><a name="[a9]"></a>CAN_FilterInit</STRONG> (Thumb, 194 bytes, Stack size 20 bytes, stm32f4xx_can.o(i.CAN_FilterInit))
  738. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = CAN_FilterInit
  739. </UL>
  740. <BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Mod_Config
  741. </UL>
  742. <P><STRONG><a name="[a4]"></a>CAN_GPIO_Config</STRONG> (Thumb, 66 bytes, Stack size 32 bytes, can.o(i.CAN_GPIO_Config))
  743. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = CAN_GPIO_Config &rArr; GPIO_Init
  744. </UL>
  745. <BR>[Calls]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  746. <LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_PinAFConfig
  747. <LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  748. </UL>
  749. <BR>[Called By]<UL><LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Config
  750. </UL>
  751. <P><STRONG><a name="[aa]"></a>CAN_ITConfig</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_can.o(i.CAN_ITConfig))
  752. <BR><BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Mod_Config
  753. </UL>
  754. <P><STRONG><a name="[a8]"></a>CAN_Init</STRONG> (Thumb, 232 bytes, Stack size 8 bytes, stm32f4xx_can.o(i.CAN_Init))
  755. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN_Init
  756. </UL>
  757. <BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Mod_Config
  758. </UL>
  759. <P><STRONG><a name="[9e]"></a>CAN_MessagePending</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_can.o(i.CAN_MessagePending))
  760. <BR><BR>[Called By]<UL><LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Receive_Msg
  761. </UL>
  762. <P><STRONG><a name="[a6]"></a>CAN_Mod_Config</STRONG> (Thumb, 158 bytes, Stack size 56 bytes, can.o(i.CAN_Mod_Config))
  763. <BR><BR>[Stack]<UL><LI>Max Depth = 76<LI>Call Chain = CAN_Mod_Config &rArr; CAN_FilterInit
  764. </UL>
  765. <BR>[Calls]<UL><LI><a href="#[62]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_APB1PeriphClockCmd
  766. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Init
  767. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_ITConfig
  768. <LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_FilterInit
  769. </UL>
  770. <BR>[Called By]<UL><LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Config
  771. </UL>
  772. <P><STRONG><a name="[a5]"></a>CAN_NVIC_Config</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, can.o(i.CAN_NVIC_Config))
  773. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = CAN_NVIC_Config &rArr; NVIC_Init
  774. </UL>
  775. <BR>[Calls]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  776. </UL>
  777. <BR>[Called By]<UL><LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Config
  778. </UL>
  779. <P><STRONG><a name="[9f]"></a>CAN_Receive</STRONG> (Thumb, 142 bytes, Stack size 8 bytes, stm32f4xx_can.o(i.CAN_Receive))
  780. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN_Receive
  781. </UL>
  782. <BR>[Called By]<UL><LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Receive_Msg
  783. </UL>
  784. <P><STRONG><a name="[a1]"></a>CAN_Transmit</STRONG> (Thumb, 164 bytes, Stack size 12 bytes, stm32f4xx_can.o(i.CAN_Transmit))
  785. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = CAN_Transmit
  786. </UL>
  787. <BR>[Called By]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  788. </UL>
  789. <P><STRONG><a name="[a2]"></a>CAN_TransmitStatus</STRONG> (Thumb, 88 bytes, Stack size 0 bytes, stm32f4xx_can.o(i.CAN_TransmitStatus))
  790. <BR><BR>[Called By]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  791. </UL>
  792. <P><STRONG><a name="[16]"></a>DMA1_Stream0_IRQHandler</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, it.o(i.DMA1_Stream0_IRQHandler))
  793. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = DMA1_Stream0_IRQHandler &rArr; DMA_GetITStatus
  794. </UL>
  795. <BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  796. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearITPendingBit
  797. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetITStatus
  798. </UL>
  799. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  800. </UL>
  801. <P><STRONG><a name="[19]"></a>DMA1_Stream3_IRQHandler</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, it.o(i.DMA1_Stream3_IRQHandler))
  802. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = DMA1_Stream3_IRQHandler &rArr; DMA_GetITStatus
  803. </UL>
  804. <BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  805. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearITPendingBit
  806. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetITStatus
  807. </UL>
  808. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  809. </UL>
  810. <P><STRONG><a name="[1b]"></a>DMA1_Stream5_IRQHandler</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, it.o(i.DMA1_Stream5_IRQHandler))
  811. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = DMA1_Stream5_IRQHandler &rArr; DMA_GetITStatus
  812. </UL>
  813. <BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  814. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearITPendingBit
  815. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetITStatus
  816. </UL>
  817. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  818. </UL>
  819. <P><STRONG><a name="[43]"></a>DMA2_Stream0_IRQHandler</STRONG> (Thumb, 398 bytes, Stack size 48 bytes, it.o(i.DMA2_Stream0_IRQHandler))
  820. <BR><BR>[Stack]<UL><LI>Max Depth = 280<LI>Call Chain = DMA2_Stream0_IRQHandler &rArr; Get_Temperature &rArr; __hardfp_log &rArr; __kernel_poly &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  821. </UL>
  822. <BR>[Calls]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearITPendingBit
  823. <LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_f2d
  824. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  825. <LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  826. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  827. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetITStatus
  828. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetCurrentMemoryTarget
  829. <LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2f
  830. </UL>
  831. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  832. </UL>
  833. <P><STRONG><a name="[83]"></a>DMA_ClearITPendingBit</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_ClearITPendingBit))
  834. <BR><BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  835. <LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  836. <LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  837. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream5_IRQHandler
  838. <LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream3_IRQHandler
  839. <LI><a href="#[16]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream0_IRQHandler
  840. </UL>
  841. <P><STRONG><a name="[85]"></a>DMA_Cmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_Cmd))
  842. <BR><BR>[Called By]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pwmWriteDigital
  843. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  844. <LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  845. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream5_IRQHandler
  846. <LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream3_IRQHandler
  847. <LI><a href="#[16]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream0_IRQHandler
  848. </UL>
  849. <P><STRONG><a name="[b0]"></a>DMA_DeInit</STRONG> (Thumb, 272 bytes, Stack size 28 bytes, stm32f4xx_dma.o(i.DMA_DeInit))
  850. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = DMA_DeInit
  851. </UL>
  852. <BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  853. </UL>
  854. <P><STRONG><a name="[82]"></a>DMA_DoubleBufferModeCmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_DoubleBufferModeCmd))
  855. <BR><BR>[Called By]<UL><LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  856. </UL>
  857. <P><STRONG><a name="[81]"></a>DMA_DoubleBufferModeConfig</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_DoubleBufferModeConfig))
  858. <BR><BR>[Called By]<UL><LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  859. </UL>
  860. <P><STRONG><a name="[b1]"></a>DMA_GetCmdStatus</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_GetCmdStatus))
  861. <BR><BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  862. </UL>
  863. <P><STRONG><a name="[ac]"></a>DMA_GetCurrentMemoryTarget</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_GetCurrentMemoryTarget))
  864. <BR><BR>[Called By]<UL><LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  865. </UL>
  866. <P><STRONG><a name="[ab]"></a>DMA_GetITStatus</STRONG> (Thumb, 68 bytes, Stack size 12 bytes, stm32f4xx_dma.o(i.DMA_GetITStatus))
  867. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = DMA_GetITStatus
  868. </UL>
  869. <BR>[Called By]<UL><LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  870. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream5_IRQHandler
  871. <LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream3_IRQHandler
  872. <LI><a href="#[16]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Stream0_IRQHandler
  873. </UL>
  874. <P><STRONG><a name="[84]"></a>DMA_ITConfig</STRONG> (Thumb, 44 bytes, Stack size 0 bytes, stm32f4xx_dma.o(i.DMA_ITConfig))
  875. <BR><BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  876. <LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  877. </UL>
  878. <P><STRONG><a name="[80]"></a>DMA_Init</STRONG> (Thumb, 80 bytes, Stack size 12 bytes, stm32f4xx_dma.o(i.DMA_Init))
  879. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = DMA_Init
  880. </UL>
  881. <BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  882. <LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  883. </UL>
  884. <P><STRONG><a name="[af]"></a>DSHOT_DMA_Config</STRONG> (Thumb, 140 bytes, Stack size 88 bytes, dshot.o(i.DSHOT_DMA_Config))
  885. <BR><BR>[Stack]<UL><LI>Max Depth = 116<LI>Call Chain = DSHOT_DMA_Config &rArr; DMA_DeInit
  886. </UL>
  887. <BR>[Calls]<UL><LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_DMACmd
  888. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  889. <LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Init
  890. <LI><a href="#[84]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ITConfig
  891. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetCmdStatus
  892. <LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_DeInit
  893. <LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  894. <LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClearITPendingBit
  895. </UL>
  896. <BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_TIM10_IRQHandler
  897. </UL>
  898. <P><STRONG><a name="[b3]"></a>Dshot_Config</STRONG> (Thumb, 240 bytes, Stack size 48 bytes, main.o(i.Dshot_Config))
  899. <BR><BR>[Stack]<UL><LI>Max Depth = 116<LI>Call Chain = Dshot_Config &rArr; Dshot_TIM_Config &rArr; TIM_TimeBaseInit
  900. </UL>
  901. <BR>[Calls]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_NVIC_Config
  902. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Mod_Config
  903. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_TIM_Config
  904. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_NVIC_Config
  905. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_GPIO_Config
  906. </UL>
  907. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  908. </UL>
  909. <P><STRONG><a name="[b4]"></a>Dshot_GPIO_Config</STRONG> (Thumb, 66 bytes, Stack size 32 bytes, dshot.o(i.Dshot_GPIO_Config))
  910. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = Dshot_GPIO_Config &rArr; GPIO_Init
  911. </UL>
  912. <BR>[Calls]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  913. <LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_PinAFConfig
  914. <LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  915. </UL>
  916. <BR>[Called By]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_Config
  917. </UL>
  918. <P><STRONG><a name="[b6]"></a>Dshot_NVIC_Config</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, dshot.o(i.Dshot_NVIC_Config))
  919. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = Dshot_NVIC_Config &rArr; NVIC_Init
  920. </UL>
  921. <BR>[Calls]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  922. </UL>
  923. <BR>[Called By]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_Config
  924. </UL>
  925. <P><STRONG><a name="[b5]"></a>Dshot_TIM_Config</STRONG> (Thumb, 106 bytes, Stack size 56 bytes, dshot.o(i.Dshot_TIM_Config))
  926. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = Dshot_TIM_Config &rArr; TIM_TimeBaseInit
  927. </UL>
  928. <BR>[Calls]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_TimeBaseInit
  929. <LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Cmd
  930. <LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_ARRPreloadConfig
  931. </UL>
  932. <BR>[Called By]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_Config
  933. </UL>
  934. <P><STRONG><a name="[97]"></a>Equation</STRONG> (Thumb, 60 bytes, Stack size 0 bytes, main.o(i.Equation))
  935. <BR><BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  936. </UL>
  937. <P><STRONG><a name="[d4]"></a>FLASH_DataCacheCmd</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_flash.o(i.FLASH_DataCacheCmd))
  938. <BR><BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  939. </UL>
  940. <P><STRONG><a name="[ba]"></a>FLASH_EraseSector</STRONG> (Thumb, 104 bytes, Stack size 16 bytes, stm32f4xx_flash.o(i.FLASH_EraseSector))
  941. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = FLASH_EraseSector &rArr; FLASH_WaitForLastOperation
  942. </UL>
  943. <BR>[Calls]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  944. </UL>
  945. <BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  946. </UL>
  947. <P><STRONG><a name="[bd]"></a>FLASH_GetStatus</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, stm32f4xx_flash.o(i.FLASH_GetStatus))
  948. <BR><BR>[Called By]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  949. </UL>
  950. <P><STRONG><a name="[d6]"></a>FLASH_Lock</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_flash.o(i.FLASH_Lock))
  951. <BR><BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  952. </UL>
  953. <P><STRONG><a name="[bc]"></a>FLASH_ProgramWord</STRONG> (Thumb, 56 bytes, Stack size 16 bytes, stm32f4xx_flash.o(i.FLASH_ProgramWord))
  954. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = FLASH_ProgramWord &rArr; FLASH_WaitForLastOperation
  955. </UL>
  956. <BR>[Calls]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOperation
  957. </UL>
  958. <BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  959. </UL>
  960. <P><STRONG><a name="[d3]"></a>FLASH_Unlock</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_flash.o(i.FLASH_Unlock))
  961. <BR><BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  962. </UL>
  963. <P><STRONG><a name="[bb]"></a>FLASH_WaitForLastOperation</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, stm32f4xx_flash.o(i.FLASH_WaitForLastOperation))
  964. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = FLASH_WaitForLastOperation
  965. </UL>
  966. <BR>[Calls]<UL><LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_GetStatus
  967. </UL>
  968. <BR>[Called By]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ProgramWord
  969. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_EraseSector
  970. </UL>
  971. <P><STRONG><a name="[be]"></a>Flash_ReadInf</STRONG> (Thumb, 142 bytes, Stack size 8 bytes, main.o(i.Flash_ReadInf))
  972. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = Flash_ReadInf &rArr; Flash_WriteInf &rArr; STMFLASH_Write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOperation
  973. </UL>
  974. <BR>[Calls]<UL><LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_ReadWord
  975. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ReadFloatWord
  976. <LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_WriteInf
  977. </UL>
  978. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  979. </UL>
  980. <P><STRONG><a name="[c0]"></a>Flash_WriteInf</STRONG> (Thumb, 170 bytes, Stack size 8 bytes, main.o(i.Flash_WriteInf))
  981. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = Flash_WriteInf &rArr; STMFLASH_Write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOperation
  982. </UL>
  983. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  984. <LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Feed
  985. </UL>
  986. <BR>[Called By]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Updata_requre
  987. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_ReadInf
  988. </UL>
  989. <P><STRONG><a name="[c3]"></a>GPIO_Config</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, led.o(i.GPIO_Config))
  990. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = GPIO_Config &rArr; GPIO_Init
  991. </UL>
  992. <BR>[Calls]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  993. <LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  994. </UL>
  995. <BR>[Called By]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USBL_Config
  996. <LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Light_Config
  997. <LI><a href="#[cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;LED_Config
  998. </UL>
  999. <P><STRONG><a name="[86]"></a>GPIO_Init</STRONG> (Thumb, 120 bytes, Stack size 20 bytes, stm32f4xx_gpio.o(i.GPIO_Init))
  1000. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = GPIO_Init
  1001. </UL>
  1002. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GPIO_Config
  1003. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Config
  1004. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_GPIO_Config
  1005. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GPIO_Config
  1006. <LI><a href="#[7a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_GPIO_Config
  1007. </UL>
  1008. <P><STRONG><a name="[a7]"></a>GPIO_PinAFConfig</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, stm32f4xx_gpio.o(i.GPIO_PinAFConfig))
  1009. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = GPIO_PinAFConfig
  1010. </UL>
  1011. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GPIO_Config
  1012. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_GPIO_Config
  1013. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GPIO_Config
  1014. </UL>
  1015. <P><STRONG><a name="[e7]"></a>GPIO_ResetBits</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f4xx_gpio.o(i.GPIO_ResetBits))
  1016. <BR><BR>[Called By]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_500ms_Task
  1017. </UL>
  1018. <P><STRONG><a name="[e8]"></a>GPIO_SetBits</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, stm32f4xx_gpio.o(i.GPIO_SetBits))
  1019. <BR><BR>[Called By]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_500ms_Task
  1020. </UL>
  1021. <P><STRONG><a name="[e6]"></a>GPIO_ToggleBits</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f4xx_gpio.o(i.GPIO_ToggleBits))
  1022. <BR><BR>[Called By]<UL><LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_500ms_Task
  1023. </UL>
  1024. <P><STRONG><a name="[9d]"></a>GetDShotValue</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, main.o(i.GetDShotValue))
  1025. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = GetDShotValue &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1026. </UL>
  1027. <BR>[Calls]<UL><LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_i2d
  1028. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1029. <LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2iz
  1030. </UL>
  1031. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_RX0_IRQHandler
  1032. </UL>
  1033. <P><STRONG><a name="[c4]"></a>GetMotorData</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, main.o(i.GetMotorData))
  1034. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = GetMotorData
  1035. </UL>
  1036. <BR>[Calls]<UL><LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ReceiveData
  1037. </UL>
  1038. <BR>[Called By]<UL><LI><a href="#[52]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART6_IRQHandler
  1039. <LI><a href="#[32]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART3_IRQHandler
  1040. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  1041. <LI><a href="#[40]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART5_IRQHandler
  1042. </UL>
  1043. <P><STRONG><a name="[ae]"></a>Get_Temperature</STRONG> (Thumb, 188 bytes, Stack size 32 bytes, ntc.o(i.Get_Temperature))
  1044. <BR><BR>[Stack]<UL><LI>Max Depth = 232<LI>Call Chain = Get_Temperature &rArr; __hardfp_log &rArr; __kernel_poly &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1045. </UL>
  1046. <BR>[Calls]<UL><LI><a href="#[72]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ui2d
  1047. <LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_f2d
  1048. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dsub
  1049. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1050. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  1051. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_drsub
  1052. <LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  1053. <LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2f
  1054. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  1055. </UL>
  1056. <BR>[Called By]<UL><LI><a href="#[43]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA2_Stream0_IRQHandler
  1057. </UL>
  1058. <P><STRONG><a name="[3]"></a>HardFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, it.o(i.HardFault_Handler))
  1059. <BR><BR>[Calls]<UL><LI><a href="#[3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HardFault_Handler
  1060. </UL>
  1061. <BR>[Called By]<UL><LI><a href="#[3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HardFault_Handler
  1062. </UL>
  1063. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1064. </UL>
  1065. <P><STRONG><a name="[c7]"></a>IWDG_Config</STRONG> (Thumb, 38 bytes, Stack size 16 bytes, iwag.o(i.IWDG_Config))
  1066. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = IWDG_Config
  1067. </UL>
  1068. <BR>[Calls]<UL><LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_WriteAccessCmd
  1069. <LI><a href="#[ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_SetReload
  1070. <LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_SetPrescaler
  1071. <LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_ReloadCounter
  1072. </UL>
  1073. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1074. </UL>
  1075. <P><STRONG><a name="[111]"></a>IWDG_Enable</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, stm32f4xx_iwdg.o(i.IWDG_Enable), UNUSED)
  1076. <P><STRONG><a name="[9b]"></a>IWDG_Feed</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, iwag.o(i.IWDG_Feed))
  1077. <BR><BR>[Called By]<UL><LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_WriteInf
  1078. <LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_RX0_IRQHandler
  1079. </UL>
  1080. <P><STRONG><a name="[cb]"></a>IWDG_ReloadCounter</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, stm32f4xx_iwdg.o(i.IWDG_ReloadCounter))
  1081. <BR><BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Config
  1082. </UL>
  1083. <P><STRONG><a name="[c9]"></a>IWDG_SetPrescaler</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f4xx_iwdg.o(i.IWDG_SetPrescaler))
  1084. <BR><BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Config
  1085. </UL>
  1086. <P><STRONG><a name="[ca]"></a>IWDG_SetReload</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f4xx_iwdg.o(i.IWDG_SetReload))
  1087. <BR><BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Config
  1088. </UL>
  1089. <P><STRONG><a name="[c8]"></a>IWDG_WriteAccessCmd</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f4xx_iwdg.o(i.IWDG_WriteAccessCmd))
  1090. <BR><BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Config
  1091. </UL>
  1092. <P><STRONG><a name="[cc]"></a>LED_Config</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, main.o(i.LED_Config))
  1093. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = LED_Config &rArr; GPIO_Config &rArr; GPIO_Init
  1094. </UL>
  1095. <BR>[Calls]<UL><LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Config
  1096. </UL>
  1097. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1098. </UL>
  1099. <P><STRONG><a name="[cd]"></a>Light_Config</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, main.o(i.Light_Config))
  1100. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = Light_Config &rArr; GPIO_Config &rArr; GPIO_Init
  1101. </UL>
  1102. <BR>[Calls]<UL><LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Config
  1103. </UL>
  1104. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1105. </UL>
  1106. <P><STRONG><a name="[101]"></a>Micros</STRONG> (Thumb, 50 bytes, Stack size 8 bytes, delay.o(i.Micros))
  1107. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = Micros
  1108. </UL>
  1109. <BR>[Called By]<UL><LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_ms
  1110. </UL>
  1111. <P><STRONG><a name="[ce]"></a>Motor_AD_correct</STRONG> (Thumb, 182 bytes, Stack size 24 bytes, main.o(i.Motor_AD_correct))
  1112. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = Motor_AD_correct &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1113. </UL>
  1114. <BR>[Calls]<UL><LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1115. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  1116. </UL>
  1117. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1118. </UL>
  1119. <P><STRONG><a name="[e4]"></a>Motor_Control</STRONG> (Thumb, 300 bytes, Stack size 16 bytes, main.o(i.Motor_Control))
  1120. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = Motor_Control
  1121. </UL>
  1122. <BR>[Called By]<UL><LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_20ms_Task
  1123. </UL>
  1124. <P><STRONG><a name="[cf]"></a>Motor_Stall_check</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, main.o(i.Motor_Stall_check))
  1125. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = Motor_Stall_check &rArr; Stall_check &rArr; __aeabi_dsub &rArr; __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  1126. </UL>
  1127. <BR>[Calls]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Stall_check
  1128. </UL>
  1129. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1130. </UL>
  1131. <P><STRONG><a name="[8e]"></a>NVIC_Init</STRONG> (Thumb, 96 bytes, Stack size 12 bytes, misc.o(i.NVIC_Init))
  1132. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = NVIC_Init
  1133. </UL>
  1134. <BR>[Called By]<UL><LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_NVIC_Config
  1135. <LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_NVIC_Config
  1136. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_NVIC_Config
  1137. <LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_NVIC_Config
  1138. <LI><a href="#[7c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_NVIC_Config
  1139. </UL>
  1140. <P><STRONG><a name="[103]"></a>NVIC_PriorityGroupConfig</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, misc.o(i.NVIC_PriorityGroupConfig))
  1141. <BR><BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1142. </UL>
  1143. <P><STRONG><a name="[d1]"></a>Other_Task</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, main.o(i.Other_Task))
  1144. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = Other_Task &rArr; Send_Updata_requre &rArr; Flash_WriteInf &rArr; STMFLASH_Write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOperation
  1145. </UL>
  1146. <BR>[Calls]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Updata_requre
  1147. </UL>
  1148. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1149. </UL>
  1150. <P><STRONG><a name="[7f]"></a>RCC_AHB1PeriphClockCmd</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd))
  1151. <BR><BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  1152. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GPIO_Config
  1153. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Config
  1154. <LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_GPIO_Config
  1155. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GPIO_Config
  1156. <LI><a href="#[7a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_GPIO_Config
  1157. <LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_DMA_Config
  1158. </UL>
  1159. <P><STRONG><a name="[62]"></a>RCC_APB1PeriphClockCmd</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd))
  1160. <BR><BR>[Called By]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Mod_Config
  1161. </UL>
  1162. <BR>[Address Reference Count : 3]<UL><LI> main.o(i.ADC_Config)
  1163. <LI> main.o(i.Dshot_Config)
  1164. <LI> main.o(i.USART_Config)
  1165. </UL>
  1166. <P><STRONG><a name="[65]"></a>RCC_APB2PeriphClockCmd</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd))
  1167. <BR><BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  1168. </UL>
  1169. <BR>[Address Reference Count : 2]<UL><LI> main.o(i.Dshot_Config)
  1170. <LI> main.o(i.USART_Config)
  1171. </UL>
  1172. <P><STRONG><a name="[87]"></a>RCC_APB2PeriphResetCmd</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd))
  1173. <BR><BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Mode_Config
  1174. </UL>
  1175. <P><STRONG><a name="[f5]"></a>RCC_GetClocksFreq</STRONG> (Thumb, 132 bytes, Stack size 16 bytes, stm32f4xx_rcc.o(i.RCC_GetClocksFreq))
  1176. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = RCC_GetClocksFreq
  1177. </UL>
  1178. <BR>[Called By]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Init
  1179. <LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;cycleCounterInit
  1180. </UL>
  1181. <P><STRONG><a name="[c1]"></a>ReadFloatWord</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, flash.o(i.ReadFloatWord))
  1182. <BR><BR>[Called By]<UL><LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_ReadInf
  1183. </UL>
  1184. <P><STRONG><a name="[99]"></a>Rec_Flash_Set</STRONG> (Thumb, 196 bytes, Stack size 32 bytes, can.o(i.Rec_Flash_Set))
  1185. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = Rec_Flash_Set &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1186. </UL>
  1187. <BR>[Calls]<UL><LI><a href="#[72]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ui2d
  1188. <LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_i2d
  1189. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1190. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  1191. <LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2f
  1192. </UL>
  1193. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_RX0_IRQHandler
  1194. </UL>
  1195. <P><STRONG><a name="[9c]"></a>ResearchProtection</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, it.o(i.ResearchProtection))
  1196. <BR><BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_RX0_IRQHandler
  1197. </UL>
  1198. <P><STRONG><a name="[d5]"></a>STMFLASH_GetFlashSector</STRONG> (Thumb, 114 bytes, Stack size 0 bytes, flash.o(i.STMFLASH_GetFlashSector))
  1199. <BR><BR>[Called By]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_Write
  1200. </UL>
  1201. <P><STRONG><a name="[bf]"></a>STMFLASH_ReadWord</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, flash.o(i.STMFLASH_ReadWord))
  1202. <BR><BR>[Called By]<UL><LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_ReadInf
  1203. </UL>
  1204. <P><STRONG><a name="[c2]"></a>STMFLASH_Write</STRONG> (Thumb, 122 bytes, Stack size 24 bytes, flash.o(i.STMFLASH_Write))
  1205. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = STMFLASH_Write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOperation
  1206. </UL>
  1207. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Unlock
  1208. <LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ProgramWord
  1209. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Lock
  1210. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_EraseSector
  1211. <LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_DataCacheCmd
  1212. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;STMFLASH_GetFlashSector
  1213. </UL>
  1214. <BR>[Called By]<UL><LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_WriteInf
  1215. </UL>
  1216. <P><STRONG><a name="[d7]"></a>Send_CAN_DATA1</STRONG> (Thumb, 96 bytes, Stack size 8 bytes, can.o(i.Send_CAN_DATA1))
  1217. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = Send_CAN_DATA1 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1218. </UL>
  1219. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1220. </UL>
  1221. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1222. </UL>
  1223. <P><STRONG><a name="[d8]"></a>Send_CAN_DATA2</STRONG> (Thumb, 58 bytes, Stack size 8 bytes, can.o(i.Send_CAN_DATA2))
  1224. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = Send_CAN_DATA2 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1225. </UL>
  1226. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1227. </UL>
  1228. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1229. </UL>
  1230. <P><STRONG><a name="[d9]"></a>Send_CAN_DATA3</STRONG> (Thumb, 78 bytes, Stack size 8 bytes, can.o(i.Send_CAN_DATA3))
  1231. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = Send_CAN_DATA3 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1232. </UL>
  1233. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1234. </UL>
  1235. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1236. </UL>
  1237. <P><STRONG><a name="[da]"></a>Send_CAN_DATA4</STRONG> (Thumb, 78 bytes, Stack size 8 bytes, can.o(i.Send_CAN_DATA4))
  1238. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = Send_CAN_DATA4 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1239. </UL>
  1240. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1241. </UL>
  1242. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1243. </UL>
  1244. <P><STRONG><a name="[db]"></a>Send_CAN_DATA5</STRONG> (Thumb, 112 bytes, Stack size 0 bytes, can.o(i.Send_CAN_DATA5))
  1245. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = Send_CAN_DATA5 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1246. </UL>
  1247. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1248. </UL>
  1249. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1250. </UL>
  1251. <P><STRONG><a name="[dc]"></a>Send_CAN_DATA6</STRONG> (Thumb, 68 bytes, Stack size 8 bytes, can.o(i.Send_CAN_DATA6))
  1252. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = Send_CAN_DATA6 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1253. </UL>
  1254. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1255. </UL>
  1256. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1257. </UL>
  1258. <P><STRONG><a name="[dd]"></a>Send_Flash_Set</STRONG> (Thumb, 126 bytes, Stack size 0 bytes, can.o(i.Send_Flash_Set))
  1259. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = Send_Flash_Set &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1260. </UL>
  1261. <BR>[Calls]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_Send_Msg
  1262. </UL>
  1263. <BR>[Called By]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Updata_requre
  1264. <LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Pixhawk_requre
  1265. </UL>
  1266. <P><STRONG><a name="[de]"></a>Send_Pixhawk_requre</STRONG> (Thumb, 154 bytes, Stack size 8 bytes, main.o(i.Send_Pixhawk_requre))
  1267. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = Send_Pixhawk_requre &rArr; Send_Flash_Set &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1268. </UL>
  1269. <BR>[Calls]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Flash_Set
  1270. </UL>
  1271. <BR>[Called By]<UL><LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_10ms_Task
  1272. </UL>
  1273. <P><STRONG><a name="[d2]"></a>Send_Updata_requre</STRONG> (Thumb, 156 bytes, Stack size 8 bytes, main.o(i.Send_Updata_requre))
  1274. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = Send_Updata_requre &rArr; Flash_WriteInf &rArr; STMFLASH_Write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOperation
  1275. </UL>
  1276. <BR>[Calls]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Flash_Set
  1277. <LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_WriteInf
  1278. </UL>
  1279. <BR>[Called By]<UL><LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Other_Task
  1280. </UL>
  1281. <P><STRONG><a name="[94]"></a>Single_Motor_Config</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, main.o(i.Single_Motor_Config))
  1282. <BR><BR>[Called By]<UL><LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;All_motor_Config
  1283. </UL>
  1284. <P><STRONG><a name="[9a]"></a>SoftReset</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, main.o(i.SoftReset))
  1285. <BR><BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_RX0_IRQHandler
  1286. </UL>
  1287. <P><STRONG><a name="[d0]"></a>Stall_check</STRONG> (Thumb, 410 bytes, Stack size 40 bytes, main.o(i.Stall_check))
  1288. <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = Stall_check &rArr; __aeabi_dsub &rArr; __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  1289. </UL>
  1290. <BR>[Calls]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_f2d
  1291. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dsub
  1292. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1293. <LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_cdrcmple
  1294. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_cdcmple
  1295. </UL>
  1296. <BR>[Called By]<UL><LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Motor_Stall_check
  1297. </UL>
  1298. <P><STRONG><a name="[e1]"></a>SysTick_100ms_Task</STRONG> (Thumb, 84 bytes, Stack size 8 bytes, main.o(i.SysTick_100ms_Task))
  1299. <BR><BR>[Stack]<UL><LI>Max Depth = 68<LI>Call Chain = SysTick_100ms_Task &rArr; Send_CAN_DATA6 &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1300. </UL>
  1301. <BR>[Calls]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA6
  1302. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA5
  1303. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA4
  1304. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA3
  1305. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA2
  1306. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_CAN_DATA1
  1307. </UL>
  1308. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1309. </UL>
  1310. <P><STRONG><a name="[e2]"></a>SysTick_10ms_Task</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, main.o(i.SysTick_10ms_Task))
  1311. <BR><BR>[Stack]<UL><LI>Max Depth = 60<LI>Call Chain = SysTick_10ms_Task &rArr; Send_Pixhawk_requre &rArr; Send_Flash_Set &rArr; CAN1_Send_Msg &rArr; CAN_Transmit
  1312. </UL>
  1313. <BR>[Calls]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Send_Pixhawk_requre
  1314. </UL>
  1315. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1316. </UL>
  1317. <P><STRONG><a name="[e3]"></a>SysTick_20ms_Task</STRONG> (Thumb, 50 bytes, Stack size 4 bytes, main.o(i.SysTick_20ms_Task))
  1318. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = SysTick_20ms_Task &rArr; Motor_Control
  1319. </UL>
  1320. <BR>[Calls]<UL><LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Motor_Control
  1321. </UL>
  1322. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1323. </UL>
  1324. <P><STRONG><a name="[e5]"></a>SysTick_500ms_Task</STRONG> (Thumb, 84 bytes, Stack size 16 bytes, main.o(i.SysTick_500ms_Task))
  1325. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = SysTick_500ms_Task
  1326. </UL>
  1327. <BR>[Calls]<UL><LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ToggleBits
  1328. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetBits
  1329. <LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetBits
  1330. </UL>
  1331. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1332. </UL>
  1333. <P><STRONG><a name="[a]"></a>SysTick_Handler</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, it.o(i.SysTick_Handler))
  1334. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1335. </UL>
  1336. <P><STRONG><a name="[5e]"></a>SystemInit</STRONG> (Thumb, 74 bytes, Stack size 8 bytes, system_stm32f4xx.o(i.SystemInit))
  1337. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = SystemInit &rArr; SetSysClock
  1338. </UL>
  1339. <BR>[Calls]<UL><LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClock
  1340. </UL>
  1341. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(.text)
  1342. </UL>
  1343. <P><STRONG><a name="[24]"></a>TIM1_UP_TIM10_IRQHandler</STRONG> (Thumb, 202 bytes, Stack size 32 bytes, it.o(i.TIM1_UP_TIM10_IRQHandler))
  1344. <BR><BR>[Stack]<UL><LI>Max Depth = 148<LI>Call Chain = TIM1_UP_TIM10_IRQHandler &rArr; DSHOT_DMA_Config &rArr; DMA_DeInit
  1345. </UL>
  1346. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pwmWriteDigital
  1347. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  1348. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_GetITStatus
  1349. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_ClearITPendingBit
  1350. </UL>
  1351. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1352. </UL>
  1353. <P><STRONG><a name="[b9]"></a>TIM_ARRPreloadConfig</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_ARRPreloadConfig))
  1354. <BR><BR>[Called By]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Mod_Config
  1355. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_TIM_Config
  1356. </UL>
  1357. <P><STRONG><a name="[eb]"></a>TIM_ClearITPendingBit</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_ClearITPendingBit))
  1358. <BR><BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_TIM10_IRQHandler
  1359. </UL>
  1360. <P><STRONG><a name="[92]"></a>TIM_Cmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_Cmd))
  1361. <BR><BR>[Called By]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Mod_Config
  1362. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_TIM_Config
  1363. <LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_TIM_Config
  1364. </UL>
  1365. <P><STRONG><a name="[90]"></a>TIM_CtrlPWMOutputs</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_CtrlPWMOutputs))
  1366. <BR><BR>[Called By]<UL><LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_TIM_Config
  1367. </UL>
  1368. <P><STRONG><a name="[b2]"></a>TIM_DMACmd</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_DMACmd))
  1369. <BR><BR>[Called By]<UL><LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DSHOT_DMA_Config
  1370. </UL>
  1371. <P><STRONG><a name="[ea]"></a>TIM_GetITStatus</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_GetITStatus))
  1372. <BR><BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_TIM10_IRQHandler
  1373. </UL>
  1374. <P><STRONG><a name="[ed]"></a>TIM_ITConfig</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_ITConfig))
  1375. <BR><BR>[Called By]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Mod_Config
  1376. </UL>
  1377. <P><STRONG><a name="[b7]"></a>TIM_Mod_Config</STRONG> (Thumb, 78 bytes, Stack size 32 bytes, time.o(i.TIM_Mod_Config))
  1378. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = TIM_Mod_Config &rArr; TIM_TimeBaseInit
  1379. </UL>
  1380. <BR>[Calls]<UL><LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_TimeBaseInit
  1381. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_SelectOutputTrigger
  1382. <LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_ITConfig
  1383. <LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Cmd
  1384. <LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_ARRPreloadConfig
  1385. </UL>
  1386. <BR>[Called By]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_Config
  1387. </UL>
  1388. <P><STRONG><a name="[b8]"></a>TIM_NVIC_Config</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, time.o(i.TIM_NVIC_Config))
  1389. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = TIM_NVIC_Config &rArr; NVIC_Init
  1390. </UL>
  1391. <BR>[Calls]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  1392. </UL>
  1393. <BR>[Called By]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_Config
  1394. </UL>
  1395. <P><STRONG><a name="[61]"></a>TIM_OC1Init</STRONG> (Thumb, 88 bytes, Stack size 12 bytes, stm32f4xx_tim.o(i.TIM_OC1Init))
  1396. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = TIM_OC1Init
  1397. </UL>
  1398. <BR>[Address Reference Count : 2]<UL><LI> main.o(i.ADC_Config)
  1399. <LI> main.o(i.Dshot_Config)
  1400. </UL>
  1401. <P><STRONG><a name="[60]"></a>TIM_OC1PreloadConfig</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_OC1PreloadConfig))
  1402. <BR>[Address Reference Count : 2]<UL><LI> main.o(i.ADC_Config)
  1403. <LI> main.o(i.Dshot_Config)
  1404. </UL>
  1405. <P><STRONG><a name="[64]"></a>TIM_OC2Init</STRONG> (Thumb, 120 bytes, Stack size 16 bytes, stm32f4xx_tim.o(i.TIM_OC2Init))
  1406. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = TIM_OC2Init
  1407. </UL>
  1408. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.Dshot_Config)
  1409. </UL>
  1410. <P><STRONG><a name="[63]"></a>TIM_OC2PreloadConfig</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_OC2PreloadConfig))
  1411. <BR>[Address Reference Count : 1]<UL><LI> main.o(i.Dshot_Config)
  1412. </UL>
  1413. <P><STRONG><a name="[91]"></a>TIM_SelectOutputTrigger</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_tim.o(i.TIM_SelectOutputTrigger))
  1414. <BR><BR>[Called By]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Mod_Config
  1415. <LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_TIM_Config
  1416. </UL>
  1417. <P><STRONG><a name="[8f]"></a>TIM_TimeBaseInit</STRONG> (Thumb, 96 bytes, Stack size 12 bytes, stm32f4xx_tim.o(i.TIM_TimeBaseInit))
  1418. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = TIM_TimeBaseInit
  1419. </UL>
  1420. <BR>[Called By]<UL><LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_Mod_Config
  1421. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_TIM_Config
  1422. <LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_TIM_Config
  1423. </UL>
  1424. <P><STRONG><a name="[40]"></a>UART5_IRQHandler</STRONG> (Thumb, 68 bytes, Stack size 16 bytes, it.o(i.UART5_IRQHandler))
  1425. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = UART5_IRQHandler &rArr; AnaMotorData &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1426. </UL>
  1427. <BR>[Calls]<UL><LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetMotorData
  1428. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  1429. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetITStatus
  1430. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ClearITPendingBit
  1431. </UL>
  1432. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1433. </UL>
  1434. <P><STRONG><a name="[31]"></a>USART2_IRQHandler</STRONG> (Thumb, 72 bytes, Stack size 16 bytes, it.o(i.USART2_IRQHandler))
  1435. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = USART2_IRQHandler &rArr; AnaMotorData &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1436. </UL>
  1437. <BR>[Calls]<UL><LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetMotorData
  1438. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  1439. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetITStatus
  1440. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ClearITPendingBit
  1441. </UL>
  1442. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1443. </UL>
  1444. <P><STRONG><a name="[32]"></a>USART3_IRQHandler</STRONG> (Thumb, 72 bytes, Stack size 16 bytes, it.o(i.USART3_IRQHandler))
  1445. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = USART3_IRQHandler &rArr; AnaMotorData &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1446. </UL>
  1447. <BR>[Calls]<UL><LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetMotorData
  1448. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  1449. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetITStatus
  1450. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ClearITPendingBit
  1451. </UL>
  1452. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1453. </UL>
  1454. <P><STRONG><a name="[52]"></a>USART6_IRQHandler</STRONG> (Thumb, 72 bytes, Stack size 16 bytes, it.o(i.USART6_IRQHandler))
  1455. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = USART6_IRQHandler &rArr; AnaMotorData &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1456. </UL>
  1457. <BR>[Calls]<UL><LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetMotorData
  1458. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  1459. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetITStatus
  1460. <LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ClearITPendingBit
  1461. </UL>
  1462. <BR>[Address Reference Count : 1]<UL><LI> startup_stm32f40_41xxx.o(RESET)
  1463. </UL>
  1464. <P><STRONG><a name="[ef]"></a>USART_ClearITPendingBit</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_usart.o(i.USART_ClearITPendingBit))
  1465. <BR><BR>[Called By]<UL><LI><a href="#[52]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART6_IRQHandler
  1466. <LI><a href="#[32]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART3_IRQHandler
  1467. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  1468. <LI><a href="#[40]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART5_IRQHandler
  1469. </UL>
  1470. <P><STRONG><a name="[f7]"></a>USART_Cmd</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, stm32f4xx_usart.o(i.USART_Cmd))
  1471. <BR><BR>[Called By]<UL><LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_MOD_Config
  1472. </UL>
  1473. <P><STRONG><a name="[f0]"></a>USART_Config</STRONG> (Thumb, 174 bytes, Stack size 16 bytes, main.o(i.USART_Config))
  1474. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = USART_Config &rArr; USART_MOD_Config &rArr; USART_Init &rArr; RCC_GetClocksFreq
  1475. </UL>
  1476. <BR>[Calls]<UL><LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_NVIC_Config
  1477. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_MOD_Config
  1478. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GPIO_Config
  1479. </UL>
  1480. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1481. </UL>
  1482. <P><STRONG><a name="[f1]"></a>USART_GPIO_Config</STRONG> (Thumb, 64 bytes, Stack size 32 bytes, usart.o(i.USART_GPIO_Config))
  1483. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = USART_GPIO_Config &rArr; GPIO_Init
  1484. </UL>
  1485. <BR>[Calls]<UL><LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_AHB1PeriphClockCmd
  1486. <LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_PinAFConfig
  1487. <LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Init
  1488. </UL>
  1489. <BR>[Called By]<UL><LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Config
  1490. </UL>
  1491. <P><STRONG><a name="[ee]"></a>USART_GetITStatus</STRONG> (Thumb, 62 bytes, Stack size 16 bytes, stm32f4xx_usart.o(i.USART_GetITStatus))
  1492. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = USART_GetITStatus
  1493. </UL>
  1494. <BR>[Called By]<UL><LI><a href="#[52]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART6_IRQHandler
  1495. <LI><a href="#[32]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART3_IRQHandler
  1496. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  1497. <LI><a href="#[40]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;UART5_IRQHandler
  1498. </UL>
  1499. <P><STRONG><a name="[f6]"></a>USART_ITConfig</STRONG> (Thumb, 48 bytes, Stack size 8 bytes, stm32f4xx_usart.o(i.USART_ITConfig))
  1500. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = USART_ITConfig
  1501. </UL>
  1502. <BR>[Called By]<UL><LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_MOD_Config
  1503. </UL>
  1504. <P><STRONG><a name="[f4]"></a>USART_Init</STRONG> (Thumb, 164 bytes, Stack size 32 bytes, stm32f4xx_usart.o(i.USART_Init))
  1505. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = USART_Init &rArr; RCC_GetClocksFreq
  1506. </UL>
  1507. <BR>[Calls]<UL><LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_GetClocksFreq
  1508. </UL>
  1509. <BR>[Called By]<UL><LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_MOD_Config
  1510. </UL>
  1511. <P><STRONG><a name="[f3]"></a>USART_MOD_Config</STRONG> (Thumb, 84 bytes, Stack size 32 bytes, usart.o(i.USART_MOD_Config))
  1512. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = USART_MOD_Config &rArr; USART_Init &rArr; RCC_GetClocksFreq
  1513. </UL>
  1514. <BR>[Calls]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Init
  1515. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ITConfig
  1516. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Cmd
  1517. </UL>
  1518. <BR>[Called By]<UL><LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Config
  1519. </UL>
  1520. <P><STRONG><a name="[f2]"></a>USART_NVIC_Config</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, usart.o(i.USART_NVIC_Config))
  1521. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = USART_NVIC_Config &rArr; NVIC_Init
  1522. </UL>
  1523. <BR>[Calls]<UL><LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  1524. </UL>
  1525. <BR>[Called By]<UL><LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Config
  1526. </UL>
  1527. <P><STRONG><a name="[c5]"></a>USART_ReceiveData</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, stm32f4xx_usart.o(i.USART_ReceiveData))
  1528. <BR><BR>[Called By]<UL><LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GetMotorData
  1529. </UL>
  1530. <P><STRONG><a name="[f8]"></a>USBL_Config</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, main.o(i.USBL_Config))
  1531. <BR><BR>[Stack]<UL><LI>Max Depth = 44<LI>Call Chain = USBL_Config &rArr; GPIO_Config &rArr; GPIO_Init
  1532. </UL>
  1533. <BR>[Calls]<UL><LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_Config
  1534. </UL>
  1535. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1536. </UL>
  1537. <P><STRONG><a name="[c6]"></a>__hardfp_log</STRONG> (Thumb, 872 bytes, Stack size 88 bytes, log.o(i.__hardfp_log))
  1538. <BR><BR>[Stack]<UL><LI>Max Depth = 200<LI>Call Chain = __hardfp_log &rArr; __kernel_poly &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1539. </UL>
  1540. <BR>[Calls]<UL><LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_i2d
  1541. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dsub
  1542. <LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1543. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  1544. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_drsub
  1545. <LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  1546. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_cdcmpeq
  1547. <LI><a href="#[fa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  1548. <LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__kernel_poly
  1549. <LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_dbl_invalid
  1550. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_dbl_infnan
  1551. <LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_dbl_divzero
  1552. </UL>
  1553. <BR>[Called By]<UL><LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Temperature
  1554. </UL>
  1555. <P><STRONG><a name="[fe]"></a>__kernel_poly</STRONG> (Thumb, 248 bytes, Stack size 24 bytes, poly.o(i.__kernel_poly))
  1556. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = __kernel_poly &rArr; __aeabi_dmul &rArr; _double_epilogue &rArr; _double_round
  1557. </UL>
  1558. <BR>[Calls]<UL><LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  1559. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  1560. </UL>
  1561. <BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  1562. </UL>
  1563. <P><STRONG><a name="[fc]"></a>__mathlib_dbl_divzero</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_divzero))
  1564. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = __mathlib_dbl_divzero &rArr; __aeabi_ddiv &rArr; _double_round
  1565. </UL>
  1566. <BR>[Calls]<UL><LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  1567. </UL>
  1568. <BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  1569. </UL>
  1570. <P><STRONG><a name="[f9]"></a>__mathlib_dbl_infnan</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_infnan))
  1571. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = __mathlib_dbl_infnan &rArr; __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  1572. </UL>
  1573. <BR>[Calls]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  1574. </UL>
  1575. <BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  1576. </UL>
  1577. <P><STRONG><a name="[fb]"></a>__mathlib_dbl_invalid</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_invalid))
  1578. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = __mathlib_dbl_invalid &rArr; __aeabi_ddiv &rArr; _double_round
  1579. </UL>
  1580. <BR>[Calls]<UL><LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  1581. </UL>
  1582. <BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  1583. </UL>
  1584. <P><STRONG><a name="[112]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
  1585. <P><STRONG><a name="[113]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
  1586. <P><STRONG><a name="[114]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
  1587. <P><STRONG><a name="[fa]"></a>__set_errno</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, errno.o(i.__set_errno))
  1588. <BR><BR>[Called By]<UL><LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_log
  1589. </UL>
  1590. <P><STRONG><a name="[104]"></a>add_checksum_and_telemetry</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, dshot.o(i.add_checksum_and_telemetry))
  1591. <BR><BR>[Called By]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pwmWriteDigital
  1592. </UL>
  1593. <P><STRONG><a name="[ff]"></a>cycleCounterInit</STRONG> (Thumb, 62 bytes, Stack size 24 bytes, delay.o(i.cycleCounterInit))
  1594. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = cycleCounterInit &rArr; RCC_GetClocksFreq
  1595. </UL>
  1596. <BR>[Calls]<UL><LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_GetClocksFreq
  1597. </UL>
  1598. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1599. </UL>
  1600. <P><STRONG><a name="[100]"></a>delay_ms</STRONG> (Thumb, 32 bytes, Stack size 12 bytes, delay.o(i.delay_ms))
  1601. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = delay_ms &rArr; Micros
  1602. </UL>
  1603. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Micros
  1604. </UL>
  1605. <BR>[Called By]<UL><LI><a href="#[5d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  1606. </UL>
  1607. <P><STRONG><a name="[96]"></a>get_crc8</STRONG> (Thumb, 32 bytes, Stack size 16 bytes, main.o(i.get_crc8))
  1608. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = get_crc8
  1609. </UL>
  1610. <BR>[Calls]<UL><LI><a href="#[102]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;update_crc8
  1611. </UL>
  1612. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AnaMotorData
  1613. </UL>
  1614. <P><STRONG><a name="[5d]"></a>main</STRONG> (Thumb, 96 bytes, Stack size 0 bytes, main.o(i.main))
  1615. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = main &rArr; Motor_Stall_check &rArr; Stall_check &rArr; __aeabi_dsub &rArr; __aeabi_dadd &rArr; _double_epilogue &rArr; _double_round
  1616. </UL>
  1617. <BR>[Calls]<UL><LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;delay_ms
  1618. <LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;cycleCounterInit
  1619. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_PriorityGroupConfig
  1620. <LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;IWDG_Config
  1621. <LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USBL_Config
  1622. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Config
  1623. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_500ms_Task
  1624. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_20ms_Task
  1625. <LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_10ms_Task
  1626. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_100ms_Task
  1627. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Other_Task
  1628. <LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Motor_Stall_check
  1629. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Motor_AD_correct
  1630. <LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Light_Config
  1631. <LI><a href="#[cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;LED_Config
  1632. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Flash_ReadInf
  1633. <LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Dshot_Config
  1634. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Config
  1635. <LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;All_motor_Config
  1636. <LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC_Config
  1637. </UL>
  1638. <BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
  1639. </UL>
  1640. <P><STRONG><a name="[ec]"></a>pwmWriteDigital</STRONG> (Thumb, 228 bytes, Stack size 16 bytes, dshot.o(i.pwmWriteDigital))
  1641. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = pwmWriteDigital
  1642. </UL>
  1643. <BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_Cmd
  1644. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;add_checksum_and_telemetry
  1645. </UL>
  1646. <BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_TIM10_IRQHandler
  1647. </UL>
  1648. <P><STRONG><a name="[102]"></a>update_crc8</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, main.o(i.update_crc8))
  1649. <BR><BR>[Called By]<UL><LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;get_crc8
  1650. </UL>
  1651. <P>
  1652. <H3>
  1653. Local Symbols
  1654. </H3>
  1655. <P><STRONG><a name="[e9]"></a>SetSysClock</STRONG> (Thumb, 162 bytes, Stack size 12 bytes, system_stm32f4xx.o(i.SetSysClock))
  1656. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = SetSysClock
  1657. </UL>
  1658. <BR>[Called By]<UL><LI><a href="#[5e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SystemInit
  1659. </UL>
  1660. <P>
  1661. <H3>
  1662. Undefined Global Symbols
  1663. </H3><HR></body></html>