vro24_app_.htm 250 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047
  1. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  2. <html><head>
  3. <title>Static Call Graph - [.\Objects\vro24_app_.axf]</title></head>
  4. <body><HR>
  5. <H1>Static Call Graph for image .\Objects\vro24_app_.axf</H1><HR>
  6. <BR><P>#&#060CALLGRAPH&#062# ARM Linker, 5060960: Last Updated: Mon Jul 27 17:43:11 2026
  7. <BR><P>
  8. <H3>Maximum Stack Usage = 1720 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
  9. Call chain for Maximum Stack Depth:</H3>
  10. ClusterTask &rArr; DetectObstacle_ByDynamicY
  11. <P>
  12. <H3>
  13. Mutually Recursive functions
  14. </H3> <LI><a href="#[14e]">rt_assert_handler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[101]">rt_kprintf</a><BR>
  15. <LI><a href="#[14d]">_rt_scheduler_stack_check</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[73]">list_thread</a><BR>
  16. <LI><a href="#[1d]">ADC1_2_IRQHandler</a>&nbsp;&nbsp;&nbsp;&rArr;&nbsp;&nbsp;&nbsp;<a href="#[1d]">ADC1_2_IRQHandler</a><BR>
  17. </UL>
  18. <P>
  19. <H3>
  20. Function Pointers
  21. </H3><UL>
  22. <LI><a href="#[1d]">ADC1_2_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  23. <LI><a href="#[3a]">ADC3_4_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  24. <LI><a href="#[67]">AppTask</a> from application.o(i.AppTask) referenced from application.o(i.InitTask)
  25. <LI><a href="#[5]">BusFault_Handler</a> from n32g45x_it.o(i.BusFault_Handler) referenced from startup_n32g45x.o(RESET)
  26. <LI><a href="#[20]">CAN1_RX1_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  27. <LI><a href="#[21]">CAN1_SCE_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  28. <LI><a href="#[4b]">CAN2_RX0_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  29. <LI><a href="#[4c]">CAN2_RX1_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  30. <LI><a href="#[4d]">CAN2_SCE_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  31. <LI><a href="#[4a]">CAN2_TX_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  32. <LI><a href="#[5f]">COMP7_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  33. <LI><a href="#[5d]">COMP_1_2_3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  34. <LI><a href="#[5e]">COMP_4_5_6_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  35. <LI><a href="#[68]">ClusterTask</a> from algorithm.o(i.ClusterTask) referenced from application.o(i.InitTask)
  36. <LI><a href="#[16]">DMA1_Channel1_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  37. <LI><a href="#[17]">DMA1_Channel2_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  38. <LI><a href="#[18]">DMA1_Channel3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  39. <LI><a href="#[19]">DMA1_Channel4_IRQHandler</a> from log.o(i.DMA1_Channel4_IRQHandler) referenced from startup_n32g45x.o(RESET)
  40. <LI><a href="#[1a]">DMA1_Channel5_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  41. <LI><a href="#[1b]">DMA1_Channel6_IRQHandler</a> from usart.o(i.DMA1_Channel6_IRQHandler) referenced from startup_n32g45x.o(RESET)
  42. <LI><a href="#[1c]">DMA1_Channel7_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  43. <LI><a href="#[57]">DMA1_Channel8_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  44. <LI><a href="#[43]">DMA2_Channel1_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  45. <LI><a href="#[44]">DMA2_Channel2_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  46. <LI><a href="#[45]">DMA2_Channel3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  47. <LI><a href="#[46]">DMA2_Channel4_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  48. <LI><a href="#[47]">DMA2_Channel5_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  49. <LI><a href="#[4f]">DMA2_Channel6_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  50. <LI><a href="#[50]">DMA2_Channel7_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  51. <LI><a href="#[58]">DMA2_Channel8_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  52. <LI><a href="#[59]">DVP_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  53. <LI><a href="#[8]">DebugMon_Handler</a> from n32g45x_it.o(i.DebugMon_Handler) referenced from startup_n32g45x.o(RESET)
  54. <LI><a href="#[6d]">DroneCAN_OnReception</a> from dri_can.o(i.DroneCAN_OnReception) referenced from dri_can.o(i.can_init)
  55. <LI><a href="#[64]">DroneCAN_RxThreadEntry</a> from dri_can.o(i.DroneCAN_RxThreadEntry) referenced from dri_can.o(i.DroneCAN_Start)
  56. <LI><a href="#[6c]">DroneCAN_ShouldAccept</a> from dri_can.o(i.DroneCAN_ShouldAccept) referenced from dri_can.o(i.can_init)
  57. <LI><a href="#[48]">ETH_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  58. <LI><a href="#[49]">ETH_WKUP_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  59. <LI><a href="#[11]">EXTI0_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  60. <LI><a href="#[33]">EXTI15_10_IRQHandler</a> from gpio.o(i.EXTI15_10_IRQHandler) referenced from startup_n32g45x.o(RESET)
  61. <LI><a href="#[12]">EXTI1_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  62. <LI><a href="#[13]">EXTI2_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  63. <LI><a href="#[14]">EXTI3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  64. <LI><a href="#[15]">EXTI4_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  65. <LI><a href="#[22]">EXTI9_5_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  66. <LI><a href="#[f]">FLASH_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  67. <LI><a href="#[3]">HardFault_Handler</a> from context_rvds.o(.text) referenced from startup_n32g45x.o(RESET)
  68. <LI><a href="#[2b]">I2C1_ER_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  69. <LI><a href="#[2a]">I2C1_EV_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  70. <LI><a href="#[2d]">I2C2_ER_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  71. <LI><a href="#[2c]">I2C2_EV_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  72. <LI><a href="#[52]">I2C3_ER_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  73. <LI><a href="#[51]">I2C3_EV_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  74. <LI><a href="#[54]">I2C4_ER_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  75. <LI><a href="#[53]">I2C4_EV_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  76. <LI><a href="#[6e]">InitTask</a> from application.o(i.InitTask) referenced from application.o(i.rt_application_init)
  77. <LI><a href="#[5b]">MMU_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  78. <LI><a href="#[4]">MemManage_Handler</a> from n32g45x_it.o(i.MemManage_Handler) referenced from startup_n32g45x.o(RESET)
  79. <LI><a href="#[2]">NMI_Handler</a> from n32g45x_it.o(i.NMI_Handler) referenced from startup_n32g45x.o(RESET)
  80. <LI><a href="#[66]">NodeStatusTask</a> from algorithm.o(i.NodeStatusTask) referenced from application.o(i.InitTask)
  81. <LI><a href="#[c]">PVD_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  82. <LI><a href="#[65]">ParameterTask</a> from application.o(i.ParameterTask) referenced from application.o(i.InitTask)
  83. <LI><a href="#[9]">PendSV_Handler</a> from context_rvds.o(.text) referenced from startup_n32g45x.o(RESET)
  84. <LI><a href="#[4e]">QSPI_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  85. <LI><a href="#[10]">RCC_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  86. <LI><a href="#[3b]">RESERVE48_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  87. <LI><a href="#[60]">RSRAM_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  88. <LI><a href="#[34]">RTCAlarm_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  89. <LI><a href="#[e]">RTC_WKUP_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  90. <LI><a href="#[1]">Reset_Handler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  91. <LI><a href="#[5a]">SAC_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  92. <LI><a href="#[3c]">SDIO_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  93. <LI><a href="#[2e]">SPI1_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  94. <LI><a href="#[2f]">SPI2_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  95. <LI><a href="#[3e]">SPI3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  96. <LI><a href="#[7]">SVC_Handler</a> from n32g45x_it.o(i.SVC_Handler) referenced from startup_n32g45x.o(RESET)
  97. <LI><a href="#[a]">SysTick_Handler</a> from bsp.o(i.SysTick_Handler) referenced from startup_n32g45x.o(RESET)
  98. <LI><a href="#[62]">SystemInit</a> from system_n32g45x.o(i.SystemInit) referenced from startup_n32g45x.o(.text)
  99. <LI><a href="#[d]">TAMPER_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  100. <LI><a href="#[23]">TIM1_BRK_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  101. <LI><a href="#[26]">TIM1_CC_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  102. <LI><a href="#[25]">TIM1_TRG_COM_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  103. <LI><a href="#[24]">TIM1_UP_IRQHandler</a> from drv_hwtimer.o(i.TIM1_UP_IRQHandler) referenced from startup_n32g45x.o(RESET)
  104. <LI><a href="#[27]">TIM2_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  105. <LI><a href="#[28]">TIM3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  106. <LI><a href="#[29]">TIM4_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  107. <LI><a href="#[3d]">TIM5_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  108. <LI><a href="#[41]">TIM6_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  109. <LI><a href="#[42]">TIM7_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  110. <LI><a href="#[36]">TIM8_BRK_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  111. <LI><a href="#[39]">TIM8_CC_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  112. <LI><a href="#[38]">TIM8_TRG_COM_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  113. <LI><a href="#[37]">TIM8_UP_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  114. <LI><a href="#[5c]">TSC_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  115. <LI><a href="#[3f]">UART4_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  116. <LI><a href="#[40]">UART5_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  117. <LI><a href="#[55]">UART6_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  118. <LI><a href="#[56]">UART7_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  119. <LI><a href="#[30]">USART1_IRQHandler</a> from log.o(i.USART1_IRQHandler) referenced from startup_n32g45x.o(RESET)
  120. <LI><a href="#[31]">USART2_IRQHandler</a> from usart.o(i.USART2_IRQHandler) referenced from startup_n32g45x.o(RESET)
  121. <LI><a href="#[32]">USART3_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  122. <LI><a href="#[35]">USBWakeUp_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  123. <LI><a href="#[1e]">USB_HP_CAN1_TX_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  124. <LI><a href="#[1f]">USB_LP_CAN1_RX0_IRQHandler</a> from dri_can.o(i.USB_LP_CAN1_RX0_IRQHandler) referenced from startup_n32g45x.o(RESET)
  125. <LI><a href="#[6]">UsageFault_Handler</a> from n32g45x_it.o(i.UsageFault_Handler) referenced from startup_n32g45x.o(RESET)
  126. <LI><a href="#[b]">WWDG_IRQHandler</a> from startup_n32g45x.o(.text) referenced from startup_n32g45x.o(RESET)
  127. <LI><a href="#[63]">__main</a> from entry.o(.ARM.Collect$$$$00000000) referenced from startup_n32g45x.o(.text)
  128. <LI><a href="#[69]">_snputc</a> from printfa.o(i._snputc) referenced from printfa.o(i.__0vsnprintf)
  129. <LI><a href="#[7b]">cmd_free</a> from msh.o(i.cmd_free) referenced from msh.o(FSymTab)
  130. <LI><a href="#[7a]">cmd_ps</a> from msh.o(i.cmd_ps) referenced from msh.o(FSymTab)
  131. <LI><a href="#[71]">hello</a> from cmd.o(i.hello) referenced from cmd.o(FSymTab)
  132. <LI><a href="#[78]">list</a> from cmd.o(i.list) referenced from cmd.o(FSymTab)
  133. <LI><a href="#[77]">list_device</a> from cmd.o(i.list_device) referenced 2 times from cmd.o(FSymTab)
  134. <LI><a href="#[70]">list_mem</a> from mem.o(i.list_mem) referenced from mem.o(FSymTab)
  135. <LI><a href="#[75]">list_mutex</a> from cmd.o(i.list_mutex) referenced 2 times from cmd.o(FSymTab)
  136. <LI><a href="#[74]">list_sem</a> from cmd.o(i.list_sem) referenced 2 times from cmd.o(FSymTab)
  137. <LI><a href="#[73]">list_thread</a> from cmd.o(i.list_thread) referenced 2 times from cmd.o(FSymTab)
  138. <LI><a href="#[76]">list_timer</a> from cmd.o(i.list_timer) referenced 2 times from cmd.o(FSymTab)
  139. <LI><a href="#[61]">main</a> from main.o(i.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
  140. <LI><a href="#[79]">msh_help</a> from msh.o(i.msh_help) referenced from msh.o(FSymTab)
  141. <LI><a href="#[6a]">rt_thread_exit</a> from thread.o(i.rt_thread_exit) referenced from thread.o(i._rt_thread_init)
  142. <LI><a href="#[6f]">rt_thread_idle_entry</a> from idle.o(i.rt_thread_idle_entry) referenced from idle.o(i.rt_thread_idle_init)
  143. <LI><a href="#[6b]">rt_thread_timeout</a> from thread.o(i.rt_thread_timeout) referenced from thread.o(i._rt_thread_init)
  144. <LI><a href="#[72]">version</a> from cmd.o(i.version) referenced 2 times from cmd.o(FSymTab)
  145. </UL>
  146. <P>
  147. <H3>
  148. Global Symbols
  149. </H3>
  150. <P><STRONG><a name="[63]"></a>__main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000))
  151. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(.text)
  152. </UL>
  153. <P><STRONG><a name="[1d6]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
  154. <P><STRONG><a name="[7c]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
  155. <BR><BR>[Calls]<UL><LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  156. </UL>
  157. <P><STRONG><a name="[90]"></a>__main_after_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
  158. <BR><BR>[Called By]<UL><LI><a href="#[7d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__scatterload
  159. </UL>
  160. <P><STRONG><a name="[1d7]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
  161. <P><STRONG><a name="[1d8]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
  162. <P><STRONG><a name="[1d9]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
  163. <P><STRONG><a name="[1da]"></a>__rt_lib_shutdown_fini</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry12b.o(.ARM.Collect$$$$0000000E))
  164. <P><STRONG><a name="[1db]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000F))
  165. <P><STRONG><a name="[1dc]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$00000011))
  166. <P><STRONG><a name="[c1]"></a>rt_hw_interrupt_disable</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, context_rvds.o(.text))
  167. <BR><BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  168. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  169. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  170. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  171. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  172. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  173. <LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  174. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  175. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  176. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;myflash_erasepage
  177. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  178. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePop
  179. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  180. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  181. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  182. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  183. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  184. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  185. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  186. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  187. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  188. <LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_delete
  189. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  190. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  191. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  192. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  193. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  194. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  195. <LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  196. <LI><a href="#[1cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_yield
  197. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  198. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  199. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  200. <LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  201. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  202. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  203. <LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_insert_thread
  204. <LI><a href="#[14d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_scheduler_stack_check
  205. </UL>
  206. <P><STRONG><a name="[c2]"></a>rt_hw_interrupt_enable</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, context_rvds.o(.text))
  207. <BR><BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  208. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  209. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  210. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  211. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  212. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  213. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  214. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  215. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;myflash_erasepage
  216. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  217. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePop
  218. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  219. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  220. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  221. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  222. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  223. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  224. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  225. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  226. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  227. <LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_delete
  228. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  229. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  230. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  231. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  232. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  233. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  234. <LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  235. <LI><a href="#[1cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_yield
  236. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  237. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  238. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  239. <LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  240. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  241. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  242. <LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_insert_thread
  243. </UL>
  244. <P><STRONG><a name="[1ba]"></a>rt_hw_context_switch</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, context_rvds.o(.text))
  245. <BR><BR>[Called By]<UL><LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  246. </UL>
  247. <P><STRONG><a name="[1bb]"></a>rt_hw_context_switch_interrupt</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, context_rvds.o(.text))
  248. <BR><BR>[Called By]<UL><LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  249. </UL>
  250. <P><STRONG><a name="[9]"></a>PendSV_Handler</STRONG> (Thumb, 108 bytes, Stack size 0 bytes, context_rvds.o(.text))
  251. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  252. </UL>
  253. <P><STRONG><a name="[1c3]"></a>rt_hw_context_switch_to</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, context_rvds.o(.text))
  254. <BR><BR>[Called By]<UL><LI><a href="#[1c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_scheduler_start
  255. </UL>
  256. <P><STRONG><a name="[1dd]"></a>rt_hw_interrupt_thread_switch</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, context_rvds.o(.text), UNUSED)
  257. <P><STRONG><a name="[3]"></a>HardFault_Handler</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, context_rvds.o(.text))
  258. <BR><BR>[Stack]<UL><LI>Max Depth = 248<LI>Call Chain = HardFault_Handler &rArr; rt_hw_hard_fault_exception &rArr; list_thread &rArr; _list_thread &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  259. </UL>
  260. <BR>[Calls]<UL><LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_hard_fault_exception
  261. </UL>
  262. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  263. </UL>
  264. <P><STRONG><a name="[1]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  265. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  266. </UL>
  267. <P><STRONG><a name="[1d]"></a>ADC1_2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  268. <BR><BR>[Calls]<UL><LI><a href="#[1d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC1_2_IRQHandler
  269. </UL>
  270. <BR>[Called By]<UL><LI><a href="#[1d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ADC1_2_IRQHandler
  271. </UL>
  272. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  273. </UL>
  274. <P><STRONG><a name="[3a]"></a>ADC3_4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  275. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  276. </UL>
  277. <P><STRONG><a name="[20]"></a>CAN1_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  278. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  279. </UL>
  280. <P><STRONG><a name="[21]"></a>CAN1_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  281. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  282. </UL>
  283. <P><STRONG><a name="[4b]"></a>CAN2_RX0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  284. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  285. </UL>
  286. <P><STRONG><a name="[4c]"></a>CAN2_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  287. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  288. </UL>
  289. <P><STRONG><a name="[4d]"></a>CAN2_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  290. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  291. </UL>
  292. <P><STRONG><a name="[4a]"></a>CAN2_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  293. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  294. </UL>
  295. <P><STRONG><a name="[5f]"></a>COMP7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  296. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  297. </UL>
  298. <P><STRONG><a name="[5d]"></a>COMP_1_2_3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  299. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  300. </UL>
  301. <P><STRONG><a name="[5e]"></a>COMP_4_5_6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  302. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  303. </UL>
  304. <P><STRONG><a name="[16]"></a>DMA1_Channel1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  305. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  306. </UL>
  307. <P><STRONG><a name="[17]"></a>DMA1_Channel2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  308. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  309. </UL>
  310. <P><STRONG><a name="[18]"></a>DMA1_Channel3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  311. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  312. </UL>
  313. <P><STRONG><a name="[1a]"></a>DMA1_Channel5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  314. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  315. </UL>
  316. <P><STRONG><a name="[1c]"></a>DMA1_Channel7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  317. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  318. </UL>
  319. <P><STRONG><a name="[57]"></a>DMA1_Channel8_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  320. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  321. </UL>
  322. <P><STRONG><a name="[43]"></a>DMA2_Channel1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  323. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  324. </UL>
  325. <P><STRONG><a name="[44]"></a>DMA2_Channel2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  326. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  327. </UL>
  328. <P><STRONG><a name="[45]"></a>DMA2_Channel3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  329. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  330. </UL>
  331. <P><STRONG><a name="[46]"></a>DMA2_Channel4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  332. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  333. </UL>
  334. <P><STRONG><a name="[47]"></a>DMA2_Channel5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  335. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  336. </UL>
  337. <P><STRONG><a name="[4f]"></a>DMA2_Channel6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  338. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  339. </UL>
  340. <P><STRONG><a name="[50]"></a>DMA2_Channel7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  341. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  342. </UL>
  343. <P><STRONG><a name="[58]"></a>DMA2_Channel8_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  344. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  345. </UL>
  346. <P><STRONG><a name="[59]"></a>DVP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  347. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  348. </UL>
  349. <P><STRONG><a name="[48]"></a>ETH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  350. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  351. </UL>
  352. <P><STRONG><a name="[49]"></a>ETH_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  353. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  354. </UL>
  355. <P><STRONG><a name="[11]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  356. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  357. </UL>
  358. <P><STRONG><a name="[12]"></a>EXTI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  359. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  360. </UL>
  361. <P><STRONG><a name="[13]"></a>EXTI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  362. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  363. </UL>
  364. <P><STRONG><a name="[14]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  365. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  366. </UL>
  367. <P><STRONG><a name="[15]"></a>EXTI4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  368. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  369. </UL>
  370. <P><STRONG><a name="[22]"></a>EXTI9_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  371. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  372. </UL>
  373. <P><STRONG><a name="[f]"></a>FLASH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  374. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  375. </UL>
  376. <P><STRONG><a name="[2b]"></a>I2C1_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  377. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  378. </UL>
  379. <P><STRONG><a name="[2a]"></a>I2C1_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  380. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  381. </UL>
  382. <P><STRONG><a name="[2d]"></a>I2C2_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  383. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  384. </UL>
  385. <P><STRONG><a name="[2c]"></a>I2C2_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  386. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  387. </UL>
  388. <P><STRONG><a name="[52]"></a>I2C3_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  389. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  390. </UL>
  391. <P><STRONG><a name="[51]"></a>I2C3_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  392. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  393. </UL>
  394. <P><STRONG><a name="[54]"></a>I2C4_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  395. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  396. </UL>
  397. <P><STRONG><a name="[53]"></a>I2C4_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  398. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  399. </UL>
  400. <P><STRONG><a name="[5b]"></a>MMU_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  401. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  402. </UL>
  403. <P><STRONG><a name="[c]"></a>PVD_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  404. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  405. </UL>
  406. <P><STRONG><a name="[4e]"></a>QSPI_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  407. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  408. </UL>
  409. <P><STRONG><a name="[10]"></a>RCC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  410. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  411. </UL>
  412. <P><STRONG><a name="[60]"></a>RSRAM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  413. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  414. </UL>
  415. <P><STRONG><a name="[34]"></a>RTCAlarm_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  416. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  417. </UL>
  418. <P><STRONG><a name="[e]"></a>RTC_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  419. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  420. </UL>
  421. <P><STRONG><a name="[5a]"></a>SAC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  422. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  423. </UL>
  424. <P><STRONG><a name="[3c]"></a>SDIO_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  425. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  426. </UL>
  427. <P><STRONG><a name="[2e]"></a>SPI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  428. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  429. </UL>
  430. <P><STRONG><a name="[2f]"></a>SPI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  431. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  432. </UL>
  433. <P><STRONG><a name="[3e]"></a>SPI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  434. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  435. </UL>
  436. <P><STRONG><a name="[d]"></a>TAMPER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  437. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  438. </UL>
  439. <P><STRONG><a name="[23]"></a>TIM1_BRK_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  440. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  441. </UL>
  442. <P><STRONG><a name="[26]"></a>TIM1_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  443. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  444. </UL>
  445. <P><STRONG><a name="[25]"></a>TIM1_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  446. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  447. </UL>
  448. <P><STRONG><a name="[27]"></a>TIM2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  449. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  450. </UL>
  451. <P><STRONG><a name="[28]"></a>TIM3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  452. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  453. </UL>
  454. <P><STRONG><a name="[29]"></a>TIM4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  455. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  456. </UL>
  457. <P><STRONG><a name="[3d]"></a>TIM5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  458. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  459. </UL>
  460. <P><STRONG><a name="[41]"></a>TIM6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  461. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  462. </UL>
  463. <P><STRONG><a name="[42]"></a>TIM7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  464. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  465. </UL>
  466. <P><STRONG><a name="[36]"></a>TIM8_BRK_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  467. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  468. </UL>
  469. <P><STRONG><a name="[39]"></a>TIM8_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  470. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  471. </UL>
  472. <P><STRONG><a name="[38]"></a>TIM8_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  473. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  474. </UL>
  475. <P><STRONG><a name="[37]"></a>TIM8_UP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  476. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  477. </UL>
  478. <P><STRONG><a name="[5c]"></a>TSC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  479. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  480. </UL>
  481. <P><STRONG><a name="[3f]"></a>UART4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  482. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  483. </UL>
  484. <P><STRONG><a name="[40]"></a>UART5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  485. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  486. </UL>
  487. <P><STRONG><a name="[55]"></a>UART6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  488. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  489. </UL>
  490. <P><STRONG><a name="[56]"></a>UART7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  491. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  492. </UL>
  493. <P><STRONG><a name="[32]"></a>USART3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  494. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  495. </UL>
  496. <P><STRONG><a name="[35]"></a>USBWakeUp_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  497. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  498. </UL>
  499. <P><STRONG><a name="[1e]"></a>USB_HP_CAN1_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  500. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  501. </UL>
  502. <P><STRONG><a name="[b]"></a>WWDG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  503. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  504. </UL>
  505. <P><STRONG><a name="[7f]"></a>__aeabi_uldivmod</STRONG> (Thumb, 98 bytes, Stack size 40 bytes, uldiv.o(.text))
  506. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = __aeabi_uldivmod
  507. </UL>
  508. <BR>[Calls]<UL><LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  509. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  510. </UL>
  511. <BR>[Called By]<UL><LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_GetTimeUsec
  512. <LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  513. <LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  514. </UL>
  515. <P><STRONG><a name="[81]"></a>__aeabi_llsl</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, llshl.o(.text))
  516. <BR><BR>[Called By]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  517. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  518. <LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  519. <LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2ulz
  520. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  521. </UL>
  522. <P><STRONG><a name="[1de]"></a>_ll_shift_l</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED)
  523. <P><STRONG><a name="[80]"></a>__aeabi_llsr</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, llushr.o(.text))
  524. <BR><BR>[Called By]<UL><LI><a href="#[15b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAddSignature
  525. <LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  526. <LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2ulz
  527. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  528. </UL>
  529. <P><STRONG><a name="[1df]"></a>_ll_ushift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED)
  530. <P><STRONG><a name="[97]"></a>__aeabi_memcpy</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, memcpya.o(.text))
  531. <BR><BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  532. <LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  533. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  534. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  535. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  536. <LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SaveBeginFirmwareUpdateRequest
  537. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleRxMessage
  538. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  539. </UL>
  540. <P><STRONG><a name="[c4]"></a>__aeabi_memcpy4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text))
  541. <BR><BR>[Called By]<UL><LI><a href="#[ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextCalcCRC32
  542. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePushFromIsr
  543. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePop
  544. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  545. <LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_device
  546. <LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createRxState
  547. </UL>
  548. <P><STRONG><a name="[1e0]"></a>__aeabi_memcpy8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED)
  549. <P><STRONG><a name="[83]"></a>__aeabi_memset</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, memseta.o(.text))
  550. <BR><BR>[Called By]<UL><LI><a href="#[84]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_memset$wrapper
  551. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  552. </UL>
  553. <P><STRONG><a name="[1e1]"></a>__aeabi_memset4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  554. <P><STRONG><a name="[1e2]"></a>__aeabi_memset8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  555. <P><STRONG><a name="[82]"></a>__aeabi_memclr</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, memseta.o(.text))
  556. <BR><BR>[Calls]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memset
  557. </UL>
  558. <BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  559. <LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_file_BeginFirmwareUpdateResponse_encode
  560. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_dynamic_node_id_Allocation_encode
  561. <LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_GetNodeInfoResponse_encode
  562. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_equipment_range_sensor_Measurement_encode
  563. </UL>
  564. <P><STRONG><a name="[a8]"></a>__aeabi_memclr4</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text))
  565. <BR><BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  566. <LI><a href="#[166]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardInit
  567. <LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  568. <LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcast
  569. <LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextWrite
  570. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  571. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  572. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  573. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  574. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByQuaternionEnu
  575. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  576. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DetectObstacle_ByDynamicY
  577. <LI><a href="#[17c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createTxItem
  578. <LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createRxState
  579. </UL>
  580. <P><STRONG><a name="[1e3]"></a>__aeabi_memclr8</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED)
  581. <P><STRONG><a name="[84]"></a>_memset$wrapper</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, memseta.o(.text), UNUSED)
  582. <BR><BR>[Calls]<UL><LI><a href="#[83]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memset
  583. </UL>
  584. <P><STRONG><a name="[cc]"></a>strlen</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, strlen.o(.text))
  585. <BR><BR>[Called By]<UL><LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  586. </UL>
  587. <P><STRONG><a name="[92]"></a>memcmp</STRONG> (Thumb, 26 bytes, Stack size 12 bytes, memcmp.o(.text))
  588. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = memcmp
  589. </UL>
  590. <BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  591. <LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextWrite
  592. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  593. </UL>
  594. <P><STRONG><a name="[185]"></a>strncmp</STRONG> (Thumb, 30 bytes, Stack size 12 bytes, strncmp.o(.text))
  595. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = strncmp
  596. </UL>
  597. <BR>[Called By]<UL><LI><a href="#[78]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list
  598. <LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;msh_help
  599. </UL>
  600. <P><STRONG><a name="[85]"></a>__aeabi_dadd</STRONG> (Thumb, 322 bytes, Stack size 48 bytes, dadd.o(.text), UNUSED)
  601. <BR><BR>[Calls]<UL><LI><a href="#[86]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_lasr
  602. <LI><a href="#[88]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_round
  603. <LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  604. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  605. </UL>
  606. <BR>[Called By]<UL><LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  607. <LI><a href="#[89]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dsub
  608. <LI><a href="#[8a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_drsub
  609. </UL>
  610. <P><STRONG><a name="[89]"></a>__aeabi_dsub</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text), UNUSED)
  611. <BR><BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  612. </UL>
  613. <P><STRONG><a name="[8a]"></a>__aeabi_drsub</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text), UNUSED)
  614. <BR><BR>[Calls]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  615. </UL>
  616. <P><STRONG><a name="[8b]"></a>__aeabi_dmul</STRONG> (Thumb, 228 bytes, Stack size 48 bytes, dmul.o(.text), UNUSED)
  617. <BR><BR>[Calls]<UL><LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  618. </UL>
  619. <BR>[Called By]<UL><LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  620. </UL>
  621. <P><STRONG><a name="[140]"></a>__aeabi_cdrcmple</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, cdrcmple.o(.text), UNUSED)
  622. <BR><BR>[Called By]<UL><LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  623. </UL>
  624. <P><STRONG><a name="[8c]"></a>__aeabi_d2f</STRONG> (Thumb, 56 bytes, Stack size 8 bytes, d2f.o(.text))
  625. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = __aeabi_d2f
  626. </UL>
  627. <BR>[Calls]<UL><LI><a href="#[8d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_float_round
  628. </UL>
  629. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  630. </UL>
  631. <P><STRONG><a name="[1e4]"></a>__aeabi_uidiv</STRONG> (Thumb, 0 bytes, Stack size 12 bytes, uidiv.o(.text), UNUSED)
  632. <P><STRONG><a name="[14c]"></a>__aeabi_uidivmod</STRONG> (Thumb, 44 bytes, Stack size 12 bytes, uidiv.o(.text), UNUSED)
  633. <BR><BR>[Called By]<UL><LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  634. </UL>
  635. <P><STRONG><a name="[86]"></a>__aeabi_lasr</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, llsshr.o(.text), UNUSED)
  636. <BR><BR>[Called By]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  637. </UL>
  638. <P><STRONG><a name="[1e5]"></a>_ll_sshift_r</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, llsshr.o(.text), UNUSED)
  639. <P><STRONG><a name="[1e6]"></a>__I$use$fp</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, iusefp.o(.text), UNUSED)
  640. <P><STRONG><a name="[8d]"></a>_float_round</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, fepilogue.o(.text))
  641. <BR><BR>[Called By]<UL><LI><a href="#[8c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2f
  642. </UL>
  643. <P><STRONG><a name="[1e7]"></a>_float_epilogue</STRONG> (Thumb, 92 bytes, Stack size 4 bytes, fepilogue.o(.text), UNUSED)
  644. <P><STRONG><a name="[88]"></a>_double_round</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, depilogue.o(.text), UNUSED)
  645. <BR><BR>[Called By]<UL><LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  646. <LI><a href="#[87]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_epilogue
  647. <LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  648. </UL>
  649. <P><STRONG><a name="[87]"></a>_double_epilogue</STRONG> (Thumb, 156 bytes, Stack size 32 bytes, depilogue.o(.text), UNUSED)
  650. <BR><BR>[Calls]<UL><LI><a href="#[88]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_round
  651. <LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  652. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  653. </UL>
  654. <BR>[Called By]<UL><LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  655. <LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  656. </UL>
  657. <P><STRONG><a name="[8e]"></a>__aeabi_ddiv</STRONG> (Thumb, 222 bytes, Stack size 32 bytes, ddiv.o(.text), UNUSED)
  658. <BR><BR>[Calls]<UL><LI><a href="#[88]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_double_round
  659. </UL>
  660. <BR>[Called By]<UL><LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  661. </UL>
  662. <P><STRONG><a name="[8f]"></a>__aeabi_d2ulz</STRONG> (Thumb, 48 bytes, Stack size 0 bytes, dfixul.o(.text), UNUSED)
  663. <BR><BR>[Calls]<UL><LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  664. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  665. </UL>
  666. <BR>[Called By]<UL><LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  667. </UL>
  668. <P><STRONG><a name="[7d]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
  669. <BR><BR>[Calls]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__main_after_scatterload
  670. </UL>
  671. <BR>[Called By]<UL><LI><a href="#[7c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_main_scatterload
  672. </UL>
  673. <P><STRONG><a name="[1e8]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
  674. <P><STRONG><a name="[1e9]"></a>__decompress</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED)
  675. <P><STRONG><a name="[1ea]"></a>__decompress1</STRONG> (Thumb, 86 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED)
  676. <P><STRONG><a name="[5]"></a>BusFault_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, n32g45x_it.o(i.BusFault_Handler))
  677. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  678. </UL>
  679. <P><STRONG><a name="[163]"></a>CAN1_InitFilter</STRONG> (Thumb, 258 bytes, Stack size 8 bytes, n32g45x_can.o(i.CAN1_InitFilter))
  680. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN1_InitFilter
  681. </UL>
  682. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  683. </UL>
  684. <P><STRONG><a name="[9a]"></a>CAN_DeInit</STRONG> (Thumb, 50 bytes, Stack size 8 bytes, n32g45x_can.o(i.CAN_DeInit))
  685. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN_DeInit
  686. </UL>
  687. <BR>[Calls]<UL><LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB1PeriphReset
  688. </UL>
  689. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  690. </UL>
  691. <P><STRONG><a name="[9c]"></a>CAN_GetIntStatus</STRONG> (Thumb, 284 bytes, Stack size 16 bytes, n32g45x_can.o(i.CAN_GetIntStatus))
  692. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = CAN_GetIntStatus
  693. </UL>
  694. <BR>[Calls]<UL><LI><a href="#[9d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CheckINTStatus
  695. </UL>
  696. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  697. </UL>
  698. <P><STRONG><a name="[f7]"></a>CAN_GetLastErrCode</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, n32g45x_can.o(i.CAN_GetLastErrCode))
  699. <BR><BR>[Called By]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MyCAN_Transmit
  700. </UL>
  701. <P><STRONG><a name="[164]"></a>CAN_INTConfig</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, n32g45x_can.o(i.CAN_INTConfig))
  702. <BR><BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  703. </UL>
  704. <P><STRONG><a name="[162]"></a>CAN_Init</STRONG> (Thumb, 276 bytes, Stack size 12 bytes, n32g45x_can.o(i.CAN_Init))
  705. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = CAN_Init
  706. </UL>
  707. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  708. </UL>
  709. <P><STRONG><a name="[161]"></a>CAN_InitStruct</STRONG> (Thumb, 32 bytes, Stack size 0 bytes, n32g45x_can.o(i.CAN_InitStruct))
  710. <BR><BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  711. </UL>
  712. <P><STRONG><a name="[124]"></a>CAN_ReceiveMessage</STRONG> (Thumb, 240 bytes, Stack size 8 bytes, n32g45x_can.o(i.CAN_ReceiveMessage))
  713. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN_ReceiveMessage
  714. </UL>
  715. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  716. </UL>
  717. <P><STRONG><a name="[f6]"></a>CAN_TransmitMessage</STRONG> (Thumb, 294 bytes, Stack size 8 bytes, n32g45x_can.o(i.CAN_TransmitMessage))
  718. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN_TransmitMessage
  719. </UL>
  720. <BR>[Called By]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MyCAN_Transmit
  721. </UL>
  722. <P><STRONG><a name="[f8]"></a>CAN_TransmitSTS</STRONG> (Thumb, 138 bytes, Stack size 8 bytes, n32g45x_can.o(i.CAN_TransmitSTS))
  723. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = CAN_TransmitSTS
  724. </UL>
  725. <BR>[Called By]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MyCAN_Transmit
  726. </UL>
  727. <P><STRONG><a name="[68]"></a>ClusterTask</STRONG> (Thumb, 110 bytes, Stack size 0 bytes, algorithm.o(i.ClusterTask))
  728. <BR><BR>[Stack]<UL><LI>Max Depth = 1720<LI>Call Chain = ClusterTask &rArr; DetectObstacle_ByDynamicY
  729. </UL>
  730. <BR>[Calls]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  731. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  732. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  733. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  734. <LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudConvert
  735. <LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DetectObstacle_ByDynamicY
  736. </UL>
  737. <BR>[Address Reference Count : 1]<UL><LI> application.o(i.InitTask)
  738. </UL>
  739. <P><STRONG><a name="[19]"></a>DMA1_Channel4_IRQHandler</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, log.o(i.DMA1_Channel4_IRQHandler))
  740. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = DMA1_Channel4_IRQHandler &rArr; rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  741. </UL>
  742. <BR>[Calls]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  743. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetIntStatus
  744. <LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClrIntPendingBit
  745. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  746. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  747. </UL>
  748. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  749. </UL>
  750. <P><STRONG><a name="[1b]"></a>DMA1_Channel6_IRQHandler</STRONG> (Thumb, 94 bytes, Stack size 8 bytes, usart.o(i.DMA1_Channel6_IRQHandler))
  751. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = DMA1_Channel6_IRQHandler &rArr; rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  752. </UL>
  753. <BR>[Calls]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  754. <LI><a href="#[a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetIntStatus
  755. <LI><a href="#[a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_GetCurrDataCounter
  756. <LI><a href="#[a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA_ClrIntPendingBit
  757. </UL>
  758. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  759. </UL>
  760. <P><STRONG><a name="[a5]"></a>DMA_ClrIntPendingBit</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, n32g45x_dma.o(i.DMA_ClrIntPendingBit))
  761. <BR><BR>[Called By]<UL><LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel4_IRQHandler
  762. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel6_IRQHandler
  763. </UL>
  764. <P><STRONG><a name="[a7]"></a>DMA_GetCurrDataCounter</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, n32g45x_dma.o(i.DMA_GetCurrDataCounter))
  765. <BR><BR>[Called By]<UL><LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel6_IRQHandler
  766. </UL>
  767. <P><STRONG><a name="[a4]"></a>DMA_GetIntStatus</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, n32g45x_dma.o(i.DMA_GetIntStatus))
  768. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DMA_GetIntStatus
  769. </UL>
  770. <BR>[Called By]<UL><LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel4_IRQHandler
  771. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel6_IRQHandler
  772. </UL>
  773. <P><STRONG><a name="[8]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, n32g45x_it.o(i.DebugMon_Handler))
  774. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  775. </UL>
  776. <P><STRONG><a name="[a0]"></a>DetectObstacle_ByDynamicY</STRONG> (Thumb, 894 bytes, Stack size 1720 bytes, algorithm.o(i.DetectObstacle_ByDynamicY))
  777. <BR><BR>[Stack]<UL><LI>Max Depth = 1720<LI>Call Chain = DetectObstacle_ByDynamicY
  778. </UL>
  779. <BR>[Calls]<UL><LI><a href="#[a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;KelmanFilter_1Dimension
  780. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  781. </UL>
  782. <BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ClusterTask
  783. </UL>
  784. <P><STRONG><a name="[a1]"></a>DroneCAN_IsNodeIDAllocated</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, dri_can.o(i.DroneCAN_IsNodeIDAllocated))
  785. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = DroneCAN_IsNodeIDAllocated
  786. </UL>
  787. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  788. </UL>
  789. <BR>[Called By]<UL><LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NodeStatusTask
  790. <LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ClusterTask
  791. <LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UseStaticNodeID
  792. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  793. <LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  794. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  795. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsRelevantFrame
  796. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  797. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  798. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  799. </UL>
  800. <P><STRONG><a name="[d5]"></a>DroneCAN_SendNodeStatus</STRONG> (Thumb, 90 bytes, Stack size 48 bytes, dri_can.o(i.DroneCAN_SendNodeStatus))
  801. <BR><BR>[Stack]<UL><LI>Max Depth = 292<LI>Call Chain = DroneCAN_SendNodeStatus &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  802. </UL>
  803. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcast
  804. <LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_NodeStatus_encode
  805. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxUnlock
  806. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxLock
  807. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  808. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  809. </UL>
  810. <BR>[Called By]<UL><LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NodeStatusTask
  811. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendInitialNodeStatus
  812. </UL>
  813. <P><STRONG><a name="[a2]"></a>DroneCAN_SendRangeSensorMeasurement</STRONG> (Thumb, 84 bytes, Stack size 56 bytes, dri_can.o(i.DroneCAN_SendRangeSensorMeasurement))
  814. <BR><BR>[Stack]<UL><LI>Max Depth = 300<LI>Call Chain = DroneCAN_SendRangeSensorMeasurement &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  815. </UL>
  816. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcast
  817. <LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_equipment_range_sensor_Measurement_encode
  818. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxUnlock
  819. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxLock
  820. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  821. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  822. </UL>
  823. <BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ClusterTask
  824. </UL>
  825. <P><STRONG><a name="[d8]"></a>DroneCAN_Start</STRONG> (Thumb, 124 bytes, Stack size 32 bytes, dri_can.o(i.DroneCAN_Start))
  826. <BR><BR>[Stack]<UL><LI>Max Depth = 336<LI>Call Chain = DroneCAN_Start &rArr; rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  827. </UL>
  828. <BR>[Calls]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  829. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  830. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_init
  831. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_init
  832. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_DNA_Reset
  833. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  834. </UL>
  835. <BR>[Called By]<UL><LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  836. </UL>
  837. <P><STRONG><a name="[ca]"></a>DroneCAN_UpdateContextCalcCRC32</STRONG> (Thumb, 76 bytes, Stack size 240 bytes, dri_flash.o(i.DroneCAN_UpdateContextCalcCRC32))
  838. <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = DroneCAN_UpdateContextCalcCRC32
  839. </UL>
  840. <BR>[Calls]<UL><LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  841. </UL>
  842. <BR>[Called By]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SaveBeginFirmwareUpdateRequest
  843. </UL>
  844. <P><STRONG><a name="[cb]"></a>DroneCAN_UpdateContextWrite</STRONG> (Thumb, 64 bytes, Stack size 232 bytes, dri_flash.o(i.DroneCAN_UpdateContextWrite))
  845. <BR><BR>[Stack]<UL><LI>Max Depth = 312<LI>Call Chain = DroneCAN_UpdateContextWrite &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  846. </UL>
  847. <BR>[Calls]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_read
  848. <LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  849. <LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;memcmp
  850. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  851. </UL>
  852. <BR>[Called By]<UL><LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SaveBeginFirmwareUpdateRequest
  853. </UL>
  854. <P><STRONG><a name="[33]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 12 bytes, Stack size 8 bytes, gpio.o(i.EXTI15_10_IRQHandler))
  855. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = EXTI15_10_IRQHandler &rArr; rt_interrupt_leave
  856. </UL>
  857. <BR>[Calls]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  858. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  859. </UL>
  860. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  861. </UL>
  862. <P><STRONG><a name="[df]"></a>Euler_ByDcmEnu</STRONG> (Thumb, 250 bytes, Stack size 40 bytes, euler.o(i.Euler_ByDcmEnu))
  863. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = Euler_ByDcmEnu &rArr; __hardfp_atan2f
  864. </UL>
  865. <BR>[Calls]<UL><LI><a href="#[e2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;fabsf
  866. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_atan2f
  867. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  868. </UL>
  869. <BR>[Called By]<UL><LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByQuaternionEnu
  870. </UL>
  871. <P><STRONG><a name="[e3]"></a>Euler_ByQuaternionEnu</STRONG> (Thumb, 36 bytes, Stack size 48 bytes, euler.o(i.Euler_ByQuaternionEnu))
  872. <BR><BR>[Stack]<UL><LI>Max Depth = 120<LI>Call Chain = Euler_ByQuaternionEnu &rArr; Euler_ByDcmEnu &rArr; __hardfp_atan2f
  873. </UL>
  874. <BR>[Calls]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByDcmEnu
  875. <LI><a href="#[e4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DCM_ByQuaternion
  876. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  877. </UL>
  878. <BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  879. <LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudConvert
  880. </UL>
  881. <P><STRONG><a name="[e6]"></a>FLASH_ClearFlag</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, n32g45x_flash.o(i.FLASH_ClearFlag))
  882. <BR><BR>[Called By]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ProgramWord
  883. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_EraseOnePage
  884. </UL>
  885. <P><STRONG><a name="[e5]"></a>FLASH_EraseOnePage</STRONG> (Thumb, 78 bytes, Stack size 12 bytes, n32g45x_flash.o(i.FLASH_EraseOnePage))
  886. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = FLASH_EraseOnePage &rArr; FLASH_WaitForLastOpt
  887. </UL>
  888. <BR>[Calls]<UL><LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOpt
  889. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ClearFlag
  890. </UL>
  891. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  892. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;myflash_erasepage
  893. </UL>
  894. <P><STRONG><a name="[ed]"></a>FLASH_GetSTS</STRONG> (Thumb, 76 bytes, Stack size 0 bytes, n32g45x_flash.o(i.FLASH_GetSTS))
  895. <BR><BR>[Called By]<UL><LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOpt
  896. </UL>
  897. <P><STRONG><a name="[e8]"></a>FLASH_LOG</STRONG> (Thumb, 40 bytes, Stack size 8 bytes, dri_can.o(i.FLASH_LOG))
  898. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = FLASH_LOG &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  899. </UL>
  900. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  901. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  902. <LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  903. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Unlock
  904. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Lock
  905. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;myflash_erasepage
  906. </UL>
  907. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  908. </UL>
  909. <P><STRONG><a name="[eb]"></a>FLASH_Lock</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, n32g45x_flash.o(i.FLASH_Lock))
  910. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  911. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;myflash_erasepage
  912. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  913. </UL>
  914. <P><STRONG><a name="[ec]"></a>FLASH_ProgramWord</STRONG> (Thumb, 86 bytes, Stack size 20 bytes, n32g45x_flash.o(i.FLASH_ProgramWord))
  915. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  916. </UL>
  917. <BR>[Calls]<UL><LI><a href="#[e7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_WaitForLastOpt
  918. <LI><a href="#[e6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ClearFlag
  919. </UL>
  920. <BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  921. </UL>
  922. <P><STRONG><a name="[112]"></a>FLASH_SetLatency</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, n32g45x_flash.o(i.FLASH_SetLatency))
  923. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  924. </UL>
  925. <P><STRONG><a name="[ea]"></a>FLASH_Unlock</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, n32g45x_flash.o(i.FLASH_Unlock))
  926. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  927. <LI><a href="#[e9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;myflash_erasepage
  928. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  929. </UL>
  930. <P><STRONG><a name="[e7]"></a>FLASH_WaitForLastOpt</STRONG> (Thumb, 38 bytes, Stack size 4 bytes, n32g45x_flash.o(i.FLASH_WaitForLastOpt))
  931. <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = FLASH_WaitForLastOpt
  932. </UL>
  933. <BR>[Calls]<UL><LI><a href="#[ed]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_GetSTS
  934. </UL>
  935. <BR>[Called By]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ProgramWord
  936. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_EraseOnePage
  937. </UL>
  938. <P><STRONG><a name="[160]"></a>GPIO_ConfigPinRemap</STRONG> (Thumb, 554 bytes, Stack size 20 bytes, n32g45x_gpio.o(i.GPIO_ConfigPinRemap))
  939. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = GPIO_ConfigPinRemap
  940. </UL>
  941. <BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  942. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  943. </UL>
  944. <P><STRONG><a name="[15f]"></a>GPIO_InitPeripheral</STRONG> (Thumb, 278 bytes, Stack size 24 bytes, n32g45x_gpio.o(i.GPIO_InitPeripheral))
  945. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = GPIO_InitPeripheral
  946. </UL>
  947. <BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  948. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  949. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  950. <LI><a href="#[181]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;gpio_init
  951. </UL>
  952. <P><STRONG><a name="[94]"></a>GPIO_ResetBits</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, n32g45x_gpio.o(i.GPIO_ResetBits))
  953. <BR><BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  954. <LI><a href="#[181]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;gpio_init
  955. </UL>
  956. <P><STRONG><a name="[93]"></a>GPIO_SetBits</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, n32g45x_gpio.o(i.GPIO_SetBits))
  957. <BR><BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  958. <LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  959. </UL>
  960. <P><STRONG><a name="[18d]"></a>Get_Crc16</STRONG> (Thumb, 48 bytes, Stack size 16 bytes, dri_can.o(i.Get_Crc16))
  961. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = Get_Crc16
  962. </UL>
  963. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  964. </UL>
  965. <P><STRONG><a name="[a9]"></a>KelmanFilter_1Dimension</STRONG> (Thumb, 142 bytes, Stack size 0 bytes, kelmanfilter.o(i.KelmanFilter_1Dimension))
  966. <BR><BR>[Called By]<UL><LI><a href="#[a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DetectObstacle_ByDynamicY
  967. </UL>
  968. <P><STRONG><a name="[4]"></a>MemManage_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, n32g45x_it.o(i.MemManage_Handler))
  969. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  970. </UL>
  971. <P><STRONG><a name="[ad]"></a>MyCAN_Transmit</STRONG> (Thumb, 106 bytes, Stack size 56 bytes, dri_can.o(i.MyCAN_Transmit))
  972. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = MyCAN_Transmit &rArr; CAN_TransmitSTS
  973. </UL>
  974. <BR>[Calls]<UL><LI><a href="#[f8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_TransmitSTS
  975. <LI><a href="#[f6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_TransmitMessage
  976. <LI><a href="#[f7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GetLastErrCode
  977. </UL>
  978. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  979. <LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  980. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  981. </UL>
  982. <P><STRONG><a name="[2]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, n32g45x_it.o(i.NMI_Handler))
  983. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  984. </UL>
  985. <P><STRONG><a name="[f9]"></a>NVIC_Configuration</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, bsp.o(i.NVIC_Configuration))
  986. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = NVIC_Configuration
  987. </UL>
  988. <BR>[Calls]<UL><LI><a href="#[fa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_SetVectorTable
  989. </UL>
  990. <BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  991. </UL>
  992. <P><STRONG><a name="[165]"></a>NVIC_Init</STRONG> (Thumb, 100 bytes, Stack size 16 bytes, misc.o(i.NVIC_Init))
  993. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = NVIC_Init
  994. </UL>
  995. <BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  996. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  997. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  998. </UL>
  999. <P><STRONG><a name="[188]"></a>NVIC_PriorityGroupConfig</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, misc.o(i.NVIC_PriorityGroupConfig))
  1000. <BR><BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  1001. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1002. </UL>
  1003. <P><STRONG><a name="[fa]"></a>NVIC_SetVectorTable</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, misc.o(i.NVIC_SetVectorTable))
  1004. <BR><BR>[Called By]<UL><LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Configuration
  1005. </UL>
  1006. <P><STRONG><a name="[66]"></a>NodeStatusTask</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, algorithm.o(i.NodeStatusTask))
  1007. <BR><BR>[Stack]<UL><LI>Max Depth = 292<LI>Call Chain = NodeStatusTask &rArr; DroneCAN_SendNodeStatus &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  1008. </UL>
  1009. <BR>[Calls]<UL><LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  1010. <LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_mdelay
  1011. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  1012. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  1013. </UL>
  1014. <BR>[Address Reference Count : 1]<UL><LI> application.o(i.InitTask)
  1015. </UL>
  1016. <P><STRONG><a name="[9f]"></a>PointCloudConvert</STRONG> (Thumb, 1238 bytes, Stack size 96 bytes, algorithm.o(i.PointCloudConvert))
  1017. <BR><BR>[Stack]<UL><LI>Max Depth = 304<LI>Call Chain = PointCloudConvert &rArr; quat_rotate_point &rArr; Quaternion_ConjInv &rArr; Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1018. </UL>
  1019. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1020. <LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Enu_ByEuler
  1021. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByQuaternionEnu
  1022. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;quat_rotate_point
  1023. </UL>
  1024. <BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ClusterTask
  1025. </UL>
  1026. <P><STRONG><a name="[9e]"></a>PointCloudFilter</STRONG> (Thumb, 1302 bytes, Stack size 72 bytes, algorithm.o(i.PointCloudFilter))
  1027. <BR><BR>[Stack]<UL><LI>Max Depth = 272<LI>Call Chain = PointCloudFilter &rArr; quat_rotate_point_filter &rArr; Quaternion_ConjInv &rArr; Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1028. </UL>
  1029. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1030. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  1031. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  1032. <LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Enu_ByEuler
  1033. <LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByQuaternionEnu
  1034. <LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;quat_rotate_point_filter
  1035. <LI><a href="#[102]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PowerFilter
  1036. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1037. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  1038. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1039. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_cosf
  1040. </UL>
  1041. <BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ClusterTask
  1042. </UL>
  1043. <P><STRONG><a name="[102]"></a>PowerFilter</STRONG> (Thumb, 180 bytes, Stack size 0 bytes, algorithm.o(i.PowerFilter))
  1044. <BR><BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1045. </UL>
  1046. <P><STRONG><a name="[108]"></a>Quaternion_Conj</STRONG> (Thumb, 100 bytes, Stack size 64 bytes, quaternion.o(i.Quaternion_Conj))
  1047. <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = Quaternion_Conj &rArr; Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1048. </UL>
  1049. <BR>[Calls]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Multiplication
  1050. <LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Inversed
  1051. </UL>
  1052. <BR>[Called By]<UL><LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;quat_rotate_point_filter
  1053. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;quat_rotate_point
  1054. </UL>
  1055. <P><STRONG><a name="[10b]"></a>Quaternion_ConjInv</STRONG> (Thumb, 100 bytes, Stack size 64 bytes, quaternion.o(i.Quaternion_ConjInv))
  1056. <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = Quaternion_ConjInv &rArr; Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1057. </UL>
  1058. <BR>[Calls]<UL><LI><a href="#[109]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Multiplication
  1059. <LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Inversed
  1060. </UL>
  1061. <BR>[Called By]<UL><LI><a href="#[107]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;quat_rotate_point_filter
  1062. <LI><a href="#[100]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;quat_rotate_point
  1063. </UL>
  1064. <P><STRONG><a name="[ff]"></a>Quaternion_Enu_ByEuler</STRONG> (Thumb, 250 bytes, Stack size 48 bytes, quaternion.o(i.Quaternion_Enu_ByEuler))
  1065. <BR><BR>[Stack]<UL><LI>Max Depth = 84<LI>Call Chain = Quaternion_Enu_ByEuler &rArr; __hardfp_sinf &rArr; __mathlib_rredf2
  1066. </UL>
  1067. <BR>[Calls]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1068. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_cosf
  1069. </UL>
  1070. <BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1071. <LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudConvert
  1072. </UL>
  1073. <P><STRONG><a name="[10a]"></a>Quaternion_Inversed</STRONG> (Thumb, 88 bytes, Stack size 24 bytes, quaternion.o(i.Quaternion_Inversed))
  1074. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1075. </UL>
  1076. <BR>[Calls]<UL><LI><a href="#[10c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Vector_GetNorm
  1077. </UL>
  1078. <BR>[Called By]<UL><LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_ConjInv
  1079. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Conj
  1080. </UL>
  1081. <P><STRONG><a name="[109]"></a>Quaternion_Multiplication</STRONG> (Thumb, 242 bytes, Stack size 24 bytes, quaternion.o(i.Quaternion_Multiplication))
  1082. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = Quaternion_Multiplication
  1083. </UL>
  1084. <BR>[Called By]<UL><LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_ConjInv
  1085. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Conj
  1086. </UL>
  1087. <P><STRONG><a name="[113]"></a>RCC_ConfigHclk</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_ConfigHclk))
  1088. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1089. </UL>
  1090. <P><STRONG><a name="[111]"></a>RCC_ConfigHse</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_ConfigHse))
  1091. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1092. </UL>
  1093. <P><STRONG><a name="[115]"></a>RCC_ConfigPclk1</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_ConfigPclk1))
  1094. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1095. </UL>
  1096. <P><STRONG><a name="[114]"></a>RCC_ConfigPclk2</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_ConfigPclk2))
  1097. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1098. </UL>
  1099. <P><STRONG><a name="[116]"></a>RCC_ConfigPll</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_ConfigPll))
  1100. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1101. </UL>
  1102. <P><STRONG><a name="[118]"></a>RCC_ConfigSysclk</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_ConfigSysclk))
  1103. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1104. </UL>
  1105. <P><STRONG><a name="[110]"></a>RCC_DeInit</STRONG> (Thumb, 74 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_DeInit))
  1106. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1107. </UL>
  1108. <P><STRONG><a name="[1d5]"></a>RCC_EnableAHBPeriphClk</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_EnableAHBPeriphClk))
  1109. <BR><BR>[Called By]<UL><LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1110. </UL>
  1111. <P><STRONG><a name="[15e]"></a>RCC_EnableAPB1PeriphClk</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_EnableAPB1PeriphClk))
  1112. <BR><BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  1113. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1114. </UL>
  1115. <P><STRONG><a name="[9b]"></a>RCC_EnableAPB1PeriphReset</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_EnableAPB1PeriphReset))
  1116. <BR><BR>[Called By]<UL><LI><a href="#[120]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_DeInit
  1117. <LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_DeInit
  1118. </UL>
  1119. <P><STRONG><a name="[15d]"></a>RCC_EnableAPB2PeriphClk</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_EnableAPB2PeriphClk))
  1120. <BR><BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  1121. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  1122. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1123. <LI><a href="#[181]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;gpio_init
  1124. </UL>
  1125. <P><STRONG><a name="[121]"></a>RCC_EnableAPB2PeriphReset</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_EnableAPB2PeriphReset))
  1126. <BR><BR>[Called By]<UL><LI><a href="#[120]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_DeInit
  1127. </UL>
  1128. <P><STRONG><a name="[117]"></a>RCC_EnablePll</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_EnablePll))
  1129. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1130. </UL>
  1131. <P><STRONG><a name="[123]"></a>RCC_GetClocksFreqValue</STRONG> (Thumb, 240 bytes, Stack size 20 bytes, n32g45x_rcc.o(i.RCC_GetClocksFreqValue))
  1132. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = RCC_GetClocksFreqValue
  1133. </UL>
  1134. <BR>[Called By]<UL><LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Init
  1135. </UL>
  1136. <P><STRONG><a name="[10e]"></a>RCC_GetFlagStatus</STRONG> (Thumb, 56 bytes, Stack size 8 bytes, n32g45x_rcc.o(i.RCC_GetFlagStatus))
  1137. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = RCC_GetFlagStatus
  1138. </UL>
  1139. <BR>[Called By]<UL><LI><a href="#[10d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_WaitHseStable
  1140. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1141. </UL>
  1142. <P><STRONG><a name="[119]"></a>RCC_GetSysclkSrc</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, n32g45x_rcc.o(i.RCC_GetSysclkSrc))
  1143. <BR><BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1144. </UL>
  1145. <P><STRONG><a name="[10d]"></a>RCC_WaitHseStable</STRONG> (Thumb, 56 bytes, Stack size 16 bytes, n32g45x_rcc.o(i.RCC_WaitHseStable))
  1146. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = RCC_WaitHseStable &rArr; RCC_GetFlagStatus
  1147. </UL>
  1148. <BR>[Calls]<UL><LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_GetFlagStatus
  1149. </UL>
  1150. <BR>[Called By]<UL><LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  1151. </UL>
  1152. <P><STRONG><a name="[7]"></a>SVC_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, n32g45x_it.o(i.SVC_Handler))
  1153. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1154. </UL>
  1155. <P><STRONG><a name="[10f]"></a>SetSysClockToPLL</STRONG> (Thumb, 142 bytes, Stack size 40 bytes, rcc.o(i.SetSysClockToPLL))
  1156. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = SetSysClockToPLL &rArr; RCC_WaitHseStable &rArr; RCC_GetFlagStatus
  1157. </UL>
  1158. <BR>[Calls]<UL><LI><a href="#[10d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_WaitHseStable
  1159. <LI><a href="#[119]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_GetSysclkSrc
  1160. <LI><a href="#[117]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnablePll
  1161. <LI><a href="#[110]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_DeInit
  1162. <LI><a href="#[118]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_ConfigSysclk
  1163. <LI><a href="#[116]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_ConfigPll
  1164. <LI><a href="#[115]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_ConfigPclk1
  1165. <LI><a href="#[111]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_ConfigHse
  1166. <LI><a href="#[113]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_ConfigHclk
  1167. <LI><a href="#[112]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_SetLatency
  1168. <LI><a href="#[114]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_ConfigPclk2
  1169. <LI><a href="#[10e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_GetFlagStatus
  1170. </UL>
  1171. <BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  1172. </UL>
  1173. <P><STRONG><a name="[a]"></a>SysTick_Handler</STRONG> (Thumb, 16 bytes, Stack size 8 bytes, bsp.o(i.SysTick_Handler))
  1174. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = SysTick_Handler &rArr; rt_tick_increase &rArr; rt_thread_yield &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1175. </UL>
  1176. <BR>[Calls]<UL><LI><a href="#[11a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_increase
  1177. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  1178. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  1179. </UL>
  1180. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1181. </UL>
  1182. <P><STRONG><a name="[62]"></a>SystemInit</STRONG> (Thumb, 146 bytes, Stack size 8 bytes, system_n32g45x.o(i.SystemInit))
  1183. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = SystemInit &rArr; SetSysClock
  1184. </UL>
  1185. <BR>[Calls]<UL><LI><a href="#[11b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClock
  1186. </UL>
  1187. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(.text)
  1188. </UL>
  1189. <P><STRONG><a name="[24]"></a>TIM1_UP_IRQHandler</STRONG> (Thumb, 62 bytes, Stack size 8 bytes, drv_hwtimer.o(i.TIM1_UP_IRQHandler))
  1190. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = TIM1_UP_IRQHandler &rArr; rt_device_hwtimer_isr &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  1191. </UL>
  1192. <BR>[Calls]<UL><LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  1193. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  1194. <LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_hwtimer_isr
  1195. <LI><a href="#[11c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM_ClrIntPendingBit
  1196. </UL>
  1197. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1198. </UL>
  1199. <P><STRONG><a name="[11c]"></a>TIM_ClrIntPendingBit</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, n32g45x_tim.o(i.TIM_ClrIntPendingBit))
  1200. <BR><BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_IRQHandler
  1201. </UL>
  1202. <P><STRONG><a name="[30]"></a>USART1_IRQHandler</STRONG> (Thumb, 98 bytes, Stack size 8 bytes, log.o(i.USART1_IRQHandler))
  1203. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = USART1_IRQHandler &rArr; rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1204. </UL>
  1205. <BR>[Calls]<UL><LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ReceiveData
  1206. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  1207. <LI><a href="#[11e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetIntStatus
  1208. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  1209. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  1210. </UL>
  1211. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1212. </UL>
  1213. <P><STRONG><a name="[31]"></a>USART2_IRQHandler</STRONG> (Thumb, 128 bytes, Stack size 8 bytes, usart.o(i.USART2_IRQHandler))
  1214. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = USART2_IRQHandler &rArr; rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1215. </UL>
  1216. <BR>[Calls]<UL><LI><a href="#[11f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ReceiveData
  1217. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  1218. <LI><a href="#[11e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetIntStatus
  1219. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  1220. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  1221. </UL>
  1222. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1223. </UL>
  1224. <P><STRONG><a name="[189]"></a>USART_ConfigInt</STRONG> (Thumb, 74 bytes, Stack size 20 bytes, n32g45x_usart.o(i.USART_ConfigInt))
  1225. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = USART_ConfigInt
  1226. </UL>
  1227. <BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  1228. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1229. </UL>
  1230. <P><STRONG><a name="[120]"></a>USART_DeInit</STRONG> (Thumb, 186 bytes, Stack size 8 bytes, n32g45x_usart.o(i.USART_DeInit))
  1231. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = USART_DeInit
  1232. </UL>
  1233. <BR>[Calls]<UL><LI><a href="#[121]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB2PeriphReset
  1234. <LI><a href="#[9b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB1PeriphReset
  1235. </UL>
  1236. <BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  1237. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1238. </UL>
  1239. <P><STRONG><a name="[18a]"></a>USART_Enable</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, n32g45x_usart.o(i.USART_Enable))
  1240. <BR><BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  1241. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1242. </UL>
  1243. <P><STRONG><a name="[1a3]"></a>USART_GetFlagStatus</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, n32g45x_usart.o(i.USART_GetFlagStatus))
  1244. <BR><BR>[Called By]<UL><LI><a href="#[1a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_console_output
  1245. </UL>
  1246. <P><STRONG><a name="[11e]"></a>USART_GetIntStatus</STRONG> (Thumb, 84 bytes, Stack size 16 bytes, n32g45x_usart.o(i.USART_GetIntStatus))
  1247. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = USART_GetIntStatus
  1248. </UL>
  1249. <BR>[Called By]<UL><LI><a href="#[30]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  1250. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  1251. </UL>
  1252. <P><STRONG><a name="[122]"></a>USART_Init</STRONG> (Thumb, 188 bytes, Stack size 56 bytes, n32g45x_usart.o(i.USART_Init))
  1253. <BR><BR>[Stack]<UL><LI>Max Depth = 76<LI>Call Chain = USART_Init &rArr; RCC_GetClocksFreqValue
  1254. </UL>
  1255. <BR>[Calls]<UL><LI><a href="#[123]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_GetClocksFreqValue
  1256. </UL>
  1257. <BR>[Called By]<UL><LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  1258. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  1259. </UL>
  1260. <P><STRONG><a name="[11f]"></a>USART_ReceiveData</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, n32g45x_usart.o(i.USART_ReceiveData))
  1261. <BR><BR>[Called By]<UL><LI><a href="#[30]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  1262. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  1263. </UL>
  1264. <P><STRONG><a name="[1a4]"></a>USART_SendData</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, n32g45x_usart.o(i.USART_SendData))
  1265. <BR><BR>[Called By]<UL><LI><a href="#[1a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_console_output
  1266. </UL>
  1267. <P><STRONG><a name="[1f]"></a>USB_LP_CAN1_RX0_IRQHandler</STRONG> (Thumb, 744 bytes, Stack size 32 bytes, dri_can.o(i.USB_LP_CAN1_RX0_IRQHandler))
  1268. <BR><BR>[Stack]<UL><LI>Max Depth = 184<LI>Call Chain = USB_LP_CAN1_RX0_IRQHandler &rArr; DroneCAN_RxQueuePushFromIsr &rArr; rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1269. </UL>
  1270. <BR>[Calls]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  1271. <LI><a href="#[a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_leave
  1272. <LI><a href="#[a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_enter
  1273. <LI><a href="#[124]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_ReceiveMessage
  1274. <LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GetIntStatus
  1275. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  1276. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_PRIMASK
  1277. <LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_SystemReset
  1278. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePushFromIsr
  1279. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsRelevantFrame
  1280. </UL>
  1281. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1282. </UL>
  1283. <P><STRONG><a name="[6]"></a>UsageFault_Handler</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, n32g45x_it.o(i.UsageFault_Handler))
  1284. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  1285. </UL>
  1286. <P><STRONG><a name="[126]"></a>__0vsnprintf</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, printfa.o(i.__0vsnprintf), UNUSED)
  1287. <BR><BR>[Calls]<UL><LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  1288. </UL>
  1289. <P><STRONG><a name="[1eb]"></a>__1vsnprintf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0vsnprintf), UNUSED)
  1290. <P><STRONG><a name="[1ec]"></a>__2vsnprintf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0vsnprintf), UNUSED)
  1291. <P><STRONG><a name="[1ed]"></a>__c89vsnprintf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0vsnprintf), UNUSED)
  1292. <P><STRONG><a name="[1aa]"></a>vsnprintf</STRONG> (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0vsnprintf))
  1293. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = vsnprintf
  1294. </UL>
  1295. <BR>[Called By]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1296. </UL>
  1297. <P><STRONG><a name="[129]"></a>__ARM_fpclassifyf</STRONG> (Thumb, 38 bytes, Stack size 0 bytes, fpclassifyf.o(i.__ARM_fpclassifyf))
  1298. <BR><BR>[Called By]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1299. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_atan2f
  1300. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  1301. </UL>
  1302. <P><STRONG><a name="[e1]"></a>__hardfp_asinf</STRONG> (Thumb, 258 bytes, Stack size 16 bytes, asinf.o(i.__hardfp_asinf))
  1303. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = __hardfp_asinf &rArr; sqrtf
  1304. </UL>
  1305. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  1306. <LI><a href="#[12a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_underflow
  1307. <LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_invalid
  1308. <LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_infnan
  1309. <LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__ARM_fpclassifyf
  1310. <LI><a href="#[128]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sqrtf
  1311. </UL>
  1312. <BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByDcmEnu
  1313. </UL>
  1314. <P><STRONG><a name="[e0]"></a>__hardfp_atan2f</STRONG> (Thumb, 594 bytes, Stack size 32 bytes, atan2f.o(i.__hardfp_atan2f))
  1315. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = __hardfp_atan2f
  1316. </UL>
  1317. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  1318. <LI><a href="#[12a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_underflow
  1319. <LI><a href="#[12e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_infnan2
  1320. <LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__ARM_fpclassifyf
  1321. </UL>
  1322. <BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByDcmEnu
  1323. </UL>
  1324. <P><STRONG><a name="[103]"></a>__hardfp_cosf</STRONG> (Thumb, 280 bytes, Stack size 8 bytes, cosf.o(i.__hardfp_cosf))
  1325. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = __hardfp_cosf &rArr; __mathlib_rredf2
  1326. </UL>
  1327. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  1328. <LI><a href="#[12f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_rredf2
  1329. <LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_invalid
  1330. <LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_infnan
  1331. </UL>
  1332. <BR>[Called By]<UL><LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Enu_ByEuler
  1333. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1334. </UL>
  1335. <P><STRONG><a name="[104]"></a>__hardfp_sinf</STRONG> (Thumb, 344 bytes, Stack size 16 bytes, sinf.o(i.__hardfp_sinf))
  1336. <BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = __hardfp_sinf &rArr; __mathlib_rredf2
  1337. </UL>
  1338. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  1339. <LI><a href="#[12f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_rredf2
  1340. <LI><a href="#[12a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_underflow
  1341. <LI><a href="#[12d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_invalid
  1342. <LI><a href="#[12b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__mathlib_flt_infnan
  1343. <LI><a href="#[129]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__ARM_fpclassifyf
  1344. </UL>
  1345. <BR>[Called By]<UL><LI><a href="#[ff]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Enu_ByEuler
  1346. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1347. </UL>
  1348. <P><STRONG><a name="[125]"></a>__hardfp_sqrtf</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, sqrtf.o(i.__hardfp_sqrtf))
  1349. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = __hardfp_sqrtf
  1350. </UL>
  1351. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  1352. </UL>
  1353. <BR>[Called By]<UL><LI><a href="#[10c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Vector_GetNorm
  1354. </UL>
  1355. <P><STRONG><a name="[12b]"></a>__mathlib_flt_infnan</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_infnan))
  1356. <BR><BR>[Called By]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1357. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_cosf
  1358. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  1359. </UL>
  1360. <P><STRONG><a name="[12e]"></a>__mathlib_flt_infnan2</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_infnan2))
  1361. <BR><BR>[Called By]<UL><LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_atan2f
  1362. </UL>
  1363. <P><STRONG><a name="[12d]"></a>__mathlib_flt_invalid</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_invalid))
  1364. <BR><BR>[Called By]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1365. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_cosf
  1366. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  1367. </UL>
  1368. <P><STRONG><a name="[12a]"></a>__mathlib_flt_underflow</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_underflow))
  1369. <BR><BR>[Called By]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1370. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_atan2f
  1371. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  1372. </UL>
  1373. <P><STRONG><a name="[12f]"></a>__mathlib_rredf2</STRONG> (Thumb, 316 bytes, Stack size 20 bytes, rredf.o(i.__mathlib_rredf2))
  1374. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = __mathlib_rredf2
  1375. </UL>
  1376. <BR>[Called By]<UL><LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1377. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_cosf
  1378. </UL>
  1379. <P><STRONG><a name="[1b9]"></a>__rt_ffs</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, kservice.o(i.__rt_ffs))
  1380. <BR><BR>[Called By]<UL><LI><a href="#[1c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_scheduler_start
  1381. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  1382. </UL>
  1383. <P><STRONG><a name="[1ee]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
  1384. <P><STRONG><a name="[1ef]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
  1385. <P><STRONG><a name="[1f0]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
  1386. <P><STRONG><a name="[12c]"></a>__set_errno</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, errno.o(i.__set_errno))
  1387. <BR><BR>[Called By]<UL><LI><a href="#[128]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;sqrtf
  1388. <LI><a href="#[125]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sqrtf
  1389. <LI><a href="#[104]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sinf
  1390. <LI><a href="#[103]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_cosf
  1391. <LI><a href="#[e0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_atan2f
  1392. <LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  1393. </UL>
  1394. <P><STRONG><a name="[d7]"></a>_uavcan_equipment_range_sensor_Measurement_encode</STRONG> (Thumb, 38 bytes, Stack size 16 bytes, uavcan.equipment.range_sensor.measurement.o(i._uavcan_equipment_range_sensor_Measurement_encode))
  1395. <BR><BR>[Stack]<UL><LI>Max Depth = 132<LI>Call Chain = _uavcan_equipment_range_sensor_Measurement_encode &rArr; __uavcan_equipment_range_sensor_Measurement_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  1396. </UL>
  1397. <BR>[Calls]<UL><LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_equipment_range_sensor_Measurement_encode
  1398. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  1399. </UL>
  1400. <BR>[Called By]<UL><LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  1401. </UL>
  1402. <P><STRONG><a name="[c0]"></a>_uavcan_navigation_GlobalNavigationSolution_decode</STRONG> (Thumb, 48 bytes, Stack size 24 bytes, uavcan.navigation.globalnavigationsolution.o(i._uavcan_navigation_GlobalNavigationSolution_decode))
  1403. <BR><BR>[Stack]<UL><LI>Max Depth = 236<LI>Call Chain = _uavcan_navigation_GlobalNavigationSolution_decode &rArr; __uavcan_navigation_GlobalNavigationSolution_decode &rArr; canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  1404. </UL>
  1405. <BR>[Calls]<UL><LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_navigation_GlobalNavigationSolution_decode
  1406. </UL>
  1407. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  1408. </UL>
  1409. <P><STRONG><a name="[d4]"></a>_uavcan_protocol_GetNodeInfoResponse_encode</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, uavcan.protocol.getnodeinfo_res.o(i._uavcan_protocol_GetNodeInfoResponse_encode))
  1410. <BR><BR>[Stack]<UL><LI>Max Depth = 156<LI>Call Chain = _uavcan_protocol_GetNodeInfoResponse_encode &rArr; __uavcan_protocol_GetNodeInfoResponse_encode &rArr; __uavcan_protocol_HardwareVersion_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  1411. </UL>
  1412. <BR>[Calls]<UL><LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_GetNodeInfoResponse_encode
  1413. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  1414. </UL>
  1415. <BR>[Called By]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  1416. </UL>
  1417. <P><STRONG><a name="[d6]"></a>_uavcan_protocol_NodeStatus_encode</STRONG> (Thumb, 36 bytes, Stack size 16 bytes, uavcan.protocol.nodestatus.o(i._uavcan_protocol_NodeStatus_encode))
  1418. <BR><BR>[Stack]<UL><LI>Max Depth = 116<LI>Call Chain = _uavcan_protocol_NodeStatus_encode &rArr; __uavcan_protocol_NodeStatus_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  1419. </UL>
  1420. <BR>[Calls]<UL><LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_NodeStatus_encode
  1421. </UL>
  1422. <BR>[Called By]<UL><LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  1423. </UL>
  1424. <P><STRONG><a name="[b3]"></a>_uavcan_protocol_dynamic_node_id_Allocation_decode</STRONG> (Thumb, 48 bytes, Stack size 24 bytes, uavcan.protocol.dynamic_node_id.allocation.o(i._uavcan_protocol_dynamic_node_id_Allocation_decode))
  1425. <BR><BR>[Stack]<UL><LI>Max Depth = 236<LI>Call Chain = _uavcan_protocol_dynamic_node_id_Allocation_decode &rArr; __uavcan_protocol_dynamic_node_id_Allocation_decode &rArr; canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  1426. </UL>
  1427. <BR>[Calls]<UL><LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_dynamic_node_id_Allocation_decode
  1428. </UL>
  1429. <BR>[Called By]<UL><LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  1430. </UL>
  1431. <P><STRONG><a name="[d2]"></a>_uavcan_protocol_dynamic_node_id_Allocation_encode</STRONG> (Thumb, 38 bytes, Stack size 16 bytes, uavcan.protocol.dynamic_node_id.allocation.o(i._uavcan_protocol_dynamic_node_id_Allocation_encode))
  1432. <BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = _uavcan_protocol_dynamic_node_id_Allocation_encode &rArr; __uavcan_protocol_dynamic_node_id_Allocation_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  1433. </UL>
  1434. <BR>[Calls]<UL><LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_dynamic_node_id_Allocation_encode
  1435. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  1436. </UL>
  1437. <BR>[Called By]<UL><LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  1438. </UL>
  1439. <P><STRONG><a name="[bb]"></a>_uavcan_protocol_file_BeginFirmwareUpdateRequest_decode</STRONG> (Thumb, 94 bytes, Stack size 40 bytes, uavcan.protocol.file.beginfirmwareupdate_req.o(i._uavcan_protocol_file_BeginFirmwareUpdateRequest_decode))
  1440. <BR><BR>[Stack]<UL><LI>Max Depth = 252<LI>Call Chain = _uavcan_protocol_file_BeginFirmwareUpdateRequest_decode &rArr; __uavcan_protocol_file_Path_decode &rArr; canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  1441. </UL>
  1442. <BR>[Calls]<UL><LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  1443. <LI><a href="#[13e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_file_Path_decode
  1444. </UL>
  1445. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  1446. </UL>
  1447. <P><STRONG><a name="[cd]"></a>_uavcan_protocol_file_BeginFirmwareUpdateResponse_encode</STRONG> (Thumb, 38 bytes, Stack size 16 bytes, uavcan.protocol.file.beginfirmwareupdate_res.o(i._uavcan_protocol_file_BeginFirmwareUpdateResponse_encode))
  1448. <BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = _uavcan_protocol_file_BeginFirmwareUpdateResponse_encode &rArr; __uavcan_protocol_file_BeginFirmwareUpdateResponse_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  1449. </UL>
  1450. <BR>[Calls]<UL><LI><a href="#[13d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_file_BeginFirmwareUpdateResponse_encode
  1451. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  1452. </UL>
  1453. <BR>[Called By]<UL><LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  1454. </UL>
  1455. <P><STRONG><a name="[fc]"></a>calculate_flag</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, algorithm.o(i.calculate_flag))
  1456. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = calculate_flag
  1457. </UL>
  1458. <BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  1459. <LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  1460. </UL>
  1461. <P><STRONG><a name="[f1]"></a>can_init</STRONG> (Thumb, 326 bytes, Stack size 48 bytes, dri_can.o(i.can_init))
  1462. <BR><BR>[Stack]<UL><LI>Max Depth = 100<LI>Call Chain = can_init &rArr; canardInit &rArr; initPoolAllocator
  1463. </UL>
  1464. <BR>[Calls]<UL><LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_uid
  1465. <LI><a href="#[166]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardInit
  1466. <LI><a href="#[15d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB2PeriphClk
  1467. <LI><a href="#[15e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB1PeriphClk
  1468. <LI><a href="#[165]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  1469. <LI><a href="#[15f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_InitPeripheral
  1470. <LI><a href="#[160]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ConfigPinRemap
  1471. <LI><a href="#[161]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_InitStruct
  1472. <LI><a href="#[162]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_Init
  1473. <LI><a href="#[164]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_INTConfig
  1474. <LI><a href="#[9a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_DeInit
  1475. <LI><a href="#[163]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN1_InitFilter
  1476. </UL>
  1477. <BR>[Called By]<UL><LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  1478. </UL>
  1479. <P><STRONG><a name="[d3]"></a>canardBroadcast</STRONG> (Thumb, 64 bytes, Stack size 80 bytes, canard.o(i.canardBroadcast))
  1480. <BR><BR>[Stack]<UL><LI>Max Depth = 244<LI>Call Chain = canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  1481. </UL>
  1482. <BR>[Calls]<UL><LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcastObj
  1483. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1484. </UL>
  1485. <BR>[Called By]<UL><LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  1486. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  1487. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  1488. </UL>
  1489. <P><STRONG><a name="[167]"></a>canardBroadcastObj</STRONG> (Thumb, 186 bytes, Stack size 32 bytes, canard.o(i.canardBroadcastObj))
  1490. <BR><BR>[Stack]<UL><LI>Max Depth = 164<LI>Call Chain = canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  1491. </UL>
  1492. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  1493. <LI><a href="#[169]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;incrementTransferID
  1494. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  1495. <LI><a href="#[15c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAdd
  1496. <LI><a href="#[15a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;calculateCRC
  1497. </UL>
  1498. <BR>[Called By]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcast
  1499. </UL>
  1500. <P><STRONG><a name="[c9]"></a>canardCleanupStaleTransfers</STRONG> (Thumb, 138 bytes, Stack size 24 bytes, canard.o(i.canardCleanupStaleTransfers))
  1501. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = canardCleanupStaleTransfers &rArr; releaseStatePayload &rArr; freeBlock
  1502. </UL>
  1503. <BR>[Calls]<UL><LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;releaseStatePayload
  1504. <LI><a href="#[16c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;freeBlock
  1505. <LI><a href="#[16b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRxFromIdx
  1506. </UL>
  1507. <BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  1508. </UL>
  1509. <P><STRONG><a name="[135]"></a>canardConvertFloat16ToNativeFloat</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, canard.o(i.canardConvertFloat16ToNativeFloat))
  1510. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = canardConvertFloat16ToNativeFloat
  1511. </UL>
  1512. <BR>[Called By]<UL><LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_navigation_GlobalNavigationSolution_decode
  1513. </UL>
  1514. <P><STRONG><a name="[132]"></a>canardConvertNativeFloatToFloat16</STRONG> (Thumb, 134 bytes, Stack size 28 bytes, canard.o(i.canardConvertNativeFloatToFloat16))
  1515. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = canardConvertNativeFloatToFloat16
  1516. </UL>
  1517. <BR>[Called By]<UL><LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_equipment_range_sensor_Measurement_encode
  1518. </UL>
  1519. <P><STRONG><a name="[134]"></a>canardDecodeScalar</STRONG> (Thumb, 546 bytes, Stack size 72 bytes, canard.o(i.canardDecodeScalar))
  1520. <BR><BR>[Stack]<UL><LI>Max Depth = 180<LI>Call Chain = canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  1521. </UL>
  1522. <BR>[Calls]<UL><LI><a href="#[16f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;swapByteOrder
  1523. <LI><a href="#[16e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;isBigEndian
  1524. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;descatterTransferPayload
  1525. <LI><a href="#[81]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsl
  1526. </UL>
  1527. <BR>[Called By]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_file_BeginFirmwareUpdateRequest_decode
  1528. <LI><a href="#[13e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_file_Path_decode
  1529. <LI><a href="#[13b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_dynamic_node_id_Allocation_decode
  1530. <LI><a href="#[133]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_navigation_GlobalNavigationSolution_decode
  1531. </UL>
  1532. <P><STRONG><a name="[131]"></a>canardEncodeScalar</STRONG> (Thumb, 188 bytes, Stack size 40 bytes, canard.o(i.canardEncodeScalar))
  1533. <BR><BR>[Stack]<UL><LI>Max Depth = 76<LI>Call Chain = canardEncodeScalar &rArr; copyBitArray
  1534. </UL>
  1535. <BR>[Calls]<UL><LI><a href="#[16f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;swapByteOrder
  1536. <LI><a href="#[16e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;isBigEndian
  1537. <LI><a href="#[170]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;copyBitArray
  1538. </UL>
  1539. <BR>[Called By]<UL><LI><a href="#[13d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_file_BeginFirmwareUpdateResponse_encode
  1540. <LI><a href="#[13c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_dynamic_node_id_Allocation_encode
  1541. <LI><a href="#[130]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_equipment_range_sensor_Measurement_encode
  1542. <LI><a href="#[13a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_NodeStatus_encode
  1543. <LI><a href="#[138]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_SoftwareVersion_encode
  1544. <LI><a href="#[137]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_NodeStatus_encode
  1545. <LI><a href="#[139]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_HardwareVersion_encode
  1546. <LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_GetNodeInfoResponse_encode
  1547. </UL>
  1548. <P><STRONG><a name="[b9]"></a>canardGetLocalNodeID</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, canard.o(i.canardGetLocalNodeID))
  1549. <BR><BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  1550. <LI><a href="#[6c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_ShouldAccept
  1551. <LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SaveBeginFirmwareUpdateRequest
  1552. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsRelevantFrame
  1553. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  1554. <LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespondObj
  1555. <LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcastObj
  1556. </UL>
  1557. <P><STRONG><a name="[b8]"></a>canardHandleRxFrame</STRONG> (Thumb, 1212 bytes, Stack size 144 bytes, canard.o(i.canardHandleRxFrame))
  1558. <BR><BR>[Stack]<UL><LI>Max Depth = 224<LI>Call Chain = canardHandleRxFrame &rArr; traverseRxStates &rArr; prependRxState &rArr; createRxState
  1559. </UL>
  1560. <BR>[Calls]<UL><LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardReleaseRxTransferPayload
  1561. <LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  1562. <LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;extractTransferType
  1563. <LI><a href="#[172]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;extractDataType
  1564. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;traverseRxStates
  1565. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;releaseStatePayload
  1566. <LI><a href="#[176]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prepareForNextTransfer
  1567. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;findRxState
  1568. <LI><a href="#[15b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAddSignature
  1569. <LI><a href="#[15c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAdd
  1570. <LI><a href="#[175]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;computeTransferIDForwardDistance
  1571. <LI><a href="#[158]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBufferFromIdx
  1572. <LI><a href="#[155]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;bufferBlockPushBytes
  1573. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1574. </UL>
  1575. <BR>[Called By]<UL><LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleRxMessage
  1576. </UL>
  1577. <P><STRONG><a name="[166]"></a>canardInit</STRONG> (Thumb, 70 bytes, Stack size 32 bytes, canard.o(i.canardInit))
  1578. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = canardInit &rArr; initPoolAllocator
  1579. </UL>
  1580. <BR>[Calls]<UL><LI><a href="#[177]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;initPoolAllocator
  1581. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1582. </UL>
  1583. <BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  1584. </UL>
  1585. <P><STRONG><a name="[af]"></a>canardPeekTxQueue</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, canard.o(i.canardPeekTxQueue))
  1586. <BR><BR>[Called By]<UL><LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  1587. </UL>
  1588. <P><STRONG><a name="[ae]"></a>canardPopTxQueue</STRONG> (Thumb, 22 bytes, Stack size 16 bytes, canard.o(i.canardPopTxQueue))
  1589. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = canardPopTxQueue &rArr; freeBlock
  1590. </UL>
  1591. <BR>[Calls]<UL><LI><a href="#[16c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;freeBlock
  1592. </UL>
  1593. <BR>[Called By]<UL><LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  1594. </UL>
  1595. <P><STRONG><a name="[cf]"></a>canardReleaseRxTransferPayload</STRONG> (Thumb, 42 bytes, Stack size 16 bytes, canard.o(i.canardReleaseRxTransferPayload))
  1596. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = canardReleaseRxTransferPayload &rArr; freeBlock
  1597. </UL>
  1598. <BR>[Calls]<UL><LI><a href="#[16c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;freeBlock
  1599. </UL>
  1600. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  1601. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  1602. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  1603. </UL>
  1604. <P><STRONG><a name="[d0]"></a>canardRequestOrRespond</STRONG> (Thumb, 78 bytes, Stack size 96 bytes, canard.o(i.canardRequestOrRespond))
  1605. <BR><BR>[Stack]<UL><LI>Max Depth = 260<LI>Call Chain = canardRequestOrRespond &rArr; canardRequestOrRespondObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  1606. </UL>
  1607. <BR>[Calls]<UL><LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespondObj
  1608. </UL>
  1609. <BR>[Called By]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  1610. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  1611. </UL>
  1612. <P><STRONG><a name="[178]"></a>canardRequestOrRespondObj</STRONG> (Thumb, 130 bytes, Stack size 32 bytes, canard.o(i.canardRequestOrRespondObj))
  1613. <BR><BR>[Stack]<UL><LI>Max Depth = 164<LI>Call Chain = canardRequestOrRespondObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  1614. </UL>
  1615. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  1616. <LI><a href="#[169]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;incrementTransferID
  1617. <LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  1618. <LI><a href="#[15a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;calculateCRC
  1619. </UL>
  1620. <BR>[Called By]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespond
  1621. </UL>
  1622. <P><STRONG><a name="[b4]"></a>canardSetLocalNodeID</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, canard.o(i.canardSetLocalNodeID))
  1623. <BR><BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UseStaticNodeID
  1624. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  1625. </UL>
  1626. <P><STRONG><a name="[f2]"></a>check_conf_info</STRONG> (Thumb, 58 bytes, Stack size 8 bytes, dri_flash.o(i.check_conf_info))
  1627. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = check_conf_info &rArr; write_conf_info &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  1628. </UL>
  1629. <BR>[Calls]<UL><LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_conf_info
  1630. </UL>
  1631. <BR>[Called By]<UL><LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  1632. </UL>
  1633. <P><STRONG><a name="[7b]"></a>cmd_free</STRONG> (Thumb, 14 bytes, Stack size 16 bytes, msh.o(i.cmd_free))
  1634. <BR><BR>[Stack]<UL><LI>Max Depth = 112<LI>Call Chain = cmd_free &rArr; list_mem &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1635. </UL>
  1636. <BR>[Calls]<UL><LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_mem
  1637. </UL>
  1638. <BR>[Address Reference Count : 1]<UL><LI> msh.o(FSymTab)
  1639. </UL>
  1640. <P><STRONG><a name="[7a]"></a>cmd_ps</STRONG> (Thumb, 14 bytes, Stack size 16 bytes, msh.o(i.cmd_ps))
  1641. <BR><BR>[Stack]<UL><LI>Max Depth = 240<LI>Call Chain = cmd_ps &rArr; list_thread &rArr; _list_thread &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1642. </UL>
  1643. <BR>[Calls]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_thread
  1644. </UL>
  1645. <BR>[Address Reference Count : 1]<UL><LI> msh.o(FSymTab)
  1646. </UL>
  1647. <P><STRONG><a name="[172]"></a>extractDataType</STRONG> (Thumb, 36 bytes, Stack size 4 bytes, canard.o(i.extractDataType))
  1648. <BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = extractDataType
  1649. </UL>
  1650. <BR>[Calls]<UL><LI><a href="#[171]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;extractTransferType
  1651. </UL>
  1652. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  1653. </UL>
  1654. <P><STRONG><a name="[171]"></a>extractTransferType</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, canard.o(i.extractTransferType))
  1655. <BR><BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  1656. <LI><a href="#[172]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;extractDataType
  1657. </UL>
  1658. <P><STRONG><a name="[de]"></a>flash_read</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, dri_flash.o(i.flash_read))
  1659. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = flash_read
  1660. </UL>
  1661. <BR>[Called By]<UL><LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_iap_info
  1662. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_dev_info
  1663. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_conf_info
  1664. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_boot_info
  1665. <LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextWrite
  1666. </UL>
  1667. <P><STRONG><a name="[dd]"></a>flash_write</STRONG> (Thumb, 192 bytes, Stack size 56 bytes, dri_flash.o(i.flash_write))
  1668. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  1669. </UL>
  1670. <BR>[Calls]<UL><LI><a href="#[ec]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_ProgramWord
  1671. <LI><a href="#[180]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_PRIMASK
  1672. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Unlock
  1673. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Lock
  1674. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_EraseOnePage
  1675. </UL>
  1676. <BR>[Called By]<UL><LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_iap_info
  1677. <LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_dev_info
  1678. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_conf_info
  1679. <LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextWrite
  1680. <LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  1681. </UL>
  1682. <P><STRONG><a name="[181]"></a>gpio_init</STRONG> (Thumb, 46 bytes, Stack size 8 bytes, gpio.o(i.gpio_init))
  1683. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = gpio_init &rArr; GPIO_InitPeripheral
  1684. </UL>
  1685. <BR>[Calls]<UL><LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetBits
  1686. <LI><a href="#[15d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB2PeriphClk
  1687. <LI><a href="#[15f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_InitPeripheral
  1688. </UL>
  1689. <BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  1690. </UL>
  1691. <P><STRONG><a name="[71]"></a>hello</STRONG> (Thumb, 12 bytes, Stack size 8 bytes, cmd.o(i.hello))
  1692. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = hello &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1693. </UL>
  1694. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1695. </UL>
  1696. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1697. </UL>
  1698. <P><STRONG><a name="[78]"></a>list</STRONG> (Thumb, 54 bytes, Stack size 8 bytes, cmd.o(i.list))
  1699. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = list &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1700. </UL>
  1701. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1702. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strncmp
  1703. </UL>
  1704. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1705. </UL>
  1706. <P><STRONG><a name="[77]"></a>list_device</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, cmd.o(i.list_device))
  1707. <BR><BR>[Stack]<UL><LI>Max Depth = 296<LI>Call Chain = list_device &rArr; _list_device &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1708. </UL>
  1709. <BR>[Calls]<UL><LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  1710. <LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_device
  1711. </UL>
  1712. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1713. </UL>
  1714. <P><STRONG><a name="[70]"></a>list_mem</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, mem.o(i.list_mem))
  1715. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = list_mem &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1716. </UL>
  1717. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1718. </UL>
  1719. <BR>[Called By]<UL><LI><a href="#[7b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;cmd_free
  1720. </UL>
  1721. <BR>[Address Reference Count : 1]<UL><LI> mem.o(FSymTab)
  1722. </UL>
  1723. <P><STRONG><a name="[75]"></a>list_mutex</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, cmd.o(i.list_mutex))
  1724. <BR><BR>[Stack]<UL><LI>Max Depth = 224<LI>Call Chain = list_mutex &rArr; _list_mutex &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1725. </UL>
  1726. <BR>[Calls]<UL><LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  1727. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_mutex
  1728. </UL>
  1729. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1730. </UL>
  1731. <P><STRONG><a name="[74]"></a>list_sem</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, cmd.o(i.list_sem))
  1732. <BR><BR>[Stack]<UL><LI>Max Depth = 216<LI>Call Chain = list_sem &rArr; _list_sem &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1733. </UL>
  1734. <BR>[Calls]<UL><LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  1735. <LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_sem
  1736. </UL>
  1737. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1738. </UL>
  1739. <P><STRONG><a name="[73]"></a>list_thread</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, cmd.o(i.list_thread))
  1740. <BR><BR>[Stack]<UL><LI>Max Depth = 224<LI>Call Chain = list_thread &rArr; _list_thread &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1741. </UL>
  1742. <BR>[Calls]<UL><LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  1743. <LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_thread
  1744. </UL>
  1745. <BR>[Called By]<UL><LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_hard_fault_exception
  1746. <LI><a href="#[14d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_scheduler_stack_check
  1747. <LI><a href="#[7a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;cmd_ps
  1748. </UL>
  1749. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1750. </UL>
  1751. <P><STRONG><a name="[76]"></a>list_timer</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, cmd.o(i.list_timer))
  1752. <BR><BR>[Stack]<UL><LI>Max Depth = 216<LI>Call Chain = list_timer &rArr; _list_timer &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1753. </UL>
  1754. <BR>[Calls]<UL><LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  1755. <LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_timer
  1756. </UL>
  1757. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  1758. </UL>
  1759. <P><STRONG><a name="[187]"></a>log_init</STRONG> (Thumb, 190 bytes, Stack size 32 bytes, log.o(i.log_init))
  1760. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = log_init &rArr; USART_Init &rArr; RCC_GetClocksFreqValue
  1761. </UL>
  1762. <BR>[Calls]<UL><LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Init
  1763. <LI><a href="#[18a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Enable
  1764. <LI><a href="#[120]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_DeInit
  1765. <LI><a href="#[189]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ConfigInt
  1766. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_PriorityGroupConfig
  1767. <LI><a href="#[15d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB2PeriphClk
  1768. <LI><a href="#[165]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  1769. <LI><a href="#[15f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_InitPeripheral
  1770. <LI><a href="#[160]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ConfigPinRemap
  1771. </UL>
  1772. <BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  1773. </UL>
  1774. <P><STRONG><a name="[61]"></a>main</STRONG> (Thumb, 14 bytes, Stack size 8 bytes, main.o(i.main))
  1775. <BR><BR>[Stack]<UL><LI>Max Depth = 344<LI>Call Chain = main &rArr; rtthread_startup &rArr; rt_application_init &rArr; rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1776. </UL>
  1777. <BR>[Calls]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  1778. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  1779. </UL>
  1780. <BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
  1781. </UL>
  1782. <P><STRONG><a name="[79]"></a>msh_help</STRONG> (Thumb, 66 bytes, Stack size 16 bytes, msh.o(i.msh_help))
  1783. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = msh_help &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1784. </UL>
  1785. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1786. <LI><a href="#[185]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strncmp
  1787. </UL>
  1788. <BR>[Address Reference Count : 1]<UL><LI> msh.o(FSymTab)
  1789. </UL>
  1790. <P><STRONG><a name="[e9]"></a>myflash_erasepage</STRONG> (Thumb, 76 bytes, Stack size 24 bytes, dri_can.o(i.myflash_erasepage))
  1791. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = myflash_erasepage &rArr; FLASH_EraseOnePage &rArr; FLASH_WaitForLastOpt
  1792. </UL>
  1793. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  1794. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  1795. <LI><a href="#[ea]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Unlock
  1796. <LI><a href="#[eb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_Lock
  1797. <LI><a href="#[e5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_EraseOnePage
  1798. </UL>
  1799. <BR>[Called By]<UL><LI><a href="#[e8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;FLASH_LOG
  1800. </UL>
  1801. <P><STRONG><a name="[95]"></a>parse_radar_response</STRONG> (Thumb, 530 bytes, Stack size 72 bytes, algorithm.o(i.parse_radar_response))
  1802. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = parse_radar_response &rArr; MyCAN_Transmit &rArr; CAN_TransmitSTS
  1803. </UL>
  1804. <BR>[Calls]<UL><LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;calculate_flag
  1805. <LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MyCAN_Transmit
  1806. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  1807. <LI><a href="#[18d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Get_Crc16
  1808. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  1809. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  1810. </UL>
  1811. <BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  1812. </UL>
  1813. <P><STRONG><a name="[100]"></a>quat_rotate_point</STRONG> (Thumb, 170 bytes, Stack size 80 bytes, algorithm.o(i.quat_rotate_point))
  1814. <BR><BR>[Stack]<UL><LI>Max Depth = 208<LI>Call Chain = quat_rotate_point &rArr; Quaternion_ConjInv &rArr; Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1815. </UL>
  1816. <BR>[Calls]<UL><LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_ConjInv
  1817. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Conj
  1818. </UL>
  1819. <BR>[Called By]<UL><LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudConvert
  1820. </UL>
  1821. <P><STRONG><a name="[107]"></a>quat_rotate_point_filter</STRONG> (Thumb, 104 bytes, Stack size 72 bytes, algorithm.o(i.quat_rotate_point_filter))
  1822. <BR><BR>[Stack]<UL><LI>Max Depth = 200<LI>Call Chain = quat_rotate_point_filter &rArr; Quaternion_ConjInv &rArr; Quaternion_Inversed &rArr; Vector_GetNorm &rArr; __hardfp_sqrtf
  1823. </UL>
  1824. <BR>[Calls]<UL><LI><a href="#[10b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_ConjInv
  1825. <LI><a href="#[108]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Conj
  1826. </UL>
  1827. <BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1828. </UL>
  1829. <P><STRONG><a name="[f5]"></a>read_boot_info</STRONG> (Thumb, 14 bytes, Stack size 4 bytes, dri_flash.o(i.read_boot_info))
  1830. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = read_boot_info &rArr; flash_read
  1831. </UL>
  1832. <BR>[Calls]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_read
  1833. </UL>
  1834. <BR>[Called By]<UL><LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  1835. </UL>
  1836. <P><STRONG><a name="[f0]"></a>read_conf_info</STRONG> (Thumb, 14 bytes, Stack size 4 bytes, dri_flash.o(i.read_conf_info))
  1837. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = read_conf_info &rArr; flash_read
  1838. </UL>
  1839. <BR>[Calls]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_read
  1840. </UL>
  1841. <BR>[Called By]<UL><LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  1842. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  1843. </UL>
  1844. <P><STRONG><a name="[f3]"></a>read_dev_info</STRONG> (Thumb, 14 bytes, Stack size 4 bytes, dri_flash.o(i.read_dev_info))
  1845. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = read_dev_info &rArr; flash_read
  1846. </UL>
  1847. <BR>[Calls]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_read
  1848. </UL>
  1849. <BR>[Called By]<UL><LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  1850. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  1851. </UL>
  1852. <P><STRONG><a name="[ee]"></a>read_iap_info</STRONG> (Thumb, 14 bytes, Stack size 4 bytes, dri_flash.o(i.read_iap_info))
  1853. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = read_iap_info &rArr; flash_read
  1854. </UL>
  1855. <BR>[Calls]<UL><LI><a href="#[de]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_read
  1856. </UL>
  1857. <BR>[Called By]<UL><LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  1858. </UL>
  1859. <P><STRONG><a name="[fe]"></a>read_uid</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, dri_flash.o(i.read_uid))
  1860. <BR><BR>[Called By]<UL><LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  1861. <LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  1862. </UL>
  1863. <P><STRONG><a name="[192]"></a>rt_application_init</STRONG> (Thumb, 320 bytes, Stack size 24 bytes, application.o(i.rt_application_init))
  1864. <BR><BR>[Stack]<UL><LI>Max Depth = 328<LI>Call Chain = rt_application_init &rArr; rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1865. </UL>
  1866. <BR>[Calls]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  1867. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  1868. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  1869. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_init
  1870. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1871. </UL>
  1872. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  1873. </UL>
  1874. <P><STRONG><a name="[14e]"></a>rt_assert_handler</STRONG> (Thumb, 56 bytes, Stack size 24 bytes, kservice.o(i.rt_assert_handler))
  1875. <BR><BR>[Stack]<UL><LI>Max Depth = 24 + In Cycle
  1876. <LI>Call Chain = rt_assert_handler &rArr; rt_kprintf (Cycle)
  1877. </UL>
  1878. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1879. </UL>
  1880. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  1881. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  1882. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  1883. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  1884. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  1885. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  1886. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  1887. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_init
  1888. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  1889. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_init
  1890. <LI><a href="#[18e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;plug_holes
  1891. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  1892. <LI><a href="#[1b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_control
  1893. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  1894. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  1895. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  1896. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  1897. <LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_delete
  1898. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  1899. <LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_is_systemobject
  1900. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  1901. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  1902. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  1903. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  1904. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  1905. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_write
  1906. <LI><a href="#[197]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_open
  1907. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  1908. <LI><a href="#[196]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_close
  1909. <LI><a href="#[11d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_hwtimer_isr
  1910. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  1911. <LI><a href="#[152]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_init
  1912. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  1913. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_timeout
  1914. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  1915. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  1916. <LI><a href="#[14f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_thread_init
  1917. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  1918. <LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_insert_thread
  1919. <LI><a href="#[14d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_scheduler_stack_check
  1920. </UL>
  1921. <P><STRONG><a name="[194]"></a>rt_console_set_device</STRONG> (Thumb, 48 bytes, Stack size 16 bytes, kservice.o(i.rt_console_set_device))
  1922. <BR><BR>[Stack]<UL><LI>Max Depth = 176<LI>Call Chain = rt_console_set_device &rArr; rt_device_find &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1923. </UL>
  1924. <BR>[Calls]<UL><LI><a href="#[197]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_open
  1925. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  1926. <LI><a href="#[196]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_close
  1927. </UL>
  1928. <BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  1929. </UL>
  1930. <P><STRONG><a name="[196]"></a>rt_device_close</STRONG> (Thumb, 92 bytes, Stack size 16 bytes, device.o(i.rt_device_close))
  1931. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = rt_device_close &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  1932. </UL>
  1933. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  1934. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  1935. </UL>
  1936. <BR>[Called By]<UL><LI><a href="#[194]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_console_set_device
  1937. </UL>
  1938. <P><STRONG><a name="[195]"></a>rt_device_find</STRONG> (Thumb, 94 bytes, Stack size 24 bytes, device.o(i.rt_device_find))
  1939. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = rt_device_find &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1940. </UL>
  1941. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  1942. <LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  1943. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  1944. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  1945. <LI><a href="#[19a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_strncmp
  1946. <LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  1947. </UL>
  1948. <BR>[Called By]<UL><LI><a href="#[194]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_console_set_device
  1949. </UL>
  1950. <P><STRONG><a name="[11d]"></a>rt_device_hwtimer_isr</STRONG> (Thumb, 78 bytes, Stack size 8 bytes, hwtimer.o(i.rt_device_hwtimer_isr))
  1951. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = rt_device_hwtimer_isr &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  1952. </UL>
  1953. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  1954. </UL>
  1955. <BR>[Called By]<UL><LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_IRQHandler
  1956. </UL>
  1957. <P><STRONG><a name="[197]"></a>rt_device_open</STRONG> (Thumb, 170 bytes, Stack size 16 bytes, device.o(i.rt_device_open))
  1958. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = rt_device_open &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1959. </UL>
  1960. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  1961. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1962. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  1963. </UL>
  1964. <BR>[Called By]<UL><LI><a href="#[194]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_console_set_device
  1965. </UL>
  1966. <P><STRONG><a name="[19b]"></a>rt_device_write</STRONG> (Thumb, 98 bytes, Stack size 24 bytes, device.o(i.rt_device_write))
  1967. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  1968. </UL>
  1969. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  1970. <LI><a href="#[19c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_set_errno
  1971. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  1972. </UL>
  1973. <BR>[Called By]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  1974. </UL>
  1975. <P><STRONG><a name="[105]"></a>rt_enter_critical</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, scheduler.o(i.rt_enter_critical))
  1976. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = rt_enter_critical
  1977. </UL>
  1978. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  1979. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  1980. </UL>
  1981. <BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1982. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  1983. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  1984. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  1985. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  1986. </UL>
  1987. <P><STRONG><a name="[106]"></a>rt_exit_critical</STRONG> (Thumb, 60 bytes, Stack size 8 bytes, scheduler.o(i.rt_exit_critical))
  1988. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  1989. </UL>
  1990. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  1991. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  1992. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  1993. </UL>
  1994. <BR>[Called By]<UL><LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  1995. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  1996. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  1997. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  1998. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  1999. </UL>
  2000. <P><STRONG><a name="[19e]"></a>rt_free</STRONG> (Thumb, 260 bytes, Stack size 16 bytes, mem.o(i.rt_free))
  2001. <BR><BR>[Stack]<UL><LI>Max Depth = 176<LI>Call Chain = rt_free &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2002. </UL>
  2003. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2004. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2005. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  2006. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2007. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2008. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2009. <LI><a href="#[18e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;plug_holes
  2010. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2011. </UL>
  2012. <BR>[Called By]<UL><LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_delete
  2013. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  2014. </UL>
  2015. <P><STRONG><a name="[1a0]"></a>rt_hw_board_init</STRONG> (Thumb, 110 bytes, Stack size 16 bytes, bsp.o(i.rt_hw_board_init))
  2016. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = rt_hw_board_init &rArr; rt_console_set_device &rArr; rt_device_find &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2017. </UL>
  2018. <BR>[Calls]<UL><LI><a href="#[194]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_console_set_device
  2019. <LI><a href="#[187]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;log_init
  2020. <LI><a href="#[f9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Configuration
  2021. <LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetBits
  2022. <LI><a href="#[1a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usart_init
  2023. <LI><a href="#[10f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SetSysClockToPLL
  2024. <LI><a href="#[181]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;gpio_init
  2025. </UL>
  2026. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2027. </UL>
  2028. <P><STRONG><a name="[1a2]"></a>rt_hw_console_output</STRONG> (Thumb, 66 bytes, Stack size 8 bytes, log.o(i.rt_hw_console_output))
  2029. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = rt_hw_console_output
  2030. </UL>
  2031. <BR>[Calls]<UL><LI><a href="#[1a4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_SendData
  2032. <LI><a href="#[1a3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_GetFlagStatus
  2033. </UL>
  2034. <BR>[Called By]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2035. </UL>
  2036. <P><STRONG><a name="[7e]"></a>rt_hw_hard_fault_exception</STRONG> (Thumb, 220 bytes, Stack size 24 bytes, cpuport.o(i.rt_hw_hard_fault_exception))
  2037. <BR><BR>[Stack]<UL><LI>Max Depth = 248<LI>Call Chain = rt_hw_hard_fault_exception &rArr; list_thread &rArr; _list_thread &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2038. </UL>
  2039. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2040. <LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_thread
  2041. <LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;hard_fault_track
  2042. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2043. </UL>
  2044. <BR>[Called By]<UL><LI><a href="#[3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;HardFault_Handler
  2045. </UL>
  2046. <P><STRONG><a name="[151]"></a>rt_hw_stack_init</STRONG> (Thumb, 74 bytes, Stack size 20 bytes, cpuport.o(i.rt_hw_stack_init))
  2047. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = rt_hw_stack_init
  2048. </UL>
  2049. <BR>[Called By]<UL><LI><a href="#[14f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_thread_init
  2050. </UL>
  2051. <P><STRONG><a name="[a3]"></a>rt_interrupt_enter</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, irq.o(i.rt_interrupt_enter))
  2052. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = rt_interrupt_enter
  2053. </UL>
  2054. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2055. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2056. </UL>
  2057. <BR>[Called By]<UL><LI><a href="#[30]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  2058. <LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel4_IRQHandler
  2059. <LI><a href="#[a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_Handler
  2060. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  2061. <LI><a href="#[33]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTI15_10_IRQHandler
  2062. <LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  2063. <LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_IRQHandler
  2064. </UL>
  2065. <P><STRONG><a name="[19f]"></a>rt_interrupt_get_nest</STRONG> (Thumb, 22 bytes, Stack size 16 bytes, irq.o(i.rt_interrupt_get_nest))
  2066. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = rt_interrupt_get_nest
  2067. </UL>
  2068. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2069. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2070. </UL>
  2071. <BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2072. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  2073. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2074. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2075. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  2076. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2077. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  2078. <LI><a href="#[19c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_set_errno
  2079. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  2080. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  2081. </UL>
  2082. <P><STRONG><a name="[a6]"></a>rt_interrupt_leave</STRONG> (Thumb, 30 bytes, Stack size 8 bytes, irq.o(i.rt_interrupt_leave))
  2083. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = rt_interrupt_leave
  2084. </UL>
  2085. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2086. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2087. </UL>
  2088. <BR>[Called By]<UL><LI><a href="#[30]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  2089. <LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel4_IRQHandler
  2090. <LI><a href="#[a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_Handler
  2091. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  2092. <LI><a href="#[33]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;EXTI15_10_IRQHandler
  2093. <LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  2094. <LI><a href="#[24]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;TIM1_UP_IRQHandler
  2095. </UL>
  2096. <P><STRONG><a name="[101]"></a>rt_kprintf</STRONG> (Thumb, 96 bytes, Stack size 32 bytes, kservice.o(i.rt_kprintf))
  2097. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  2098. </UL>
  2099. <BR>[Calls]<UL><LI><a href="#[1a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_console_output
  2100. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_write
  2101. <LI><a href="#[1aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;vsnprintf
  2102. </UL>
  2103. <BR>[Called By]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2104. <LI><a href="#[184]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usage_fault_track
  2105. <LI><a href="#[183]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mem_manage_fault_track
  2106. <LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;hard_fault_track
  2107. <LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;bus_fault_track
  2108. <LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_hard_fault_exception
  2109. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2110. <LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  2111. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2112. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2113. <LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_application_init
  2114. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  2115. <LI><a href="#[9e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudFilter
  2116. <LI><a href="#[9f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;PointCloudConvert
  2117. <LI><a href="#[70]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_mem
  2118. <LI><a href="#[1be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_show_version
  2119. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2120. <LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  2121. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  2122. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  2123. <LI><a href="#[197]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_open
  2124. <LI><a href="#[14d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_scheduler_stack_check
  2125. <LI><a href="#[78]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list
  2126. <LI><a href="#[71]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;hello
  2127. <LI><a href="#[147]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;show_wait_queue
  2128. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_split
  2129. <LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_timer
  2130. <LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_thread
  2131. <LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_sem
  2132. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_mutex
  2133. <LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_device
  2134. <LI><a href="#[79]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;msh_help
  2135. </UL>
  2136. <P><STRONG><a name="[1ab]"></a>rt_malloc</STRONG> (Thumb, 500 bytes, Stack size 32 bytes, mem.o(i.rt_malloc))
  2137. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = rt_malloc &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2138. </UL>
  2139. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2140. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2141. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  2142. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2143. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2144. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2145. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2146. </UL>
  2147. <BR>[Called By]<UL><LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2148. </UL>
  2149. <P><STRONG><a name="[150]"></a>rt_memset</STRONG> (Thumb, 20 bytes, Stack size 12 bytes, kservice.o(i.rt_memset))
  2150. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = rt_memset
  2151. </UL>
  2152. <BR>[Called By]<UL><LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2153. <LI><a href="#[14f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_thread_init
  2154. </UL>
  2155. <P><STRONG><a name="[da]"></a>rt_mutex_init</STRONG> (Thumb, 58 bytes, Stack size 16 bytes, ipc.o(i.rt_mutex_init))
  2156. <BR><BR>[Stack]<UL><LI>Max Depth = 184<LI>Call Chain = rt_mutex_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2157. </UL>
  2158. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2159. <LI><a href="#[1ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_object_init
  2160. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  2161. </UL>
  2162. <BR>[Called By]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2163. <LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_application_init
  2164. </UL>
  2165. <P><STRONG><a name="[98]"></a>rt_mutex_release</STRONG> (Thumb, 282 bytes, Stack size 32 bytes, ipc.o(i.rt_mutex_release))
  2166. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = rt_mutex_release &rArr; rt_thread_control &rArr; rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2167. </UL>
  2168. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2169. <LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2170. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2171. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2172. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2173. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2174. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2175. <LI><a href="#[1af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_isempty
  2176. <LI><a href="#[1a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_resume
  2177. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2178. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2179. </UL>
  2180. <BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  2181. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxUnlock
  2182. </UL>
  2183. <P><STRONG><a name="[96]"></a>rt_mutex_take</STRONG> (Thumb, 328 bytes, Stack size 32 bytes, ipc.o(i.rt_mutex_take))
  2184. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = rt_mutex_take &rArr; rt_thread_control &rArr; rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2185. </UL>
  2186. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2187. <LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2188. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2189. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2190. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2191. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  2192. <LI><a href="#[1b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_control
  2193. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2194. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2195. <LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_suspend
  2196. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2197. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2198. </UL>
  2199. <BR>[Called By]<UL><LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  2200. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxLock
  2201. </UL>
  2202. <P><STRONG><a name="[1b2]"></a>rt_object_allocate</STRONG> (Thumb, 140 bytes, Stack size 32 bytes, object.o(i.rt_object_allocate))
  2203. <BR><BR>[Stack]<UL><LI>Max Depth = 224<LI>Call Chain = rt_object_allocate &rArr; rt_malloc &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2204. </UL>
  2205. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2206. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2207. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2208. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2209. <LI><a href="#[1b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_insert_after
  2210. <LI><a href="#[1b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_strncpy
  2211. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2212. <LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  2213. <LI><a href="#[150]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_memset
  2214. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  2215. </UL>
  2216. <BR>[Called By]<UL><LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  2217. </UL>
  2218. <P><STRONG><a name="[1b5]"></a>rt_object_delete</STRONG> (Thumb, 70 bytes, Stack size 16 bytes, object.o(i.rt_object_delete))
  2219. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = rt_object_delete &rArr; rt_free &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2220. </UL>
  2221. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2222. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2223. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2224. <LI><a href="#[1b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_remove
  2225. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  2226. </UL>
  2227. <BR>[Called By]<UL><LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  2228. </UL>
  2229. <P><STRONG><a name="[1b7]"></a>rt_object_detach</STRONG> (Thumb, 44 bytes, Stack size 16 bytes, object.o(i.rt_object_detach))
  2230. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = rt_object_detach &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2231. </UL>
  2232. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2233. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2234. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2235. <LI><a href="#[1b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_remove
  2236. </UL>
  2237. <BR>[Called By]<UL><LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  2238. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  2239. <LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  2240. </UL>
  2241. <P><STRONG><a name="[186]"></a>rt_object_get_information</STRONG> (Thumb, 36 bytes, Stack size 0 bytes, object.o(i.rt_object_get_information))
  2242. <BR><BR>[Called By]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_thread
  2243. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2244. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  2245. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  2246. <LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_timer
  2247. <LI><a href="#[74]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_sem
  2248. <LI><a href="#[75]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_mutex
  2249. <LI><a href="#[77]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_device
  2250. </UL>
  2251. <P><STRONG><a name="[198]"></a>rt_object_get_type</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, object.o(i.rt_object_get_type))
  2252. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2253. </UL>
  2254. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2255. </UL>
  2256. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2257. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2258. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  2259. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2260. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2261. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  2262. <LI><a href="#[1b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_control
  2263. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  2264. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  2265. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2266. <LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_write
  2267. <LI><a href="#[197]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_open
  2268. <LI><a href="#[196]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_close
  2269. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  2270. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  2271. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_timeout
  2272. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  2273. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  2274. </UL>
  2275. <P><STRONG><a name="[1ac]"></a>rt_object_init</STRONG> (Thumb, 120 bytes, Stack size 32 bytes, object.o(i.rt_object_init))
  2276. <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2277. </UL>
  2278. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2279. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2280. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2281. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  2282. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  2283. <LI><a href="#[1b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_insert_after
  2284. <LI><a href="#[1b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_strncpy
  2285. <LI><a href="#[186]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_information
  2286. </UL>
  2287. <BR>[Called By]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  2288. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_init
  2289. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_init
  2290. <LI><a href="#[152]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_init
  2291. </UL>
  2292. <P><STRONG><a name="[1b8]"></a>rt_object_is_systemobject</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, object.o(i.rt_object_is_systemobject))
  2293. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = rt_object_is_systemobject &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2294. </UL>
  2295. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2296. </UL>
  2297. <BR>[Called By]<UL><LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  2298. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  2299. <LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  2300. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  2301. </UL>
  2302. <P><STRONG><a name="[19d]"></a>rt_schedule</STRONG> (Thumb, 120 bytes, Stack size 24 bytes, scheduler.o(i.rt_schedule))
  2303. <BR><BR>[Stack]<UL><LI>Max Depth = 128<LI>Call Chain = rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2304. </UL>
  2305. <BR>[Calls]<UL><LI><a href="#[1bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_context_switch_interrupt
  2306. <LI><a href="#[1ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_context_switch
  2307. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2308. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2309. <LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_ffs
  2310. <LI><a href="#[14d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_scheduler_stack_check
  2311. </UL>
  2312. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2313. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2314. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  2315. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2316. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2317. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  2318. <LI><a href="#[1cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_yield
  2319. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_timeout
  2320. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  2321. <LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  2322. </UL>
  2323. <P><STRONG><a name="[1bc]"></a>rt_schedule_insert_thread</STRONG> (Thumb, 90 bytes, Stack size 16 bytes, scheduler.o(i.rt_schedule_insert_thread))
  2324. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = rt_schedule_insert_thread &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2325. </UL>
  2326. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2327. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2328. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2329. </UL>
  2330. <BR>[Called By]<UL><LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  2331. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2332. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_timeout
  2333. </UL>
  2334. <P><STRONG><a name="[1bd]"></a>rt_schedule_remove_thread</STRONG> (Thumb, 94 bytes, Stack size 16 bytes, scheduler.o(i.rt_schedule_remove_thread))
  2335. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = rt_schedule_remove_thread &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2336. </UL>
  2337. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2338. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2339. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2340. </UL>
  2341. <BR>[Called By]<UL><LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  2342. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2343. <LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  2344. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  2345. </UL>
  2346. <P><STRONG><a name="[193]"></a>rt_sem_create</STRONG> (Thumb, 102 bytes, Stack size 24 bytes, ipc.o(i.rt_sem_create))
  2347. <BR><BR>[Stack]<UL><LI>Max Depth = 248<LI>Call Chain = rt_sem_create &rArr; rt_object_allocate &rArr; rt_malloc &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2348. </UL>
  2349. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2350. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2351. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2352. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2353. <LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2354. <LI><a href="#[1ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_object_init
  2355. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2356. </UL>
  2357. <BR>[Called By]<UL><LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_application_init
  2358. </UL>
  2359. <P><STRONG><a name="[d9]"></a>rt_sem_init</STRONG> (Thumb, 66 bytes, Stack size 24 bytes, ipc.o(i.rt_sem_init))
  2360. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = rt_sem_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2361. </UL>
  2362. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2363. <LI><a href="#[1ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_object_init
  2364. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  2365. </UL>
  2366. <BR>[Called By]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2367. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  2368. </UL>
  2369. <P><STRONG><a name="[99]"></a>rt_sem_release</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, ipc.o(i.rt_sem_release))
  2370. <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2371. </UL>
  2372. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2373. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2374. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2375. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2376. <LI><a href="#[1af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_isempty
  2377. <LI><a href="#[1a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_resume
  2378. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2379. </UL>
  2380. <BR>[Called By]<UL><LI><a href="#[30]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART1_IRQHandler
  2381. <LI><a href="#[19]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel4_IRQHandler
  2382. <LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  2383. <LI><a href="#[31]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART2_IRQHandler
  2384. <LI><a href="#[1b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DMA1_Channel6_IRQHandler
  2385. <LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  2386. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePushFromIsr
  2387. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  2388. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  2389. </UL>
  2390. <P><STRONG><a name="[91]"></a>rt_sem_take</STRONG> (Thumb, 252 bytes, Stack size 32 bytes, ipc.o(i.rt_sem_take))
  2391. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2392. </UL>
  2393. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2394. <LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2395. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2396. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2397. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2398. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  2399. <LI><a href="#[1b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_control
  2400. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2401. <LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_suspend
  2402. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2403. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2404. </UL>
  2405. <BR>[Called By]<UL><LI><a href="#[68]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ClusterTask
  2406. <LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  2407. <LI><a href="#[67]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;AppTask
  2408. <LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2409. <LI><a href="#[1ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_malloc
  2410. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  2411. </UL>
  2412. <P><STRONG><a name="[19c]"></a>rt_set_errno</STRONG> (Thumb, 36 bytes, Stack size 16 bytes, kservice.o(i.rt_set_errno))
  2413. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = rt_set_errno &rArr; rt_interrupt_get_nest
  2414. </UL>
  2415. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2416. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2417. </UL>
  2418. <BR>[Called By]<UL><LI><a href="#[19b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_write
  2419. </UL>
  2420. <P><STRONG><a name="[1be]"></a>rt_show_version</STRONG> (Thumb, 38 bytes, Stack size 8 bytes, kservice.o(i.rt_show_version))
  2421. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = rt_show_version &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  2422. </UL>
  2423. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2424. </UL>
  2425. <BR>[Called By]<UL><LI><a href="#[72]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;version
  2426. </UL>
  2427. <P><STRONG><a name="[18c]"></a>rt_strlen</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, kservice.o(i.rt_strlen))
  2428. <BR><BR>[Called By]<UL><LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  2429. </UL>
  2430. <P><STRONG><a name="[19a]"></a>rt_strncmp</STRONG> (Thumb, 40 bytes, Stack size 12 bytes, kservice.o(i.rt_strncmp))
  2431. <BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = rt_strncmp
  2432. </UL>
  2433. <BR>[Called By]<UL><LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  2434. </UL>
  2435. <P><STRONG><a name="[1b3]"></a>rt_strncpy</STRONG> (Thumb, 52 bytes, Stack size 16 bytes, kservice.o(i.rt_strncpy))
  2436. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = rt_strncpy
  2437. </UL>
  2438. <BR>[Called By]<UL><LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  2439. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  2440. </UL>
  2441. <P><STRONG><a name="[1bf]"></a>rt_system_heap_init</STRONG> (Thumb, 204 bytes, Stack size 32 bytes, mem.o(i.rt_system_heap_init))
  2442. <BR><BR>[Stack]<UL><LI>Max Depth = 224<LI>Call Chain = rt_system_heap_init &rArr; rt_sem_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2443. </UL>
  2444. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2445. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2446. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_init
  2447. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2448. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2449. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2450. </UL>
  2451. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2452. </UL>
  2453. <P><STRONG><a name="[1c0]"></a>rt_system_scheduler_init</STRONG> (Thumb, 56 bytes, Stack size 8 bytes, scheduler.o(i.rt_system_scheduler_init))
  2454. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = rt_system_scheduler_init
  2455. </UL>
  2456. <BR>[Calls]<UL><LI><a href="#[1c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_init
  2457. </UL>
  2458. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2459. </UL>
  2460. <P><STRONG><a name="[1c2]"></a>rt_system_scheduler_start</STRONG> (Thumb, 36 bytes, Stack size 16 bytes, scheduler.o(i.rt_system_scheduler_start))
  2461. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = rt_system_scheduler_start
  2462. </UL>
  2463. <BR>[Calls]<UL><LI><a href="#[1c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_context_switch_to
  2464. <LI><a href="#[1b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__rt_ffs
  2465. </UL>
  2466. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2467. </UL>
  2468. <P><STRONG><a name="[1c4]"></a>rt_system_timer_init</STRONG> (Thumb, 24 bytes, Stack size 8 bytes, timer.o(i.rt_system_timer_init))
  2469. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = rt_system_timer_init
  2470. </UL>
  2471. <BR>[Calls]<UL><LI><a href="#[154]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_init
  2472. </UL>
  2473. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2474. </UL>
  2475. <P><STRONG><a name="[1d4]"></a>rt_system_timer_thread_init</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, timer.o(i.rt_system_timer_thread_init))
  2476. <BR><BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2477. </UL>
  2478. <P><STRONG><a name="[1ae]"></a>rt_thread_control</STRONG> (Thumb, 154 bytes, Stack size 24 bytes, thread.o(i.rt_thread_control))
  2479. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = rt_thread_control &rArr; rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2480. </UL>
  2481. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2482. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2483. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2484. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2485. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2486. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  2487. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  2488. <LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_insert_thread
  2489. </UL>
  2490. <BR>[Called By]<UL><LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2491. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2492. </UL>
  2493. <P><STRONG><a name="[1c5]"></a>rt_thread_delete</STRONG> (Thumb, 116 bytes, Stack size 16 bytes, thread.o(i.rt_thread_delete))
  2494. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = rt_thread_delete &rArr; rt_timer_detach &rArr; rt_object_detach &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2495. </UL>
  2496. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2497. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2498. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2499. <LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_is_systemobject
  2500. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2501. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  2502. <LI><a href="#[1c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_insert_after
  2503. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  2504. </UL>
  2505. <BR>[Called By]<UL><LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2506. </UL>
  2507. <P><STRONG><a name="[6a]"></a>rt_thread_exit</STRONG> (Thumb, 76 bytes, Stack size 16 bytes, thread.o(i.rt_thread_exit))
  2508. <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = rt_thread_exit &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2509. </UL>
  2510. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2511. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2512. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2513. <LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_is_systemobject
  2514. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  2515. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  2516. <LI><a href="#[1c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_insert_after
  2517. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  2518. </UL>
  2519. <BR>[Address Reference Count : 1]<UL><LI> thread.o(i._rt_thread_init)
  2520. </UL>
  2521. <P><STRONG><a name="[1c8]"></a>rt_thread_idle_excute</STRONG> (Thumb, 174 bytes, Stack size 16 bytes, idle.o(i.rt_thread_idle_excute))
  2522. <BR><BR>[Stack]<UL><LI>Max Depth = 208<LI>Call Chain = rt_thread_idle_excute &rArr; rt_object_delete &rArr; rt_free &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2523. </UL>
  2524. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2525. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  2526. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2527. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2528. <LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  2529. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  2530. <LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_delete
  2531. <LI><a href="#[19f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_interrupt_get_nest
  2532. <LI><a href="#[1c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_has_defunct_thread
  2533. <LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_is_systemobject
  2534. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  2535. <LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  2536. </UL>
  2537. <BR>[Called By]<UL><LI><a href="#[6f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_entry
  2538. </UL>
  2539. <P><STRONG><a name="[1ca]"></a>rt_thread_idle_init</STRONG> (Thumb, 38 bytes, Stack size 24 bytes, idle.o(i.rt_thread_idle_init))
  2540. <BR><BR>[Stack]<UL><LI>Max Depth = 328<LI>Call Chain = rt_thread_idle_init &rArr; rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2541. </UL>
  2542. <BR>[Calls]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2543. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  2544. </UL>
  2545. <BR>[Called By]<UL><LI><a href="#[18b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rtthread_startup
  2546. </UL>
  2547. <P><STRONG><a name="[db]"></a>rt_thread_init</STRONG> (Thumb, 74 bytes, Stack size 56 bytes, thread.o(i.rt_thread_init))
  2548. <BR><BR>[Stack]<UL><LI>Max Depth = 304<LI>Call Chain = rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2549. </UL>
  2550. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2551. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  2552. <LI><a href="#[14f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_thread_init
  2553. </UL>
  2554. <BR>[Called By]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2555. <LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_application_init
  2556. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  2557. <LI><a href="#[1ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_init
  2558. </UL>
  2559. <P><STRONG><a name="[fb]"></a>rt_thread_mdelay</STRONG> (Thumb, 20 bytes, Stack size 16 bytes, thread.o(i.rt_thread_mdelay))
  2560. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = rt_thread_mdelay &rArr; rt_thread_sleep &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2561. </UL>
  2562. <BR>[Calls]<UL><LI><a href="#[1cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_from_millisecond
  2563. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  2564. </UL>
  2565. <BR>[Called By]<UL><LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NodeStatusTask
  2566. </UL>
  2567. <P><STRONG><a name="[1a6]"></a>rt_thread_resume</STRONG> (Thumb, 104 bytes, Stack size 16 bytes, thread.o(i.rt_thread_resume))
  2568. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = rt_thread_resume &rArr; rt_timer_stop &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2569. </UL>
  2570. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2571. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2572. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2573. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2574. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  2575. <LI><a href="#[1cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_remove
  2576. <LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_insert_thread
  2577. </UL>
  2578. <BR>[Called By]<UL><LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2579. <LI><a href="#[1a5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_resume
  2580. </UL>
  2581. <P><STRONG><a name="[199]"></a>rt_thread_self</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, thread.o(i.rt_thread_self))
  2582. <BR><BR>[Called By]<UL><LI><a href="#[11a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_increase
  2583. <LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_hard_fault_exception
  2584. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2585. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2586. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2587. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2588. <LI><a href="#[19c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_set_errno
  2589. <LI><a href="#[195]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_device_find
  2590. </UL>
  2591. <P><STRONG><a name="[1cc]"></a>rt_thread_sleep</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, thread.o(i.rt_thread_sleep))
  2592. <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = rt_thread_sleep &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2593. </UL>
  2594. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2595. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2596. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2597. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  2598. <LI><a href="#[1b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_control
  2599. <LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  2600. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2601. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2602. </UL>
  2603. <BR>[Called By]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_mdelay
  2604. </UL>
  2605. <P><STRONG><a name="[dc]"></a>rt_thread_startup</STRONG> (Thumb, 110 bytes, Stack size 8 bytes, thread.o(i.rt_thread_startup))
  2606. <BR><BR>[Stack]<UL><LI>Max Depth = 136<LI>Call Chain = rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2607. </UL>
  2608. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2609. <LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2610. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  2611. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2612. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2613. </UL>
  2614. <BR>[Called By]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2615. <LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_application_init
  2616. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  2617. <LI><a href="#[1ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_init
  2618. <LI><a href="#[1ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_control
  2619. </UL>
  2620. <P><STRONG><a name="[1a8]"></a>rt_thread_suspend</STRONG> (Thumb, 112 bytes, Stack size 16 bytes, thread.o(i.rt_thread_suspend))
  2621. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = rt_thread_suspend &rArr; rt_timer_stop &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2622. </UL>
  2623. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2624. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2625. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2626. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2627. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  2628. <LI><a href="#[1bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_remove_thread
  2629. </UL>
  2630. <BR>[Called By]<UL><LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_suspend
  2631. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  2632. </UL>
  2633. <P><STRONG><a name="[6b]"></a>rt_thread_timeout</STRONG> (Thumb, 92 bytes, Stack size 16 bytes, thread.o(i.rt_thread_timeout))
  2634. <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = rt_thread_timeout &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2635. </UL>
  2636. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2637. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2638. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2639. <LI><a href="#[1cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_remove
  2640. <LI><a href="#[1bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule_insert_thread
  2641. </UL>
  2642. <BR>[Address Reference Count : 1]<UL><LI> thread.o(i._rt_thread_init)
  2643. </UL>
  2644. <P><STRONG><a name="[1cf]"></a>rt_thread_yield</STRONG> (Thumb, 92 bytes, Stack size 16 bytes, thread.o(i.rt_thread_yield))
  2645. <BR><BR>[Stack]<UL><LI>Max Depth = 144<LI>Call Chain = rt_thread_yield &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2646. </UL>
  2647. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2648. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2649. <LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  2650. <LI><a href="#[1cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_remove
  2651. </UL>
  2652. <BR>[Called By]<UL><LI><a href="#[11a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_increase
  2653. </UL>
  2654. <P><STRONG><a name="[1cb]"></a>rt_tick_from_millisecond</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, clock.o(i.rt_tick_from_millisecond))
  2655. <BR><BR>[Called By]<UL><LI><a href="#[fb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_mdelay
  2656. </UL>
  2657. <P><STRONG><a name="[b1]"></a>rt_tick_get</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, clock.o(i.rt_tick_get))
  2658. <BR><BR>[Called By]<UL><LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  2659. <LI><a href="#[66]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NodeStatusTask
  2660. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2661. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendInitialNodeStatus
  2662. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  2663. <LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2664. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  2665. <LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_GetTimeUsec
  2666. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  2667. <LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  2668. <LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_timer
  2669. </UL>
  2670. <P><STRONG><a name="[11a]"></a>rt_tick_increase</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, clock.o(i.rt_tick_increase))
  2671. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = rt_tick_increase &rArr; rt_thread_yield &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2672. </UL>
  2673. <BR>[Calls]<UL><LI><a href="#[199]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_self
  2674. <LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  2675. <LI><a href="#[1cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_yield
  2676. </UL>
  2677. <BR>[Called By]<UL><LI><a href="#[a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SysTick_Handler
  2678. </UL>
  2679. <P><STRONG><a name="[1d0]"></a>rt_timer_check</STRONG> (Thumb, 130 bytes, Stack size 16 bytes, timer.o(i.rt_timer_check))
  2680. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = rt_timer_check &rArr; rt_timer_start &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2681. </UL>
  2682. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2683. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2684. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  2685. <LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  2686. <LI><a href="#[1d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_isempty
  2687. <LI><a href="#[1d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_timer_remove
  2688. </UL>
  2689. <BR>[Called By]<UL><LI><a href="#[11a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_increase
  2690. </UL>
  2691. <P><STRONG><a name="[1b0]"></a>rt_timer_control</STRONG> (Thumb, 98 bytes, Stack size 16 bytes, timer.o(i.rt_timer_control))
  2692. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = rt_timer_control &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2693. </UL>
  2694. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2695. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2696. </UL>
  2697. <BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2698. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2699. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  2700. </UL>
  2701. <P><STRONG><a name="[1c6]"></a>rt_timer_detach</STRONG> (Thumb, 82 bytes, Stack size 16 bytes, timer.o(i.rt_timer_detach))
  2702. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = rt_timer_detach &rArr; rt_object_detach &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2703. </UL>
  2704. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2705. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2706. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2707. <LI><a href="#[1b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_is_systemobject
  2708. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2709. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  2710. <LI><a href="#[1d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_timer_remove
  2711. </UL>
  2712. <BR>[Called By]<UL><LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  2713. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  2714. </UL>
  2715. <P><STRONG><a name="[152]"></a>rt_timer_init</STRONG> (Thumb, 58 bytes, Stack size 32 bytes, timer.o(i.rt_timer_init))
  2716. <BR><BR>[Stack]<UL><LI>Max Depth = 200<LI>Call Chain = rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2717. </UL>
  2718. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2719. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  2720. <LI><a href="#[153]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_timer_init
  2721. </UL>
  2722. <BR>[Called By]<UL><LI><a href="#[14f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_thread_init
  2723. </UL>
  2724. <P><STRONG><a name="[1b1]"></a>rt_timer_start</STRONG> (Thumb, 296 bytes, Stack size 32 bytes, timer.o(i.rt_timer_start))
  2725. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = rt_timer_start &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2726. </UL>
  2727. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2728. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2729. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2730. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  2731. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2732. <LI><a href="#[1d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_insert_after
  2733. <LI><a href="#[1d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_timer_remove
  2734. </UL>
  2735. <BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2736. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2737. <LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  2738. <LI><a href="#[1cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_sleep
  2739. </UL>
  2740. <P><STRONG><a name="[1ce]"></a>rt_timer_stop</STRONG> (Thumb, 84 bytes, Stack size 16 bytes, timer.o(i.rt_timer_stop))
  2741. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = rt_timer_stop &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  2742. </UL>
  2743. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  2744. <LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2745. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2746. <LI><a href="#[198]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_get_type
  2747. <LI><a href="#[1d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_timer_remove
  2748. </UL>
  2749. <BR>[Called By]<UL><LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  2750. <LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  2751. </UL>
  2752. <P><STRONG><a name="[18b]"></a>rtthread_startup</STRONG> (Thumb, 40 bytes, Stack size 8 bytes, main.o(i.rtthread_startup))
  2753. <BR><BR>[Stack]<UL><LI>Max Depth = 336<LI>Call Chain = rtthread_startup &rArr; rt_application_init &rArr; rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2754. </UL>
  2755. <BR>[Calls]<UL><LI><a href="#[192]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_application_init
  2756. <LI><a href="#[1ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_init
  2757. <LI><a href="#[1d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_timer_thread_init
  2758. <LI><a href="#[1c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_timer_init
  2759. <LI><a href="#[1c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_scheduler_start
  2760. <LI><a href="#[1c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_scheduler_init
  2761. <LI><a href="#[1bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_heap_init
  2762. <LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  2763. </UL>
  2764. <BR>[Called By]<UL><LI><a href="#[61]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;main
  2765. </UL>
  2766. <P><STRONG><a name="[128]"></a>sqrtf</STRONG> (Thumb, 62 bytes, Stack size 16 bytes, sqrtf.o(i.sqrtf))
  2767. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = sqrtf
  2768. </UL>
  2769. <BR>[Calls]<UL><LI><a href="#[12c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_errno
  2770. </UL>
  2771. <BR>[Called By]<UL><LI><a href="#[e1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_asinf
  2772. </UL>
  2773. <P><STRONG><a name="[1a1]"></a>usart_init</STRONG> (Thumb, 188 bytes, Stack size 32 bytes, usart.o(i.usart_init))
  2774. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = usart_init &rArr; USART_Init &rArr; RCC_GetClocksFreqValue
  2775. </UL>
  2776. <BR>[Calls]<UL><LI><a href="#[122]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Init
  2777. <LI><a href="#[18a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_Enable
  2778. <LI><a href="#[120]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_DeInit
  2779. <LI><a href="#[189]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USART_ConfigInt
  2780. <LI><a href="#[1d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAHBPeriphClk
  2781. <LI><a href="#[188]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_PriorityGroupConfig
  2782. <LI><a href="#[15d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB2PeriphClk
  2783. <LI><a href="#[15e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RCC_EnableAPB1PeriphClk
  2784. <LI><a href="#[165]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;NVIC_Init
  2785. <LI><a href="#[15f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_InitPeripheral
  2786. </UL>
  2787. <BR>[Called By]<UL><LI><a href="#[1a0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_board_init
  2788. </UL>
  2789. <P><STRONG><a name="[72]"></a>version</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, cmd.o(i.version))
  2790. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = version &rArr; rt_show_version &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  2791. </UL>
  2792. <BR>[Calls]<UL><LI><a href="#[1be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_show_version
  2793. </UL>
  2794. <BR>[Address Reference Count : 1]<UL><LI> cmd.o(FSymTab)
  2795. </UL>
  2796. <P><STRONG><a name="[fd]"></a>write_conf_info</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, dri_flash.o(i.write_conf_info))
  2797. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = write_conf_info &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  2798. </UL>
  2799. <BR>[Calls]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  2800. </UL>
  2801. <BR>[Called By]<UL><LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;check_conf_info
  2802. <LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  2803. </UL>
  2804. <P><STRONG><a name="[f4]"></a>write_dev_info</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, dri_flash.o(i.write_dev_info))
  2805. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = write_dev_info &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  2806. </UL>
  2807. <BR>[Calls]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  2808. </UL>
  2809. <BR>[Called By]<UL><LI><a href="#[65]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;ParameterTask
  2810. <LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  2811. </UL>
  2812. <P><STRONG><a name="[ef]"></a>write_iap_info</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, dri_flash.o(i.write_iap_info))
  2813. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = write_iap_info &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  2814. </UL>
  2815. <BR>[Calls]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  2816. </UL>
  2817. <BR>[Called By]<UL><LI><a href="#[6e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;InitTask
  2818. </UL>
  2819. <P>
  2820. <H3>
  2821. Local Symbols
  2822. </H3>
  2823. <P><STRONG><a name="[67]"></a>AppTask</STRONG> (Thumb, 178 bytes, Stack size 0 bytes, application.o(i.AppTask))
  2824. <BR><BR>[Stack]<UL><LI>Max Depth = 192<LI>Call Chain = AppTask &rArr; rt_mutex_take &rArr; rt_thread_control &rArr; rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2825. </UL>
  2826. <BR>[Calls]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2827. <LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  2828. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  2829. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  2830. <LI><a href="#[95]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;parse_radar_response
  2831. <LI><a href="#[93]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_SetBits
  2832. <LI><a href="#[94]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;GPIO_ResetBits
  2833. <LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;memcmp
  2834. <LI><a href="#[82]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr
  2835. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2836. </UL>
  2837. <BR>[Address Reference Count : 1]<UL><LI> application.o(i.InitTask)
  2838. </UL>
  2839. <P><STRONG><a name="[6e]"></a>InitTask</STRONG> (Thumb, 376 bytes, Stack size 32 bytes, application.o(i.InitTask))
  2840. <BR><BR>[Stack]<UL><LI>Max Depth = 368<LI>Call Chain = InitTask &rArr; DroneCAN_Start &rArr; rt_thread_init &rArr; _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2841. </UL>
  2842. <BR>[Calls]<UL><LI><a href="#[ef]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_iap_info
  2843. <LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_dev_info
  2844. <LI><a href="#[dc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_startup
  2845. <LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  2846. <LI><a href="#[ee]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_iap_info
  2847. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_dev_info
  2848. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_conf_info
  2849. <LI><a href="#[f5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_boot_info
  2850. <LI><a href="#[f2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;check_conf_info
  2851. <LI><a href="#[f1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;can_init
  2852. <LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2853. </UL>
  2854. <BR>[Address Reference Count : 1]<UL><LI> application.o(i.rt_application_init)
  2855. </UL>
  2856. <P><STRONG><a name="[65]"></a>ParameterTask</STRONG> (Thumb, 1504 bytes, Stack size 0 bytes, application.o(i.ParameterTask))
  2857. <BR><BR>[Stack]<UL><LI>Max Depth = 160<LI>Call Chain = ParameterTask &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2858. </UL>
  2859. <BR>[Calls]<UL><LI><a href="#[f4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_dev_info
  2860. <LI><a href="#[fd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;write_conf_info
  2861. <LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2862. <LI><a href="#[fe]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_uid
  2863. <LI><a href="#[f3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_dev_info
  2864. <LI><a href="#[f0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;read_conf_info
  2865. <LI><a href="#[fc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;calculate_flag
  2866. <LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MyCAN_Transmit
  2867. </UL>
  2868. <BR>[Address Reference Count : 1]<UL><LI> application.o(i.InitTask)
  2869. </UL>
  2870. <P><STRONG><a name="[aa]"></a>DroneCAN_DNA_Reset</STRONG> (Thumb, 80 bytes, Stack size 16 bytes, dri_can.o(i.DroneCAN_DNA_Reset))
  2871. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = DroneCAN_DNA_Reset
  2872. </UL>
  2873. <BR>[Calls]<UL><LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_MillisecondsToTicks
  2874. </UL>
  2875. <BR>[Called By]<UL><LI><a href="#[d8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_Start
  2876. <LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2877. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  2878. </UL>
  2879. <P><STRONG><a name="[ac]"></a>DroneCAN_FlushTxQueue</STRONG> (Thumb, 40 bytes, Stack size 8 bytes, dri_can.o(i.DroneCAN_FlushTxQueue))
  2880. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = DroneCAN_FlushTxQueue &rArr; MyCAN_Transmit &rArr; CAN_TransmitSTS
  2881. </UL>
  2882. <BR>[Calls]<UL><LI><a href="#[ad]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MyCAN_Transmit
  2883. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardPopTxQueue
  2884. <LI><a href="#[af]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardPeekTxQueue
  2885. </UL>
  2886. <BR>[Called By]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  2887. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  2888. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  2889. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  2890. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  2891. </UL>
  2892. <P><STRONG><a name="[b0]"></a>DroneCAN_GetTimeUsec</STRONG> (Thumb, 28 bytes, Stack size 16 bytes, dri_can.o(i.DroneCAN_GetTimeUsec))
  2893. <BR><BR>[Stack]<UL><LI>Max Depth = 56<LI>Call Chain = DroneCAN_GetTimeUsec &rArr; __aeabi_uldivmod
  2894. </UL>
  2895. <BR>[Calls]<UL><LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  2896. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  2897. </UL>
  2898. <BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2899. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleRxMessage
  2900. </UL>
  2901. <P><STRONG><a name="[b2]"></a>DroneCAN_HandleDynamicNodeIDAllocation</STRONG> (Thumb, 218 bytes, Stack size 40 bytes, dri_can.o(i.DroneCAN_HandleDynamicNodeIDAllocation))
  2902. <BR><BR>[Stack]<UL><LI>Max Depth = 348<LI>Call Chain = DroneCAN_HandleDynamicNodeIDAllocation &rArr; DroneCAN_SendInitialNodeStatus &rArr; DroneCAN_SendNodeStatus &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  2903. </UL>
  2904. <BR>[Calls]<UL><LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardSetLocalNodeID
  2905. <LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_dynamic_node_id_Allocation_decode
  2906. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendInitialNodeStatus
  2907. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_MillisecondsToTicks
  2908. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_DNA_Reset
  2909. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  2910. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  2911. <LI><a href="#[92]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;memcmp
  2912. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  2913. </UL>
  2914. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  2915. </UL>
  2916. <P><STRONG><a name="[b6]"></a>DroneCAN_HandleRxMessage</STRONG> (Thumb, 118 bytes, Stack size 40 bytes, dri_can.o(i.DroneCAN_HandleRxMessage))
  2917. <BR><BR>[Stack]<UL><LI>Max Depth = 264<LI>Call Chain = DroneCAN_HandleRxMessage &rArr; canardHandleRxFrame &rArr; traverseRxStates &rArr; prependRxState &rArr; createRxState
  2918. </UL>
  2919. <BR>[Calls]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  2920. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsRelevantFrame
  2921. <LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_GetTimeUsec
  2922. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  2923. </UL>
  2924. <BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2925. </UL>
  2926. <P><STRONG><a name="[b7]"></a>DroneCAN_IsRelevantFrame</STRONG> (Thumb, 104 bytes, Stack size 16 bytes, dri_can.o(i.DroneCAN_IsRelevantFrame))
  2927. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = DroneCAN_IsRelevantFrame &rArr; DroneCAN_IsNodeIDAllocated
  2928. </UL>
  2929. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  2930. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  2931. </UL>
  2932. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  2933. <LI><a href="#[c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePushFromIsr
  2934. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleRxMessage
  2935. </UL>
  2936. <P><STRONG><a name="[ab]"></a>DroneCAN_MillisecondsToTicks</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, dri_can.o(i.DroneCAN_MillisecondsToTicks))
  2937. <BR><BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2938. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  2939. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_DNA_Reset
  2940. </UL>
  2941. <P><STRONG><a name="[6d]"></a>DroneCAN_OnReception</STRONG> (Thumb, 300 bytes, Stack size 224 bytes, dri_can.o(i.DroneCAN_OnReception))
  2942. <BR><BR>[Stack]<UL><LI>Max Depth = 1308<LI>Call Chain = DroneCAN_OnReception &rArr; DroneCAN_SendGetNodeInfoResponse &rArr; canardRequestOrRespond &rArr; canardRequestOrRespondObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  2943. </UL>
  2944. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2945. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2946. <LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_file_BeginFirmwareUpdateRequest_decode
  2947. <LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_navigation_GlobalNavigationSolution_decode
  2948. <LI><a href="#[8c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2f
  2949. <LI><a href="#[be]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__set_PRIMASK
  2950. <LI><a href="#[bf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__NVIC_SystemReset
  2951. <LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  2952. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  2953. <LI><a href="#[bc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SaveBeginFirmwareUpdateRequest
  2954. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  2955. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  2956. </UL>
  2957. <BR>[Address Reference Count : 1]<UL><LI> dri_can.o(i.can_init)
  2958. </UL>
  2959. <P><STRONG><a name="[c3]"></a>DroneCAN_RxQueuePop</STRONG> (Thumb, 88 bytes, Stack size 16 bytes, dri_can.o(i.DroneCAN_RxQueuePop))
  2960. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = DroneCAN_RxQueuePop
  2961. </UL>
  2962. <BR>[Calls]<UL><LI><a href="#[c2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_enable
  2963. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  2964. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  2965. </UL>
  2966. <BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  2967. </UL>
  2968. <P><STRONG><a name="[c5]"></a>DroneCAN_RxQueuePushFromIsr</STRONG> (Thumb, 98 bytes, Stack size 8 bytes, dri_can.o(i.DroneCAN_RxQueuePushFromIsr))
  2969. <BR><BR>[Stack]<UL><LI>Max Depth = 152<LI>Call Chain = DroneCAN_RxQueuePushFromIsr &rArr; rt_sem_release &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  2970. </UL>
  2971. <BR>[Calls]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  2972. <LI><a href="#[b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsRelevantFrame
  2973. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  2974. </UL>
  2975. <BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  2976. </UL>
  2977. <P><STRONG><a name="[64]"></a>DroneCAN_RxThreadEntry</STRONG> (Thumb, 228 bytes, Stack size 24 bytes, dri_can.o(i.DroneCAN_RxThreadEntry))
  2978. <BR><BR>[Stack]<UL><LI>Max Depth = 356<LI>Call Chain = DroneCAN_RxThreadEntry &rArr; DroneCAN_SendDynamicNodeIDRequest &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  2979. </UL>
  2980. <BR>[Calls]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  2981. <LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardCleanupStaleTransfers
  2982. <LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UseStaticNodeID
  2983. <LI><a href="#[c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TickReached
  2984. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  2985. <LI><a href="#[c3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxQueuePop
  2986. <LI><a href="#[ab]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_MillisecondsToTicks
  2987. <LI><a href="#[b6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleRxMessage
  2988. <LI><a href="#[b0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_GetTimeUsec
  2989. <LI><a href="#[aa]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_DNA_Reset
  2990. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  2991. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  2992. </UL>
  2993. <BR>[Address Reference Count : 1]<UL><LI> dri_can.o(i.DroneCAN_Start)
  2994. </UL>
  2995. <P><STRONG><a name="[bc]"></a>DroneCAN_SaveBeginFirmwareUpdateRequest</STRONG> (Thumb, 108 bytes, Stack size 16 bytes, dri_can.o(i.DroneCAN_SaveBeginFirmwareUpdateRequest))
  2996. <BR><BR>[Stack]<UL><LI>Max Depth = 328<LI>Call Chain = DroneCAN_SaveBeginFirmwareUpdateRequest &rArr; DroneCAN_UpdateContextWrite &rArr; flash_write &rArr; FLASH_ProgramWord &rArr; FLASH_WaitForLastOpt
  2997. </UL>
  2998. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  2999. <LI><a href="#[cb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextWrite
  3000. <LI><a href="#[ca]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UpdateContextCalcCRC32
  3001. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  3002. </UL>
  3003. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  3004. </UL>
  3005. <P><STRONG><a name="[bd]"></a>DroneCAN_SendBeginFirmwareUpdateResponse</STRONG> (Thumb, 160 bytes, Stack size 320 bytes, dri_can.o(i.DroneCAN_SendBeginFirmwareUpdateResponse))
  3006. <BR><BR>[Stack]<UL><LI>Max Depth = 580<LI>Call Chain = DroneCAN_SendBeginFirmwareUpdateResponse &rArr; canardRequestOrRespond &rArr; canardRequestOrRespondObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  3007. </UL>
  3008. <BR>[Calls]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespond
  3009. <LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardReleaseRxTransferPayload
  3010. <LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_file_BeginFirmwareUpdateResponse_encode
  3011. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxUnlock
  3012. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxLock
  3013. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  3014. <LI><a href="#[cc]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;strlen
  3015. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  3016. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  3017. </UL>
  3018. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  3019. </UL>
  3020. <P><STRONG><a name="[c8]"></a>DroneCAN_SendDynamicNodeIDRequest</STRONG> (Thumb, 174 bytes, Stack size 88 bytes, dri_can.o(i.DroneCAN_SendDynamicNodeIDRequest))
  3021. <BR><BR>[Stack]<UL><LI>Max Depth = 332<LI>Call Chain = DroneCAN_SendDynamicNodeIDRequest &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  3022. </UL>
  3023. <BR>[Calls]<UL><LI><a href="#[d3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcast
  3024. <LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_dynamic_node_id_Allocation_encode
  3025. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxUnlock
  3026. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxLock
  3027. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  3028. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  3029. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  3030. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  3031. </UL>
  3032. <BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  3033. </UL>
  3034. <P><STRONG><a name="[ba]"></a>DroneCAN_SendGetNodeInfoResponse</STRONG> (Thumb, 194 bytes, Stack size 824 bytes, dri_can.o(i.DroneCAN_SendGetNodeInfoResponse))
  3035. <BR><BR>[Stack]<UL><LI>Max Depth = 1084<LI>Call Chain = DroneCAN_SendGetNodeInfoResponse &rArr; canardRequestOrRespond &rArr; canardRequestOrRespondObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  3036. </UL>
  3037. <BR>[Calls]<UL><LI><a href="#[d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespond
  3038. <LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardReleaseRxTransferPayload
  3039. <LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_GetNodeInfoResponse_encode
  3040. <LI><a href="#[d1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxUnlock
  3041. <LI><a href="#[ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_TxLock
  3042. <LI><a href="#[ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_FlushTxQueue
  3043. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  3044. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  3045. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  3046. </UL>
  3047. <BR>[Called By]<UL><LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  3048. </UL>
  3049. <P><STRONG><a name="[b5]"></a>DroneCAN_SendInitialNodeStatus</STRONG> (Thumb, 42 bytes, Stack size 16 bytes, dri_can.o(i.DroneCAN_SendInitialNodeStatus))
  3050. <BR><BR>[Stack]<UL><LI>Max Depth = 308<LI>Call Chain = DroneCAN_SendInitialNodeStatus &rArr; DroneCAN_SendNodeStatus &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  3051. </UL>
  3052. <BR>[Calls]<UL><LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  3053. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  3054. </UL>
  3055. <BR>[Called By]<UL><LI><a href="#[c7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_UseStaticNodeID
  3056. <LI><a href="#[b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_HandleDynamicNodeIDAllocation
  3057. </UL>
  3058. <P><STRONG><a name="[6c]"></a>DroneCAN_ShouldAccept</STRONG> (Thumb, 128 bytes, Stack size 24 bytes, dri_can.o(i.DroneCAN_ShouldAccept))
  3059. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = DroneCAN_ShouldAccept
  3060. </UL>
  3061. <BR>[Calls]<UL><LI><a href="#[b9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardGetLocalNodeID
  3062. </UL>
  3063. <BR>[Address Reference Count : 1]<UL><LI> dri_can.o(i.can_init)
  3064. </UL>
  3065. <P><STRONG><a name="[c6]"></a>DroneCAN_TickReached</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, dri_can.o(i.DroneCAN_TickReached))
  3066. <BR><BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  3067. </UL>
  3068. <P><STRONG><a name="[ce]"></a>DroneCAN_TxLock</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, dri_can.o(i.DroneCAN_TxLock))
  3069. <BR><BR>[Stack]<UL><LI>Max Depth = 200<LI>Call Chain = DroneCAN_TxLock &rArr; rt_mutex_take &rArr; rt_thread_control &rArr; rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3070. </UL>
  3071. <BR>[Calls]<UL><LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  3072. </UL>
  3073. <BR>[Called By]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  3074. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  3075. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  3076. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  3077. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  3078. </UL>
  3079. <P><STRONG><a name="[d1]"></a>DroneCAN_TxUnlock</STRONG> (Thumb, 10 bytes, Stack size 8 bytes, dri_can.o(i.DroneCAN_TxUnlock))
  3080. <BR><BR>[Stack]<UL><LI>Max Depth = 200<LI>Call Chain = DroneCAN_TxUnlock &rArr; rt_mutex_release &rArr; rt_thread_control &rArr; rt_thread_startup &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3081. </UL>
  3082. <BR>[Calls]<UL><LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  3083. </UL>
  3084. <BR>[Called By]<UL><LI><a href="#[ba]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendGetNodeInfoResponse
  3085. <LI><a href="#[c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendDynamicNodeIDRequest
  3086. <LI><a href="#[bd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendBeginFirmwareUpdateResponse
  3087. <LI><a href="#[a2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendRangeSensorMeasurement
  3088. <LI><a href="#[d5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendNodeStatus
  3089. </UL>
  3090. <P><STRONG><a name="[c7]"></a>DroneCAN_UseStaticNodeID</STRONG> (Thumb, 48 bytes, Stack size 8 bytes, dri_can.o(i.DroneCAN_UseStaticNodeID))
  3091. <BR><BR>[Stack]<UL><LI>Max Depth = 316<LI>Call Chain = DroneCAN_UseStaticNodeID &rArr; DroneCAN_SendInitialNodeStatus &rArr; DroneCAN_SendNodeStatus &rArr; canardBroadcast &rArr; canardBroadcastObj &rArr; enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  3092. </UL>
  3093. <BR>[Calls]<UL><LI><a href="#[b4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardSetLocalNodeID
  3094. <LI><a href="#[b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_SendInitialNodeStatus
  3095. <LI><a href="#[a1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_IsNodeIDAllocated
  3096. </UL>
  3097. <BR>[Called By]<UL><LI><a href="#[64]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_RxThreadEntry
  3098. </UL>
  3099. <P><STRONG><a name="[bf]"></a>__NVIC_SystemReset</STRONG> (Thumb, 56 bytes, Stack size 0 bytes, dri_can.o(i.__NVIC_SystemReset))
  3100. <BR><BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  3101. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  3102. </UL>
  3103. <P><STRONG><a name="[be]"></a>__set_PRIMASK</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dri_can.o(i.__set_PRIMASK))
  3104. <BR><BR>[Called By]<UL><LI><a href="#[1f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;USB_LP_CAN1_RX0_IRQHandler
  3105. <LI><a href="#[6d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;DroneCAN_OnReception
  3106. </UL>
  3107. <P><STRONG><a name="[180]"></a>__set_PRIMASK</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, dri_flash.o(i.__set_PRIMASK))
  3108. <BR><BR>[Called By]<UL><LI><a href="#[dd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;flash_write
  3109. </UL>
  3110. <P><STRONG><a name="[159]"></a>bus_fault_track</STRONG> (Thumb, 130 bytes, Stack size 8 bytes, cpuport.o(i.bus_fault_track))
  3111. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = bus_fault_track &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  3112. </UL>
  3113. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3114. </UL>
  3115. <BR>[Called By]<UL><LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;hard_fault_track
  3116. </UL>
  3117. <P><STRONG><a name="[182]"></a>hard_fault_track</STRONG> (Thumb, 82 bytes, Stack size 8 bytes, cpuport.o(i.hard_fault_track))
  3118. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = hard_fault_track &rArr; usage_fault_track &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  3119. </UL>
  3120. <BR>[Calls]<UL><LI><a href="#[184]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;usage_fault_track
  3121. <LI><a href="#[183]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;mem_manage_fault_track
  3122. <LI><a href="#[159]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;bus_fault_track
  3123. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3124. </UL>
  3125. <BR>[Called By]<UL><LI><a href="#[7e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_hard_fault_exception
  3126. </UL>
  3127. <P><STRONG><a name="[183]"></a>mem_manage_fault_track</STRONG> (Thumb, 114 bytes, Stack size 8 bytes, cpuport.o(i.mem_manage_fault_track))
  3128. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = mem_manage_fault_track &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  3129. </UL>
  3130. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3131. </UL>
  3132. <BR>[Called By]<UL><LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;hard_fault_track
  3133. </UL>
  3134. <P><STRONG><a name="[184]"></a>usage_fault_track</STRONG> (Thumb, 122 bytes, Stack size 8 bytes, cpuport.o(i.usage_fault_track))
  3135. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = usage_fault_track &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  3136. </UL>
  3137. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3138. </UL>
  3139. <BR>[Called By]<UL><LI><a href="#[182]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;hard_fault_track
  3140. </UL>
  3141. <P><STRONG><a name="[11b]"></a>SetSysClock</STRONG> (Thumb, 158 bytes, Stack size 16 bytes, system_n32g45x.o(i.SetSysClock))
  3142. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = SetSysClock
  3143. </UL>
  3144. <BR>[Called By]<UL><LI><a href="#[62]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;SystemInit
  3145. </UL>
  3146. <P><STRONG><a name="[3b]"></a>RESERVE48_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_n32g45x.o(.text))
  3147. <BR>[Address Reference Count : 1]<UL><LI> startup_n32g45x.o(RESET)
  3148. </UL>
  3149. <P><STRONG><a name="[9d]"></a>CheckINTStatus</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, n32g45x_can.o(i.CheckINTStatus))
  3150. <BR><BR>[Called By]<UL><LI><a href="#[9c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;CAN_GetIntStatus
  3151. </UL>
  3152. <P><STRONG><a name="[1c9]"></a>_has_defunct_thread</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, idle.o(i._has_defunct_thread))
  3153. <BR><BR>[Called By]<UL><LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  3154. </UL>
  3155. <P><STRONG><a name="[6f]"></a>rt_thread_idle_entry</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, idle.o(i.rt_thread_idle_entry))
  3156. <BR><BR>[Stack]<UL><LI>Max Depth = 208<LI>Call Chain = rt_thread_idle_entry &rArr; rt_thread_idle_excute &rArr; rt_object_delete &rArr; rt_free &rArr; rt_sem_take &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3157. </UL>
  3158. <BR>[Calls]<UL><LI><a href="#[1c8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_idle_excute
  3159. </UL>
  3160. <BR>[Address Reference Count : 1]<UL><LI> idle.o(i.rt_thread_idle_init)
  3161. </UL>
  3162. <P><STRONG><a name="[1a5]"></a>rt_ipc_list_resume</STRONG> (Thumb, 24 bytes, Stack size 16 bytes, ipc.o(i.rt_ipc_list_resume))
  3163. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = rt_ipc_list_resume &rArr; rt_thread_resume &rArr; rt_timer_stop &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  3164. </UL>
  3165. <BR>[Calls]<UL><LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  3166. </UL>
  3167. <BR>[Called By]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  3168. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  3169. </UL>
  3170. <P><STRONG><a name="[1a7]"></a>rt_ipc_list_suspend</STRONG> (Thumb, 108 bytes, Stack size 24 bytes, ipc.o(i.rt_ipc_list_suspend))
  3171. <BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = rt_ipc_list_suspend &rArr; rt_thread_suspend &rArr; rt_timer_stop &rArr; rt_object_get_type &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  3172. </UL>
  3173. <BR>[Calls]<UL><LI><a href="#[1a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_suspend
  3174. <LI><a href="#[1a9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_insert_before
  3175. </UL>
  3176. <BR>[Called By]<UL><LI><a href="#[91]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_take
  3177. <LI><a href="#[96]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_take
  3178. </UL>
  3179. <P><STRONG><a name="[1ad]"></a>rt_ipc_object_init</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, ipc.o(i.rt_ipc_object_init))
  3180. <BR><BR>[Called By]<UL><LI><a href="#[193]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_create
  3181. <LI><a href="#[da]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_init
  3182. <LI><a href="#[d9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_init
  3183. </UL>
  3184. <P><STRONG><a name="[1a9]"></a>rt_list_insert_before</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, ipc.o(i.rt_list_insert_before))
  3185. <BR><BR>[Called By]<UL><LI><a href="#[1a7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_ipc_list_suspend
  3186. </UL>
  3187. <P><STRONG><a name="[1af]"></a>rt_list_isempty</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, ipc.o(i.rt_list_isempty))
  3188. <BR><BR>[Called By]<UL><LI><a href="#[99]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_sem_release
  3189. <LI><a href="#[98]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_mutex_release
  3190. </UL>
  3191. <P><STRONG><a name="[18e]"></a>plug_holes</STRONG> (Thumb, 160 bytes, Stack size 16 bytes, mem.o(i.plug_holes))
  3192. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = plug_holes &rArr; rt_assert_handler &rArr; rt_kprintf (Cycle)
  3193. </UL>
  3194. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  3195. </UL>
  3196. <BR>[Called By]<UL><LI><a href="#[19e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_free
  3197. </UL>
  3198. <P><STRONG><a name="[1b4]"></a>rt_list_insert_after</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, object.o(i.rt_list_insert_after))
  3199. <BR><BR>[Called By]<UL><LI><a href="#[1b2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_allocate
  3200. <LI><a href="#[1ac]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_init
  3201. </UL>
  3202. <P><STRONG><a name="[1b6]"></a>rt_list_remove</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, object.o(i.rt_list_remove))
  3203. <BR><BR>[Called By]<UL><LI><a href="#[1b5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_delete
  3204. <LI><a href="#[1b7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_object_detach
  3205. </UL>
  3206. <P><STRONG><a name="[14d]"></a>_rt_scheduler_stack_check</STRONG> (Thumb, 90 bytes, Stack size 16 bytes, scheduler.o(i._rt_scheduler_stack_check))
  3207. <BR><BR>[Stack]<UL><LI>Max Depth = 104 + In Cycle
  3208. <LI>Call Chain = _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3209. </UL>
  3210. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  3211. <LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_thread
  3212. <LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3213. <LI><a href="#[c1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_interrupt_disable
  3214. </UL>
  3215. <BR>[Called By]<UL><LI><a href="#[19d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_schedule
  3216. </UL>
  3217. <P><STRONG><a name="[1c1]"></a>rt_list_init</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, scheduler.o(i.rt_list_init))
  3218. <BR><BR>[Called By]<UL><LI><a href="#[1c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_scheduler_init
  3219. </UL>
  3220. <P><STRONG><a name="[14f]"></a>_rt_thread_init</STRONG> (Thumb, 138 bytes, Stack size 48 bytes, thread.o(i._rt_thread_init))
  3221. <BR><BR>[Stack]<UL><LI>Max Depth = 248<LI>Call Chain = _rt_thread_init &rArr; rt_timer_init &rArr; rt_object_init &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3222. </UL>
  3223. <BR>[Calls]<UL><LI><a href="#[14e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_assert_handler
  3224. <LI><a href="#[151]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_hw_stack_init
  3225. <LI><a href="#[150]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_memset
  3226. <LI><a href="#[152]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_init
  3227. </UL>
  3228. <BR>[Called By]<UL><LI><a href="#[db]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_init
  3229. </UL>
  3230. <P><STRONG><a name="[1c7]"></a>rt_list_insert_after</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, thread.o(i.rt_list_insert_after))
  3231. <BR><BR>[Called By]<UL><LI><a href="#[6a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_exit
  3232. <LI><a href="#[1c5]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_delete
  3233. </UL>
  3234. <P><STRONG><a name="[1cd]"></a>rt_list_remove</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, thread.o(i.rt_list_remove))
  3235. <BR><BR>[Called By]<UL><LI><a href="#[1a6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_resume
  3236. <LI><a href="#[1cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_yield
  3237. <LI><a href="#[6b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_thread_timeout
  3238. </UL>
  3239. <P><STRONG><a name="[153]"></a>_rt_timer_init</STRONG> (Thumb, 66 bytes, Stack size 32 bytes, timer.o(i._rt_timer_init))
  3240. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = _rt_timer_init
  3241. </UL>
  3242. <BR>[Calls]<UL><LI><a href="#[154]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_init
  3243. </UL>
  3244. <BR>[Called By]<UL><LI><a href="#[152]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_init
  3245. </UL>
  3246. <P><STRONG><a name="[1d1]"></a>_rt_timer_remove</STRONG> (Thumb, 46 bytes, Stack size 8 bytes, timer.o(i._rt_timer_remove))
  3247. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = _rt_timer_remove
  3248. </UL>
  3249. <BR>[Called By]<UL><LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  3250. <LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  3251. <LI><a href="#[1ce]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_stop
  3252. <LI><a href="#[1c6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_detach
  3253. </UL>
  3254. <P><STRONG><a name="[154]"></a>rt_list_init</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, timer.o(i.rt_list_init))
  3255. <BR><BR>[Called By]<UL><LI><a href="#[1c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_system_timer_init
  3256. <LI><a href="#[153]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_rt_timer_init
  3257. </UL>
  3258. <P><STRONG><a name="[1d3]"></a>rt_list_insert_after</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, timer.o(i.rt_list_insert_after))
  3259. <BR><BR>[Called By]<UL><LI><a href="#[1b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_start
  3260. </UL>
  3261. <P><STRONG><a name="[1d2]"></a>rt_list_isempty</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, timer.o(i.rt_list_isempty))
  3262. <BR><BR>[Called By]<UL><LI><a href="#[1d0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_timer_check
  3263. </UL>
  3264. <P><STRONG><a name="[e4]"></a>DCM_ByQuaternion</STRONG> (Thumb, 250 bytes, Stack size 0 bytes, euler.o(i.DCM_ByQuaternion))
  3265. <BR><BR>[Called By]<UL><LI><a href="#[e3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByQuaternionEnu
  3266. </UL>
  3267. <P><STRONG><a name="[e2]"></a>fabsf</STRONG> (Thumb, 10 bytes, Stack size 0 bytes, euler.o(i.fabsf))
  3268. <BR><BR>[Called By]<UL><LI><a href="#[df]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Euler_ByDcmEnu
  3269. </UL>
  3270. <P><STRONG><a name="[10c]"></a>Vector_GetNorm</STRONG> (Thumb, 78 bytes, Stack size 24 bytes, quaternion.o(i.Vector_GetNorm))
  3271. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = Vector_GetNorm &rArr; __hardfp_sqrtf
  3272. </UL>
  3273. <BR>[Calls]<UL><LI><a href="#[125]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__hardfp_sqrtf
  3274. </UL>
  3275. <BR>[Called By]<UL><LI><a href="#[10a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;Quaternion_Inversed
  3276. </UL>
  3277. <P><STRONG><a name="[130]"></a>__uavcan_equipment_range_sensor_Measurement_encode</STRONG> (Thumb, 224 bytes, Stack size 40 bytes, uavcan.equipment.range_sensor.measurement.o(i.__uavcan_equipment_range_sensor_Measurement_encode))
  3278. <BR><BR>[Stack]<UL><LI>Max Depth = 116<LI>Call Chain = __uavcan_equipment_range_sensor_Measurement_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3279. </UL>
  3280. <BR>[Calls]<UL><LI><a href="#[132]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardConvertNativeFloatToFloat16
  3281. <LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3282. </UL>
  3283. <BR>[Called By]<UL><LI><a href="#[d7]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_equipment_range_sensor_Measurement_encode
  3284. </UL>
  3285. <P><STRONG><a name="[133]"></a>__uavcan_navigation_GlobalNavigationSolution_decode</STRONG> (Thumb, 600 bytes, Stack size 32 bytes, uavcan.navigation.globalnavigationsolution.o(i.__uavcan_navigation_GlobalNavigationSolution_decode))
  3286. <BR><BR>[Stack]<UL><LI>Max Depth = 212<LI>Call Chain = __uavcan_navigation_GlobalNavigationSolution_decode &rArr; canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  3287. </UL>
  3288. <BR>[Calls]<UL><LI><a href="#[135]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardConvertFloat16ToNativeFloat
  3289. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  3290. </UL>
  3291. <BR>[Called By]<UL><LI><a href="#[c0]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_navigation_GlobalNavigationSolution_decode
  3292. </UL>
  3293. <P><STRONG><a name="[13b]"></a>__uavcan_protocol_dynamic_node_id_Allocation_decode</STRONG> (Thumb, 150 bytes, Stack size 32 bytes, uavcan.protocol.dynamic_node_id.allocation.o(i.__uavcan_protocol_dynamic_node_id_Allocation_decode))
  3294. <BR><BR>[Stack]<UL><LI>Max Depth = 212<LI>Call Chain = __uavcan_protocol_dynamic_node_id_Allocation_decode &rArr; canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  3295. </UL>
  3296. <BR>[Calls]<UL><LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  3297. </UL>
  3298. <BR>[Called By]<UL><LI><a href="#[b3]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_dynamic_node_id_Allocation_decode
  3299. </UL>
  3300. <P><STRONG><a name="[13c]"></a>__uavcan_protocol_dynamic_node_id_Allocation_encode</STRONG> (Thumb, 120 bytes, Stack size 32 bytes, uavcan.protocol.dynamic_node_id.allocation.o(i.__uavcan_protocol_dynamic_node_id_Allocation_encode))
  3301. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = __uavcan_protocol_dynamic_node_id_Allocation_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3302. </UL>
  3303. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3304. </UL>
  3305. <BR>[Called By]<UL><LI><a href="#[d2]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_dynamic_node_id_Allocation_encode
  3306. </UL>
  3307. <P><STRONG><a name="[13e]"></a>__uavcan_protocol_file_Path_decode</STRONG> (Thumb, 106 bytes, Stack size 32 bytes, uavcan.protocol.file.beginfirmwareupdate_req.o(i.__uavcan_protocol_file_Path_decode))
  3308. <BR><BR>[Stack]<UL><LI>Max Depth = 212<LI>Call Chain = __uavcan_protocol_file_Path_decode &rArr; canardDecodeScalar &rArr; descatterTransferPayload &rArr; copyBitArray
  3309. </UL>
  3310. <BR>[Calls]<UL><LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  3311. </UL>
  3312. <BR>[Called By]<UL><LI><a href="#[bb]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_file_BeginFirmwareUpdateRequest_decode
  3313. </UL>
  3314. <P><STRONG><a name="[13d]"></a>__uavcan_protocol_file_BeginFirmwareUpdateResponse_encode</STRONG> (Thumb, 102 bytes, Stack size 32 bytes, uavcan.protocol.file.beginfirmwareupdate_res.o(i.__uavcan_protocol_file_BeginFirmwareUpdateResponse_encode))
  3315. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = __uavcan_protocol_file_BeginFirmwareUpdateResponse_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3316. </UL>
  3317. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3318. </UL>
  3319. <BR>[Called By]<UL><LI><a href="#[cd]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_file_BeginFirmwareUpdateResponse_encode
  3320. </UL>
  3321. <P><STRONG><a name="[136]"></a>__uavcan_protocol_GetNodeInfoResponse_encode</STRONG> (Thumb, 130 bytes, Stack size 32 bytes, uavcan.protocol.getnodeinfo_res.o(i.__uavcan_protocol_GetNodeInfoResponse_encode))
  3322. <BR><BR>[Stack]<UL><LI>Max Depth = 140<LI>Call Chain = __uavcan_protocol_GetNodeInfoResponse_encode &rArr; __uavcan_protocol_HardwareVersion_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3323. </UL>
  3324. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3325. <LI><a href="#[138]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_SoftwareVersion_encode
  3326. <LI><a href="#[137]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_NodeStatus_encode
  3327. <LI><a href="#[139]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_HardwareVersion_encode
  3328. </UL>
  3329. <BR>[Called By]<UL><LI><a href="#[d4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_GetNodeInfoResponse_encode
  3330. </UL>
  3331. <P><STRONG><a name="[139]"></a>__uavcan_protocol_HardwareVersion_encode</STRONG> (Thumb, 152 bytes, Stack size 32 bytes, uavcan.protocol.getnodeinfo_res.o(i.__uavcan_protocol_HardwareVersion_encode))
  3332. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = __uavcan_protocol_HardwareVersion_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3333. </UL>
  3334. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3335. </UL>
  3336. <BR>[Called By]<UL><LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_GetNodeInfoResponse_encode
  3337. </UL>
  3338. <P><STRONG><a name="[137]"></a>__uavcan_protocol_NodeStatus_encode</STRONG> (Thumb, 108 bytes, Stack size 24 bytes, uavcan.protocol.getnodeinfo_res.o(i.__uavcan_protocol_NodeStatus_encode))
  3339. <BR><BR>[Stack]<UL><LI>Max Depth = 100<LI>Call Chain = __uavcan_protocol_NodeStatus_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3340. </UL>
  3341. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3342. </UL>
  3343. <BR>[Called By]<UL><LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_GetNodeInfoResponse_encode
  3344. </UL>
  3345. <P><STRONG><a name="[138]"></a>__uavcan_protocol_SoftwareVersion_encode</STRONG> (Thumb, 108 bytes, Stack size 24 bytes, uavcan.protocol.getnodeinfo_res.o(i.__uavcan_protocol_SoftwareVersion_encode))
  3346. <BR><BR>[Stack]<UL><LI>Max Depth = 100<LI>Call Chain = __uavcan_protocol_SoftwareVersion_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3347. </UL>
  3348. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3349. </UL>
  3350. <BR>[Called By]<UL><LI><a href="#[136]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__uavcan_protocol_GetNodeInfoResponse_encode
  3351. </UL>
  3352. <P><STRONG><a name="[13a]"></a>__uavcan_protocol_NodeStatus_encode</STRONG> (Thumb, 108 bytes, Stack size 24 bytes, uavcan.protocol.nodestatus.o(i.__uavcan_protocol_NodeStatus_encode))
  3353. <BR><BR>[Stack]<UL><LI>Max Depth = 100<LI>Call Chain = __uavcan_protocol_NodeStatus_encode &rArr; canardEncodeScalar &rArr; copyBitArray
  3354. </UL>
  3355. <BR>[Calls]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3356. </UL>
  3357. <BR>[Called By]<UL><LI><a href="#[d6]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_uavcan_protocol_NodeStatus_encode
  3358. </UL>
  3359. <P><STRONG><a name="[17a]"></a>allocateBlock</STRONG> (Thumb, 40 bytes, Stack size 0 bytes, canard.o(i.allocateBlock))
  3360. <BR><BR>[Called By]<UL><LI><a href="#[17c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createTxItem
  3361. <LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createRxState
  3362. <LI><a href="#[156]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createBufferBlock
  3363. </UL>
  3364. <P><STRONG><a name="[155]"></a>bufferBlockPushBytes</STRONG> (Thumb, 306 bytes, Stack size 56 bytes, canard.o(i.bufferBlockPushBytes))
  3365. <BR><BR>[Stack]<UL><LI>Max Depth = 72<LI>Call Chain = bufferBlockPushBytes &rArr; createBufferBlock
  3366. </UL>
  3367. <BR>[Calls]<UL><LI><a href="#[156]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createBufferBlock
  3368. <LI><a href="#[157]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBufferToIdx
  3369. <LI><a href="#[158]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBufferFromIdx
  3370. </UL>
  3371. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3372. </UL>
  3373. <P><STRONG><a name="[15a]"></a>calculateCRC</STRONG> (Thumb, 48 bytes, Stack size 24 bytes, canard.o(i.calculateCRC))
  3374. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = calculateCRC &rArr; crcAddSignature &rArr; crcAddByte
  3375. </UL>
  3376. <BR>[Calls]<UL><LI><a href="#[15b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAddSignature
  3377. <LI><a href="#[15c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAdd
  3378. </UL>
  3379. <BR>[Called By]<UL><LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespondObj
  3380. <LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcastObj
  3381. </UL>
  3382. <P><STRONG><a name="[158]"></a>canardBufferFromIdx</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, canard.o(i.canardBufferFromIdx))
  3383. <BR><BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3384. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;releaseStatePayload
  3385. <LI><a href="#[155]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;bufferBlockPushBytes
  3386. </UL>
  3387. <P><STRONG><a name="[157]"></a>canardBufferToIdx</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, canard.o(i.canardBufferToIdx))
  3388. <BR><BR>[Called By]<UL><LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;releaseStatePayload
  3389. <LI><a href="#[155]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;bufferBlockPushBytes
  3390. </UL>
  3391. <P><STRONG><a name="[16b]"></a>canardRxFromIdx</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, canard.o(i.canardRxFromIdx))
  3392. <BR><BR>[Called By]<UL><LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardCleanupStaleTransfers
  3393. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;findRxState
  3394. </UL>
  3395. <P><STRONG><a name="[190]"></a>canardRxToIdx</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, canard.o(i.canardRxToIdx))
  3396. <BR><BR>[Called By]<UL><LI><a href="#[18f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prependRxState
  3397. </UL>
  3398. <P><STRONG><a name="[175]"></a>computeTransferIDForwardDistance</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, canard.o(i.computeTransferIDForwardDistance))
  3399. <BR><BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3400. </UL>
  3401. <P><STRONG><a name="[170]"></a>copyBitArray</STRONG> (Thumb, 152 bytes, Stack size 36 bytes, canard.o(i.copyBitArray))
  3402. <BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = copyBitArray
  3403. </UL>
  3404. <BR>[Called By]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3405. <LI><a href="#[16d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;descatterTransferPayload
  3406. </UL>
  3407. <P><STRONG><a name="[15c]"></a>crcAdd</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, canard.o(i.crcAdd))
  3408. <BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = crcAdd &rArr; crcAddByte
  3409. </UL>
  3410. <BR>[Calls]<UL><LI><a href="#[179]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAddByte
  3411. </UL>
  3412. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3413. <LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcastObj
  3414. <LI><a href="#[15a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;calculateCRC
  3415. </UL>
  3416. <P><STRONG><a name="[179]"></a>crcAddByte</STRONG> (Thumb, 52 bytes, Stack size 8 bytes, canard.o(i.crcAddByte))
  3417. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = crcAddByte
  3418. </UL>
  3419. <BR>[Called By]<UL><LI><a href="#[15b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAddSignature
  3420. <LI><a href="#[15c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAdd
  3421. </UL>
  3422. <P><STRONG><a name="[15b]"></a>crcAddSignature</STRONG> (Thumb, 58 bytes, Stack size 32 bytes, canard.o(i.crcAddSignature))
  3423. <BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = crcAddSignature &rArr; crcAddByte
  3424. </UL>
  3425. <BR>[Calls]<UL><LI><a href="#[179]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;crcAddByte
  3426. <LI><a href="#[80]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_llsr
  3427. </UL>
  3428. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3429. <LI><a href="#[15a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;calculateCRC
  3430. </UL>
  3431. <P><STRONG><a name="[156]"></a>createBufferBlock</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, canard.o(i.createBufferBlock))
  3432. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = createBufferBlock
  3433. </UL>
  3434. <BR>[Calls]<UL><LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;allocateBlock
  3435. </UL>
  3436. <BR>[Called By]<UL><LI><a href="#[155]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;bufferBlockPushBytes
  3437. </UL>
  3438. <P><STRONG><a name="[17b]"></a>createRxState</STRONG> (Thumb, 48 bytes, Stack size 48 bytes, canard.o(i.createRxState))
  3439. <BR><BR>[Stack]<UL><LI>Max Depth = 48<LI>Call Chain = createRxState
  3440. </UL>
  3441. <BR>[Calls]<UL><LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;allocateBlock
  3442. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  3443. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  3444. </UL>
  3445. <BR>[Called By]<UL><LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;traverseRxStates
  3446. <LI><a href="#[18f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prependRxState
  3447. </UL>
  3448. <P><STRONG><a name="[17c]"></a>createTxItem</STRONG> (Thumb, 30 bytes, Stack size 16 bytes, canard.o(i.createTxItem))
  3449. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = createTxItem
  3450. </UL>
  3451. <BR>[Calls]<UL><LI><a href="#[17a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;allocateBlock
  3452. <LI><a href="#[a8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memclr4
  3453. </UL>
  3454. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  3455. </UL>
  3456. <P><STRONG><a name="[17d]"></a>dataLengthToDlc</STRONG> (Thumb, 62 bytes, Stack size 0 bytes, canard.o(i.dataLengthToDlc))
  3457. <BR><BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  3458. </UL>
  3459. <P><STRONG><a name="[16d]"></a>descatterTransferPayload</STRONG> (Thumb, 318 bytes, Stack size 72 bytes, canard.o(i.descatterTransferPayload))
  3460. <BR><BR>[Stack]<UL><LI>Max Depth = 108<LI>Call Chain = descatterTransferPayload &rArr; copyBitArray
  3461. </UL>
  3462. <BR>[Calls]<UL><LI><a href="#[170]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;copyBitArray
  3463. </UL>
  3464. <BR>[Called By]<UL><LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  3465. </UL>
  3466. <P><STRONG><a name="[17e]"></a>dlcToDataLength</STRONG> (Thumb, 62 bytes, Stack size 0 bytes, canard.o(i.dlcToDataLength))
  3467. <BR><BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  3468. </UL>
  3469. <P><STRONG><a name="[168]"></a>enqueueTxFrames</STRONG> (Thumb, 414 bytes, Stack size 80 bytes, canard.o(i.enqueueTxFrames))
  3470. <BR><BR>[Stack]<UL><LI>Max Depth = 132<LI>Call Chain = enqueueTxFrames &rArr; pushTxQueue &rArr; isPriorityHigher
  3471. </UL>
  3472. <BR>[Calls]<UL><LI><a href="#[17f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pushTxQueue
  3473. <LI><a href="#[17e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;dlcToDataLength
  3474. <LI><a href="#[17d]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;dataLengthToDlc
  3475. <LI><a href="#[17c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createTxItem
  3476. <LI><a href="#[97]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy
  3477. </UL>
  3478. <BR>[Called By]<UL><LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespondObj
  3479. <LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcastObj
  3480. </UL>
  3481. <P><STRONG><a name="[174]"></a>findRxState</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, canard.o(i.findRxState))
  3482. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = findRxState
  3483. </UL>
  3484. <BR>[Calls]<UL><LI><a href="#[16b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRxFromIdx
  3485. </UL>
  3486. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3487. <LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;traverseRxStates
  3488. </UL>
  3489. <P><STRONG><a name="[16c]"></a>freeBlock</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, canard.o(i.freeBlock))
  3490. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = freeBlock
  3491. </UL>
  3492. <BR>[Called By]<UL><LI><a href="#[cf]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardReleaseRxTransferPayload
  3493. <LI><a href="#[ae]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardPopTxQueue
  3494. <LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardCleanupStaleTransfers
  3495. <LI><a href="#[16a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;releaseStatePayload
  3496. </UL>
  3497. <P><STRONG><a name="[169]"></a>incrementTransferID</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, canard.o(i.incrementTransferID))
  3498. <BR><BR>[Called By]<UL><LI><a href="#[178]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRequestOrRespondObj
  3499. <LI><a href="#[167]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBroadcastObj
  3500. </UL>
  3501. <P><STRONG><a name="[177]"></a>initPoolAllocator</STRONG> (Thumb, 42 bytes, Stack size 20 bytes, canard.o(i.initPoolAllocator))
  3502. <BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = initPoolAllocator
  3503. </UL>
  3504. <BR>[Called By]<UL><LI><a href="#[166]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardInit
  3505. </UL>
  3506. <P><STRONG><a name="[16e]"></a>isBigEndian</STRONG> (Thumb, 20 bytes, Stack size 8 bytes, canard.o(i.isBigEndian))
  3507. <BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = isBigEndian
  3508. </UL>
  3509. <BR>[Called By]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3510. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  3511. </UL>
  3512. <P><STRONG><a name="[191]"></a>isPriorityHigher</STRONG> (Thumb, 96 bytes, Stack size 28 bytes, canard.o(i.isPriorityHigher))
  3513. <BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = isPriorityHigher
  3514. </UL>
  3515. <BR>[Called By]<UL><LI><a href="#[17f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;pushTxQueue
  3516. </UL>
  3517. <P><STRONG><a name="[176]"></a>prepareForNextTransfer</STRONG> (Thumb, 34 bytes, Stack size 0 bytes, canard.o(i.prepareForNextTransfer))
  3518. <BR><BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3519. </UL>
  3520. <P><STRONG><a name="[18f]"></a>prependRxState</STRONG> (Thumb, 42 bytes, Stack size 16 bytes, canard.o(i.prependRxState))
  3521. <BR><BR>[Stack]<UL><LI>Max Depth = 64<LI>Call Chain = prependRxState &rArr; createRxState
  3522. </UL>
  3523. <BR>[Calls]<UL><LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createRxState
  3524. <LI><a href="#[190]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardRxToIdx
  3525. </UL>
  3526. <BR>[Called By]<UL><LI><a href="#[173]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;traverseRxStates
  3527. </UL>
  3528. <P><STRONG><a name="[17f]"></a>pushTxQueue</STRONG> (Thumb, 72 bytes, Stack size 24 bytes, canard.o(i.pushTxQueue))
  3529. <BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = pushTxQueue &rArr; isPriorityHigher
  3530. </UL>
  3531. <BR>[Calls]<UL><LI><a href="#[191]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;isPriorityHigher
  3532. </UL>
  3533. <BR>[Called By]<UL><LI><a href="#[168]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;enqueueTxFrames
  3534. </UL>
  3535. <P><STRONG><a name="[16a]"></a>releaseStatePayload</STRONG> (Thumb, 72 bytes, Stack size 24 bytes, canard.o(i.releaseStatePayload))
  3536. <BR><BR>[Stack]<UL><LI>Max Depth = 32<LI>Call Chain = releaseStatePayload &rArr; freeBlock
  3537. </UL>
  3538. <BR>[Calls]<UL><LI><a href="#[16c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;freeBlock
  3539. <LI><a href="#[157]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBufferToIdx
  3540. <LI><a href="#[158]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardBufferFromIdx
  3541. </UL>
  3542. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3543. <LI><a href="#[c9]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardCleanupStaleTransfers
  3544. </UL>
  3545. <P><STRONG><a name="[16f]"></a>swapByteOrder</STRONG> (Thumb, 34 bytes, Stack size 16 bytes, canard.o(i.swapByteOrder))
  3546. <BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = swapByteOrder
  3547. </UL>
  3548. <BR>[Called By]<UL><LI><a href="#[131]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardEncodeScalar
  3549. <LI><a href="#[134]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardDecodeScalar
  3550. </UL>
  3551. <P><STRONG><a name="[173]"></a>traverseRxStates</STRONG> (Thumb, 60 bytes, Stack size 16 bytes, canard.o(i.traverseRxStates))
  3552. <BR><BR>[Stack]<UL><LI>Max Depth = 80<LI>Call Chain = traverseRxStates &rArr; prependRxState &rArr; createRxState
  3553. </UL>
  3554. <BR>[Calls]<UL><LI><a href="#[18f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;prependRxState
  3555. <LI><a href="#[174]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;findRxState
  3556. <LI><a href="#[17b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;createRxState
  3557. </UL>
  3558. <BR>[Called By]<UL><LI><a href="#[b8]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;canardHandleRxFrame
  3559. </UL>
  3560. <P><STRONG><a name="[141]"></a>_list_device</STRONG> (Thumb, 110 bytes, Stack size 120 bytes, cmd.o(i._list_device))
  3561. <BR><BR>[Stack]<UL><LI>Max Depth = 288<LI>Call Chain = _list_device &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3562. </UL>
  3563. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3564. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_split
  3565. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  3566. <LI><a href="#[c4]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_memcpy4
  3567. </UL>
  3568. <BR>[Called By]<UL><LI><a href="#[77]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_device
  3569. </UL>
  3570. <P><STRONG><a name="[144]"></a>_list_mutex</STRONG> (Thumb, 96 bytes, Stack size 48 bytes, cmd.o(i._list_mutex))
  3571. <BR><BR>[Stack]<UL><LI>Max Depth = 216<LI>Call Chain = _list_mutex &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3572. </UL>
  3573. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3574. <LI><a href="#[145]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_len
  3575. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_split
  3576. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  3577. </UL>
  3578. <BR>[Called By]<UL><LI><a href="#[75]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_mutex
  3579. </UL>
  3580. <P><STRONG><a name="[146]"></a>_list_sem</STRONG> (Thumb, 150 bytes, Stack size 40 bytes, cmd.o(i._list_sem))
  3581. <BR><BR>[Stack]<UL><LI>Max Depth = 208<LI>Call Chain = _list_sem &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3582. </UL>
  3583. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3584. <LI><a href="#[147]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;show_wait_queue
  3585. <LI><a href="#[145]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_list_len
  3586. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_split
  3587. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  3588. </UL>
  3589. <BR>[Called By]<UL><LI><a href="#[74]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_sem
  3590. </UL>
  3591. <P><STRONG><a name="[148]"></a>_list_thread</STRONG> (Thumb, 194 bytes, Stack size 48 bytes, cmd.o(i._list_thread))
  3592. <BR><BR>[Stack]<UL><LI>Max Depth = 216<LI>Call Chain = _list_thread &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3593. </UL>
  3594. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3595. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_split
  3596. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  3597. </UL>
  3598. <BR>[Called By]<UL><LI><a href="#[73]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_thread
  3599. </UL>
  3600. <P><STRONG><a name="[149]"></a>_list_timer</STRONG> (Thumb, 116 bytes, Stack size 40 bytes, cmd.o(i._list_timer))
  3601. <BR><BR>[Stack]<UL><LI>Max Depth = 208<LI>Call Chain = _list_timer &rArr; object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3602. </UL>
  3603. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3604. <LI><a href="#[b1]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_tick_get
  3605. <LI><a href="#[143]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_split
  3606. <LI><a href="#[142]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;object_name_maxlen
  3607. </UL>
  3608. <BR>[Called By]<UL><LI><a href="#[76]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;list_timer
  3609. </UL>
  3610. <P><STRONG><a name="[142]"></a>object_name_maxlen</STRONG> (Thumb, 70 bytes, Stack size 32 bytes, cmd.o(i.object_name_maxlen))
  3611. <BR><BR>[Stack]<UL><LI>Max Depth = 168<LI>Call Chain = object_name_maxlen &rArr; rt_exit_critical &rArr; rt_schedule &rArr; _rt_scheduler_stack_check &rArr; list_thread (Cycle)
  3612. </UL>
  3613. <BR>[Calls]<UL><LI><a href="#[106]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_exit_critical
  3614. <LI><a href="#[105]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_enter_critical
  3615. <LI><a href="#[18c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_strlen
  3616. </UL>
  3617. <BR>[Called By]<UL><LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_timer
  3618. <LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_thread
  3619. <LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_sem
  3620. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_mutex
  3621. <LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_device
  3622. </UL>
  3623. <P><STRONG><a name="[143]"></a>object_split</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, cmd.o(i.object_split))
  3624. <BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = object_split &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  3625. </UL>
  3626. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3627. </UL>
  3628. <BR>[Called By]<UL><LI><a href="#[149]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_timer
  3629. <LI><a href="#[148]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_thread
  3630. <LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_sem
  3631. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_mutex
  3632. <LI><a href="#[141]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_device
  3633. </UL>
  3634. <P><STRONG><a name="[145]"></a>rt_list_len</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, cmd.o(i.rt_list_len))
  3635. <BR><BR>[Called By]<UL><LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_sem
  3636. <LI><a href="#[144]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_mutex
  3637. </UL>
  3638. <P><STRONG><a name="[147]"></a>show_wait_queue</STRONG> (Thumb, 40 bytes, Stack size 16 bytes, cmd.o(i.show_wait_queue))
  3639. <BR><BR>[Stack]<UL><LI>Max Depth = 104<LI>Call Chain = show_wait_queue &rArr; rt_kprintf &rArr; rt_device_write &rArr; rt_set_errno &rArr; rt_interrupt_get_nest
  3640. </UL>
  3641. <BR>[Calls]<UL><LI><a href="#[101]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;rt_kprintf
  3642. </UL>
  3643. <BR>[Called By]<UL><LI><a href="#[146]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_list_sem
  3644. </UL>
  3645. <P><STRONG><a name="[13f]"></a>_fp_digits</STRONG> (Thumb, 366 bytes, Stack size 64 bytes, printfa.o(i._fp_digits), UNUSED)
  3646. <BR><BR>[Calls]<UL><LI><a href="#[8b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dmul
  3647. <LI><a href="#[85]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_dadd
  3648. <LI><a href="#[140]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_cdrcmple
  3649. <LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_d2ulz
  3650. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  3651. <LI><a href="#[8e]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_ddiv
  3652. </UL>
  3653. <BR>[Called By]<UL><LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  3654. </UL>
  3655. <P><STRONG><a name="[127]"></a>_printf_core</STRONG> (Thumb, 1704 bytes, Stack size 136 bytes, printfa.o(i._printf_core), UNUSED)
  3656. <BR><BR>[Calls]<UL><LI><a href="#[14c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uidivmod
  3657. <LI><a href="#[14a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_pre_padding
  3658. <LI><a href="#[14b]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_post_padding
  3659. <LI><a href="#[13f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_fp_digits
  3660. <LI><a href="#[7f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__aeabi_uldivmod
  3661. </UL>
  3662. <BR>[Called By]<UL><LI><a href="#[126]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;__0vsnprintf
  3663. </UL>
  3664. <P><STRONG><a name="[14b]"></a>_printf_post_padding</STRONG> (Thumb, 36 bytes, Stack size 24 bytes, printfa.o(i._printf_post_padding), UNUSED)
  3665. <BR><BR>[Called By]<UL><LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  3666. </UL>
  3667. <P><STRONG><a name="[14a]"></a>_printf_pre_padding</STRONG> (Thumb, 46 bytes, Stack size 24 bytes, printfa.o(i._printf_pre_padding), UNUSED)
  3668. <BR><BR>[Called By]<UL><LI><a href="#[127]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;_printf_core
  3669. </UL>
  3670. <P><STRONG><a name="[69]"></a>_snputc</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, printfa.o(i._snputc))
  3671. <BR>[Address Reference Count : 1]<UL><LI> printfa.o(i.__0vsnprintf)
  3672. </UL><P>
  3673. <H3>
  3674. Undefined Global Symbols
  3675. </H3><HR></body></html>