expected_output.json 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960
  1. {
  2. "events": [
  3. {
  4. "core_id": 0,
  5. "ctx_name": "IRQ_oncore1",
  6. "id": 10,
  7. "in_irq": true,
  8. "params": {},
  9. "ts": 0
  10. },
  11. {
  12. "core_id": 1,
  13. "ctx_name": "IRQ_oncore1",
  14. "id": 10,
  15. "in_irq": true,
  16. "params": {},
  17. "ts": 0
  18. },
  19. {
  20. "core_id": 0,
  21. "ctx_name": "IRQ_oncore1",
  22. "id": 24,
  23. "in_irq": true,
  24. "params": {
  25. "cpu_freq": 160000000,
  26. "id_shift": 0,
  27. "ram_base": 1061158912,
  28. "sys_freq": 40000000
  29. },
  30. "ts": 1.095e-05
  31. },
  32. {
  33. "core_id": 1,
  34. "ctx_name": "IRQ_oncore1",
  35. "id": 24,
  36. "in_irq": true,
  37. "params": {
  38. "cpu_freq": 160000000,
  39. "id_shift": 0,
  40. "ram_base": 1061158912,
  41. "sys_freq": 40000000
  42. },
  43. "ts": 1.095e-05
  44. },
  45. {
  46. "core_id": 0,
  47. "ctx_name": "IRQ_oncore1",
  48. "id": 14,
  49. "in_irq": true,
  50. "params": {
  51. "desc": "N=FreeRTOS Application,D=ESP32,C=Xtensa,O=FreeRTOS"
  52. },
  53. "ts": 2.48e-05
  54. },
  55. {
  56. "core_id": 1,
  57. "ctx_name": "IRQ_oncore1",
  58. "id": 14,
  59. "in_irq": true,
  60. "params": {
  61. "desc": "N=FreeRTOS Application,D=ESP32,C=Xtensa,O=FreeRTOS"
  62. },
  63. "ts": 2.48e-05
  64. },
  65. {
  66. "core_id": 0,
  67. "ctx_name": "IRQ_oncore1",
  68. "id": 14,
  69. "in_irq": true,
  70. "params": {
  71. "desc": "I#5=SysTick"
  72. },
  73. "ts": 5.165e-05
  74. },
  75. {
  76. "core_id": 1,
  77. "ctx_name": "IRQ_oncore1",
  78. "id": 14,
  79. "in_irq": true,
  80. "params": {
  81. "desc": "I#5=SysTick"
  82. },
  83. "ts": 5.165e-05
  84. },
  85. {
  86. "core_id": 0,
  87. "ctx_name": "IRQ_oncore1",
  88. "id": 14,
  89. "in_irq": true,
  90. "params": {
  91. "desc": "I#6=WIFI_MAC"
  92. },
  93. "ts": 0.00010415
  94. },
  95. {
  96. "core_id": 1,
  97. "ctx_name": "IRQ_oncore1",
  98. "id": 14,
  99. "in_irq": true,
  100. "params": {
  101. "desc": "I#6=WIFI_MAC"
  102. },
  103. "ts": 0.00010415
  104. },
  105. {
  106. "core_id": 0,
  107. "ctx_name": "IRQ_oncore1",
  108. "id": 14,
  109. "in_irq": true,
  110. "params": {
  111. "desc": "I#7=WIFI_NMI"
  112. },
  113. "ts": 0.0001211
  114. },
  115. {
  116. "core_id": 1,
  117. "ctx_name": "IRQ_oncore1",
  118. "id": 14,
  119. "in_irq": true,
  120. "params": {
  121. "desc": "I#7=WIFI_NMI"
  122. },
  123. "ts": 0.0001211
  124. },
  125. {
  126. "core_id": 0,
  127. "ctx_name": "IRQ_oncore1",
  128. "id": 14,
  129. "in_irq": true,
  130. "params": {
  131. "desc": "I#8=WIFI_BB"
  132. },
  133. "ts": 0.000138125
  134. },
  135. {
  136. "core_id": 1,
  137. "ctx_name": "IRQ_oncore1",
  138. "id": 14,
  139. "in_irq": true,
  140. "params": {
  141. "desc": "I#8=WIFI_BB"
  142. },
  143. "ts": 0.000138125
  144. },
  145. {
  146. "core_id": 0,
  147. "ctx_name": "IRQ_oncore1",
  148. "id": 14,
  149. "in_irq": true,
  150. "params": {
  151. "desc": "I#9=BT_MAC"
  152. },
  153. "ts": 0.000154825
  154. },
  155. {
  156. "core_id": 1,
  157. "ctx_name": "IRQ_oncore1",
  158. "id": 14,
  159. "in_irq": true,
  160. "params": {
  161. "desc": "I#9=BT_MAC"
  162. },
  163. "ts": 0.000154825
  164. },
  165. {
  166. "core_id": 0,
  167. "ctx_name": "IRQ_oncore1",
  168. "id": 14,
  169. "in_irq": true,
  170. "params": {
  171. "desc": "I#10=BT_BB"
  172. },
  173. "ts": 0.00019335
  174. },
  175. {
  176. "core_id": 1,
  177. "ctx_name": "IRQ_oncore1",
  178. "id": 14,
  179. "in_irq": true,
  180. "params": {
  181. "desc": "I#10=BT_BB"
  182. },
  183. "ts": 0.00019335
  184. },
  185. {
  186. "core_id": 0,
  187. "ctx_name": "IRQ_oncore1",
  188. "id": 14,
  189. "in_irq": true,
  190. "params": {
  191. "desc": "I#11=BT_BB_NMI"
  192. },
  193. "ts": 0.000212875
  194. },
  195. {
  196. "core_id": 1,
  197. "ctx_name": "IRQ_oncore1",
  198. "id": 14,
  199. "in_irq": true,
  200. "params": {
  201. "desc": "I#11=BT_BB_NMI"
  202. },
  203. "ts": 0.000212875
  204. },
  205. {
  206. "core_id": 0,
  207. "ctx_name": "IRQ_oncore1",
  208. "id": 14,
  209. "in_irq": true,
  210. "params": {
  211. "desc": "I#12=RWBT"
  212. },
  213. "ts": 0.000231625
  214. },
  215. {
  216. "core_id": 1,
  217. "ctx_name": "IRQ_oncore1",
  218. "id": 14,
  219. "in_irq": true,
  220. "params": {
  221. "desc": "I#12=RWBT"
  222. },
  223. "ts": 0.000231625
  224. },
  225. {
  226. "core_id": 0,
  227. "ctx_name": "IRQ_oncore1",
  228. "id": 14,
  229. "in_irq": true,
  230. "params": {
  231. "desc": "I#13=RWBLE"
  232. },
  233. "ts": 0.00025025
  234. },
  235. {
  236. "core_id": 1,
  237. "ctx_name": "IRQ_oncore1",
  238. "id": 14,
  239. "in_irq": true,
  240. "params": {
  241. "desc": "I#13=RWBLE"
  242. },
  243. "ts": 0.00025025
  244. },
  245. {
  246. "core_id": 0,
  247. "ctx_name": "IRQ_oncore1",
  248. "id": 14,
  249. "in_irq": true,
  250. "params": {
  251. "desc": "I#14=RWBT_NMI"
  252. },
  253. "ts": 0.00026945
  254. },
  255. {
  256. "core_id": 1,
  257. "ctx_name": "IRQ_oncore1",
  258. "id": 14,
  259. "in_irq": true,
  260. "params": {
  261. "desc": "I#14=RWBT_NMI"
  262. },
  263. "ts": 0.00026945
  264. },
  265. {
  266. "core_id": 0,
  267. "ctx_name": "IRQ_oncore1",
  268. "id": 14,
  269. "in_irq": true,
  270. "params": {
  271. "desc": "I#15=RWBLE_NMI"
  272. },
  273. "ts": 0.000288925
  274. },
  275. {
  276. "core_id": 1,
  277. "ctx_name": "IRQ_oncore1",
  278. "id": 14,
  279. "in_irq": true,
  280. "params": {
  281. "desc": "I#15=RWBLE_NMI"
  282. },
  283. "ts": 0.000288925
  284. },
  285. {
  286. "core_id": 0,
  287. "ctx_name": "IRQ_oncore1",
  288. "id": 14,
  289. "in_irq": true,
  290. "params": {
  291. "desc": "I#16=SLC0"
  292. },
  293. "ts": 0.000310575
  294. },
  295. {
  296. "core_id": 1,
  297. "ctx_name": "IRQ_oncore1",
  298. "id": 14,
  299. "in_irq": true,
  300. "params": {
  301. "desc": "I#16=SLC0"
  302. },
  303. "ts": 0.000310575
  304. },
  305. {
  306. "core_id": 0,
  307. "ctx_name": "IRQ_oncore1",
  308. "id": 14,
  309. "in_irq": true,
  310. "params": {
  311. "desc": "I#17=SLC1"
  312. },
  313. "ts": 0.00032915
  314. },
  315. {
  316. "core_id": 1,
  317. "ctx_name": "IRQ_oncore1",
  318. "id": 14,
  319. "in_irq": true,
  320. "params": {
  321. "desc": "I#17=SLC1"
  322. },
  323. "ts": 0.00032915
  324. },
  325. {
  326. "core_id": 0,
  327. "ctx_name": "IRQ_oncore1",
  328. "id": 14,
  329. "in_irq": true,
  330. "params": {
  331. "desc": "I#18=UHCI0"
  332. },
  333. "ts": 0.000347675
  334. },
  335. {
  336. "core_id": 1,
  337. "ctx_name": "IRQ_oncore1",
  338. "id": 14,
  339. "in_irq": true,
  340. "params": {
  341. "desc": "I#18=UHCI0"
  342. },
  343. "ts": 0.000347675
  344. },
  345. {
  346. "core_id": 0,
  347. "ctx_name": "IRQ_oncore1",
  348. "id": 14,
  349. "in_irq": true,
  350. "params": {
  351. "desc": "I#19=UHCI1"
  352. },
  353. "ts": 0.000366225
  354. },
  355. {
  356. "core_id": 1,
  357. "ctx_name": "IRQ_oncore1",
  358. "id": 14,
  359. "in_irq": true,
  360. "params": {
  361. "desc": "I#19=UHCI1"
  362. },
  363. "ts": 0.000366225
  364. },
  365. {
  366. "core_id": 0,
  367. "ctx_name": "IRQ_oncore1",
  368. "id": 14,
  369. "in_irq": true,
  370. "params": {
  371. "desc": "I#20=TG0_T0_LEVEL"
  372. },
  373. "ts": 0.00038635
  374. },
  375. {
  376. "core_id": 1,
  377. "ctx_name": "IRQ_oncore1",
  378. "id": 14,
  379. "in_irq": true,
  380. "params": {
  381. "desc": "I#20=TG0_T0_LEVEL"
  382. },
  383. "ts": 0.00038635
  384. },
  385. {
  386. "core_id": 0,
  387. "ctx_name": "IRQ_oncore1",
  388. "id": 14,
  389. "in_irq": true,
  390. "params": {
  391. "desc": "I#21=TG0_T1_LEVEL"
  392. },
  393. "ts": 0.000406575
  394. },
  395. {
  396. "core_id": 1,
  397. "ctx_name": "IRQ_oncore1",
  398. "id": 14,
  399. "in_irq": true,
  400. "params": {
  401. "desc": "I#21=TG0_T1_LEVEL"
  402. },
  403. "ts": 0.000406575
  404. },
  405. {
  406. "core_id": 0,
  407. "ctx_name": "IRQ_oncore1",
  408. "id": 14,
  409. "in_irq": true,
  410. "params": {
  411. "desc": "I#22=TG0_WDT_LEVEL"
  412. },
  413. "ts": 0.0004273
  414. },
  415. {
  416. "core_id": 1,
  417. "ctx_name": "IRQ_oncore1",
  418. "id": 14,
  419. "in_irq": true,
  420. "params": {
  421. "desc": "I#22=TG0_WDT_LEVEL"
  422. },
  423. "ts": 0.0004273
  424. },
  425. {
  426. "core_id": 0,
  427. "ctx_name": "IRQ_oncore1",
  428. "id": 14,
  429. "in_irq": true,
  430. "params": {
  431. "desc": "I#23=TG0_LACT_LEVEL"
  432. },
  433. "ts": 0.000448
  434. },
  435. {
  436. "core_id": 1,
  437. "ctx_name": "IRQ_oncore1",
  438. "id": 14,
  439. "in_irq": true,
  440. "params": {
  441. "desc": "I#23=TG0_LACT_LEVEL"
  442. },
  443. "ts": 0.000448
  444. },
  445. {
  446. "core_id": 0,
  447. "ctx_name": "IRQ_oncore1",
  448. "id": 14,
  449. "in_irq": true,
  450. "params": {
  451. "desc": "I#24=TG1_T0_LEVEL"
  452. },
  453. "ts": 0.00046825
  454. },
  455. {
  456. "core_id": 1,
  457. "ctx_name": "IRQ_oncore1",
  458. "id": 14,
  459. "in_irq": true,
  460. "params": {
  461. "desc": "I#24=TG1_T0_LEVEL"
  462. },
  463. "ts": 0.00046825
  464. },
  465. {
  466. "core_id": 0,
  467. "ctx_name": "IRQ_oncore1",
  468. "id": 14,
  469. "in_irq": true,
  470. "params": {
  471. "desc": "I#25=TG1_T1_LEVEL"
  472. },
  473. "ts": 0.0004885
  474. },
  475. {
  476. "core_id": 1,
  477. "ctx_name": "IRQ_oncore1",
  478. "id": 14,
  479. "in_irq": true,
  480. "params": {
  481. "desc": "I#25=TG1_T1_LEVEL"
  482. },
  483. "ts": 0.0004885
  484. },
  485. {
  486. "core_id": 0,
  487. "ctx_name": "IRQ_oncore1",
  488. "id": 14,
  489. "in_irq": true,
  490. "params": {
  491. "desc": "I#26=TG1_WDT_LEVEL"
  492. },
  493. "ts": 0.000508975
  494. },
  495. {
  496. "core_id": 1,
  497. "ctx_name": "IRQ_oncore1",
  498. "id": 14,
  499. "in_irq": true,
  500. "params": {
  501. "desc": "I#26=TG1_WDT_LEVEL"
  502. },
  503. "ts": 0.000508975
  504. },
  505. {
  506. "core_id": 0,
  507. "ctx_name": "IRQ_oncore1",
  508. "id": 14,
  509. "in_irq": true,
  510. "params": {
  511. "desc": "I#27=TG1_LACT_LEVEL"
  512. },
  513. "ts": 0.00052985
  514. },
  515. {
  516. "core_id": 1,
  517. "ctx_name": "IRQ_oncore1",
  518. "id": 14,
  519. "in_irq": true,
  520. "params": {
  521. "desc": "I#27=TG1_LACT_LEVEL"
  522. },
  523. "ts": 0.00052985
  524. },
  525. {
  526. "core_id": 0,
  527. "ctx_name": "IRQ_oncore1",
  528. "id": 14,
  529. "in_irq": true,
  530. "params": {
  531. "desc": "I#28=GPIO"
  532. },
  533. "ts": 0.000548375
  534. },
  535. {
  536. "core_id": 1,
  537. "ctx_name": "IRQ_oncore1",
  538. "id": 14,
  539. "in_irq": true,
  540. "params": {
  541. "desc": "I#28=GPIO"
  542. },
  543. "ts": 0.000548375
  544. },
  545. {
  546. "core_id": 0,
  547. "ctx_name": "IRQ_oncore1",
  548. "id": 14,
  549. "in_irq": true,
  550. "params": {
  551. "desc": "I#29=GPIO_NMI"
  552. },
  553. "ts": 0.000570825
  554. },
  555. {
  556. "core_id": 1,
  557. "ctx_name": "IRQ_oncore1",
  558. "id": 14,
  559. "in_irq": true,
  560. "params": {
  561. "desc": "I#29=GPIO_NMI"
  562. },
  563. "ts": 0.000570825
  564. },
  565. {
  566. "core_id": 0,
  567. "ctx_name": "IRQ_oncore1",
  568. "id": 14,
  569. "in_irq": true,
  570. "params": {
  571. "desc": "I#30=FROM_CPU0"
  572. },
  573. "ts": 0.000590425
  574. },
  575. {
  576. "core_id": 1,
  577. "ctx_name": "IRQ_oncore1",
  578. "id": 14,
  579. "in_irq": true,
  580. "params": {
  581. "desc": "I#30=FROM_CPU0"
  582. },
  583. "ts": 0.000590425
  584. },
  585. {
  586. "core_id": 0,
  587. "ctx_name": "IRQ_oncore1",
  588. "id": 14,
  589. "in_irq": true,
  590. "params": {
  591. "desc": "I#31=FROM_CPU1"
  592. },
  593. "ts": 0.00061
  594. },
  595. {
  596. "core_id": 1,
  597. "ctx_name": "IRQ_oncore1",
  598. "id": 14,
  599. "in_irq": true,
  600. "params": {
  601. "desc": "I#31=FROM_CPU1"
  602. },
  603. "ts": 0.00061
  604. },
  605. {
  606. "core_id": 0,
  607. "ctx_name": "IRQ_oncore1",
  608. "id": 14,
  609. "in_irq": true,
  610. "params": {
  611. "desc": "I#32=FROM_CPU2"
  612. },
  613. "ts": 0.000629625
  614. },
  615. {
  616. "core_id": 1,
  617. "ctx_name": "IRQ_oncore1",
  618. "id": 14,
  619. "in_irq": true,
  620. "params": {
  621. "desc": "I#32=FROM_CPU2"
  622. },
  623. "ts": 0.000629625
  624. },
  625. {
  626. "core_id": 0,
  627. "ctx_name": "IRQ_oncore1",
  628. "id": 14,
  629. "in_irq": true,
  630. "params": {
  631. "desc": "I#33=FROM_CPU3"
  632. },
  633. "ts": 0.000649425
  634. },
  635. {
  636. "core_id": 1,
  637. "ctx_name": "IRQ_oncore1",
  638. "id": 14,
  639. "in_irq": true,
  640. "params": {
  641. "desc": "I#33=FROM_CPU3"
  642. },
  643. "ts": 0.000649425
  644. },
  645. {
  646. "core_id": 0,
  647. "ctx_name": "IRQ_oncore1",
  648. "id": 14,
  649. "in_irq": true,
  650. "params": {
  651. "desc": "I#34=SPI0"
  652. },
  653. "ts": 0.000667975
  654. },
  655. {
  656. "core_id": 1,
  657. "ctx_name": "IRQ_oncore1",
  658. "id": 14,
  659. "in_irq": true,
  660. "params": {
  661. "desc": "I#34=SPI0"
  662. },
  663. "ts": 0.000667975
  664. },
  665. {
  666. "core_id": 0,
  667. "ctx_name": "IRQ_oncore1",
  668. "id": 14,
  669. "in_irq": true,
  670. "params": {
  671. "desc": "I#35=SPI1"
  672. },
  673. "ts": 0.0006865
  674. },
  675. {
  676. "core_id": 1,
  677. "ctx_name": "IRQ_oncore1",
  678. "id": 14,
  679. "in_irq": true,
  680. "params": {
  681. "desc": "I#35=SPI1"
  682. },
  683. "ts": 0.0006865
  684. },
  685. {
  686. "core_id": 0,
  687. "ctx_name": "IRQ_oncore1",
  688. "id": 14,
  689. "in_irq": true,
  690. "params": {
  691. "desc": "I#36=SPI2"
  692. },
  693. "ts": 0.000704825
  694. },
  695. {
  696. "core_id": 1,
  697. "ctx_name": "IRQ_oncore1",
  698. "id": 14,
  699. "in_irq": true,
  700. "params": {
  701. "desc": "I#36=SPI2"
  702. },
  703. "ts": 0.000704825
  704. },
  705. {
  706. "core_id": 0,
  707. "ctx_name": "IRQ_oncore1",
  708. "id": 14,
  709. "in_irq": true,
  710. "params": {
  711. "desc": "I#37=SPI3"
  712. },
  713. "ts": 0.0007231
  714. },
  715. {
  716. "core_id": 1,
  717. "ctx_name": "IRQ_oncore1",
  718. "id": 14,
  719. "in_irq": true,
  720. "params": {
  721. "desc": "I#37=SPI3"
  722. },
  723. "ts": 0.0007231
  724. },
  725. {
  726. "core_id": 0,
  727. "ctx_name": "IRQ_oncore1",
  728. "id": 14,
  729. "in_irq": true,
  730. "params": {
  731. "desc": "I#38=I2S0"
  732. },
  733. "ts": 0.00074155
  734. },
  735. {
  736. "core_id": 1,
  737. "ctx_name": "IRQ_oncore1",
  738. "id": 14,
  739. "in_irq": true,
  740. "params": {
  741. "desc": "I#38=I2S0"
  742. },
  743. "ts": 0.00074155
  744. },
  745. {
  746. "core_id": 0,
  747. "ctx_name": "IRQ_oncore1",
  748. "id": 14,
  749. "in_irq": true,
  750. "params": {
  751. "desc": "I#39=I2S1"
  752. },
  753. "ts": 0.00076
  754. },
  755. {
  756. "core_id": 1,
  757. "ctx_name": "IRQ_oncore1",
  758. "id": 14,
  759. "in_irq": true,
  760. "params": {
  761. "desc": "I#39=I2S1"
  762. },
  763. "ts": 0.00076
  764. },
  765. {
  766. "core_id": 0,
  767. "ctx_name": "IRQ_oncore1",
  768. "id": 14,
  769. "in_irq": true,
  770. "params": {
  771. "desc": "I#40=UART0"
  772. },
  773. "ts": 0.000778475
  774. },
  775. {
  776. "core_id": 1,
  777. "ctx_name": "IRQ_oncore1",
  778. "id": 14,
  779. "in_irq": true,
  780. "params": {
  781. "desc": "I#40=UART0"
  782. },
  783. "ts": 0.000778475
  784. },
  785. {
  786. "core_id": 0,
  787. "ctx_name": "IRQ_oncore1",
  788. "id": 14,
  789. "in_irq": true,
  790. "params": {
  791. "desc": "I#41=UART1"
  792. },
  793. "ts": 0.00079705
  794. },
  795. {
  796. "core_id": 1,
  797. "ctx_name": "IRQ_oncore1",
  798. "id": 14,
  799. "in_irq": true,
  800. "params": {
  801. "desc": "I#41=UART1"
  802. },
  803. "ts": 0.00079705
  804. },
  805. {
  806. "core_id": 0,
  807. "ctx_name": "IRQ_oncore1",
  808. "id": 14,
  809. "in_irq": true,
  810. "params": {
  811. "desc": "I#42=UART2"
  812. },
  813. "ts": 0.000815625
  814. },
  815. {
  816. "core_id": 1,
  817. "ctx_name": "IRQ_oncore1",
  818. "id": 14,
  819. "in_irq": true,
  820. "params": {
  821. "desc": "I#42=UART2"
  822. },
  823. "ts": 0.000815625
  824. },
  825. {
  826. "core_id": 0,
  827. "ctx_name": "IRQ_oncore1",
  828. "id": 14,
  829. "in_irq": true,
  830. "params": {
  831. "desc": "I#43=SDIO_HOST"
  832. },
  833. "ts": 0.000835
  834. },
  835. {
  836. "core_id": 1,
  837. "ctx_name": "IRQ_oncore1",
  838. "id": 14,
  839. "in_irq": true,
  840. "params": {
  841. "desc": "I#43=SDIO_HOST"
  842. },
  843. "ts": 0.000835
  844. },
  845. {
  846. "core_id": 0,
  847. "ctx_name": "IRQ_oncore1",
  848. "id": 14,
  849. "in_irq": true,
  850. "params": {
  851. "desc": "I#44=ETH_MAC"
  852. },
  853. "ts": 0.000854075
  854. },
  855. {
  856. "core_id": 1,
  857. "ctx_name": "IRQ_oncore1",
  858. "id": 14,
  859. "in_irq": true,
  860. "params": {
  861. "desc": "I#44=ETH_MAC"
  862. },
  863. "ts": 0.000854075
  864. },
  865. {
  866. "core_id": 0,
  867. "ctx_name": "IRQ_oncore1",
  868. "id": 14,
  869. "in_irq": true,
  870. "params": {
  871. "desc": "I#45=PWM0"
  872. },
  873. "ts": 0.0008756
  874. },
  875. {
  876. "core_id": 1,
  877. "ctx_name": "IRQ_oncore1",
  878. "id": 14,
  879. "in_irq": true,
  880. "params": {
  881. "desc": "I#45=PWM0"
  882. },
  883. "ts": 0.0008756
  884. },
  885. {
  886. "core_id": 0,
  887. "ctx_name": "IRQ_oncore1",
  888. "id": 14,
  889. "in_irq": true,
  890. "params": {
  891. "desc": "I#46=PWM1"
  892. },
  893. "ts": 0.00089385
  894. },
  895. {
  896. "core_id": 1,
  897. "ctx_name": "IRQ_oncore1",
  898. "id": 14,
  899. "in_irq": true,
  900. "params": {
  901. "desc": "I#46=PWM1"
  902. },
  903. "ts": 0.00089385
  904. },
  905. {
  906. "core_id": 0,
  907. "ctx_name": "IRQ_oncore1",
  908. "id": 14,
  909. "in_irq": true,
  910. "params": {
  911. "desc": "I#47=PWM2"
  912. },
  913. "ts": 0.000912375
  914. },
  915. {
  916. "core_id": 1,
  917. "ctx_name": "IRQ_oncore1",
  918. "id": 14,
  919. "in_irq": true,
  920. "params": {
  921. "desc": "I#47=PWM2"
  922. },
  923. "ts": 0.000912375
  924. },
  925. {
  926. "core_id": 0,
  927. "ctx_name": "IRQ_oncore1",
  928. "id": 14,
  929. "in_irq": true,
  930. "params": {
  931. "desc": "I#48=PWM3"
  932. },
  933. "ts": 0.00093095
  934. },
  935. {
  936. "core_id": 1,
  937. "ctx_name": "IRQ_oncore1",
  938. "id": 14,
  939. "in_irq": true,
  940. "params": {
  941. "desc": "I#48=PWM3"
  942. },
  943. "ts": 0.00093095
  944. },
  945. {
  946. "core_id": 0,
  947. "ctx_name": "IRQ_oncore1",
  948. "id": 14,
  949. "in_irq": true,
  950. "params": {
  951. "desc": "I#49=LEDC"
  952. },
  953. "ts": 0.000949375
  954. },
  955. {
  956. "core_id": 1,
  957. "ctx_name": "IRQ_oncore1",
  958. "id": 14,
  959. "in_irq": true,
  960. "params": {
  961. "desc": "I#49=LEDC"
  962. },
  963. "ts": 0.000949375
  964. },
  965. {
  966. "core_id": 0,
  967. "ctx_name": "IRQ_oncore1",
  968. "id": 14,
  969. "in_irq": true,
  970. "params": {
  971. "desc": "I#50=EFUSE"
  972. },
  973. "ts": 0.000968075
  974. },
  975. {
  976. "core_id": 1,
  977. "ctx_name": "IRQ_oncore1",
  978. "id": 14,
  979. "in_irq": true,
  980. "params": {
  981. "desc": "I#50=EFUSE"
  982. },
  983. "ts": 0.000968075
  984. },
  985. {
  986. "core_id": 0,
  987. "ctx_name": "IRQ_oncore1",
  988. "id": 14,
  989. "in_irq": true,
  990. "params": {
  991. "desc": "I#51=CAN"
  992. },
  993. "ts": 0.000986275
  994. },
  995. {
  996. "core_id": 1,
  997. "ctx_name": "IRQ_oncore1",
  998. "id": 14,
  999. "in_irq": true,
  1000. "params": {
  1001. "desc": "I#51=CAN"
  1002. },
  1003. "ts": 0.000986275
  1004. },
  1005. {
  1006. "core_id": 0,
  1007. "ctx_name": "IRQ_oncore1",
  1008. "id": 14,
  1009. "in_irq": true,
  1010. "params": {
  1011. "desc": "I#52=RTC_CORE"
  1012. },
  1013. "ts": 0.001005625
  1014. },
  1015. {
  1016. "core_id": 1,
  1017. "ctx_name": "IRQ_oncore1",
  1018. "id": 14,
  1019. "in_irq": true,
  1020. "params": {
  1021. "desc": "I#52=RTC_CORE"
  1022. },
  1023. "ts": 0.001005625
  1024. },
  1025. {
  1026. "core_id": 0,
  1027. "ctx_name": "IRQ_oncore1",
  1028. "id": 14,
  1029. "in_irq": true,
  1030. "params": {
  1031. "desc": "I#53=RMT"
  1032. },
  1033. "ts": 0.0010237
  1034. },
  1035. {
  1036. "core_id": 1,
  1037. "ctx_name": "IRQ_oncore1",
  1038. "id": 14,
  1039. "in_irq": true,
  1040. "params": {
  1041. "desc": "I#53=RMT"
  1042. },
  1043. "ts": 0.0010237
  1044. },
  1045. {
  1046. "core_id": 0,
  1047. "ctx_name": "IRQ_oncore1",
  1048. "id": 14,
  1049. "in_irq": true,
  1050. "params": {
  1051. "desc": "I#54=PCNT"
  1052. },
  1053. "ts": 0.00104205
  1054. },
  1055. {
  1056. "core_id": 1,
  1057. "ctx_name": "IRQ_oncore1",
  1058. "id": 14,
  1059. "in_irq": true,
  1060. "params": {
  1061. "desc": "I#54=PCNT"
  1062. },
  1063. "ts": 0.00104205
  1064. },
  1065. {
  1066. "core_id": 0,
  1067. "ctx_name": "IRQ_oncore1",
  1068. "id": 14,
  1069. "in_irq": true,
  1070. "params": {
  1071. "desc": "I#55=I2C_EXT0"
  1072. },
  1073. "ts": 0.0010615
  1074. },
  1075. {
  1076. "core_id": 1,
  1077. "ctx_name": "IRQ_oncore1",
  1078. "id": 14,
  1079. "in_irq": true,
  1080. "params": {
  1081. "desc": "I#55=I2C_EXT0"
  1082. },
  1083. "ts": 0.0010615
  1084. },
  1085. {
  1086. "core_id": 0,
  1087. "ctx_name": "IRQ_oncore1",
  1088. "id": 14,
  1089. "in_irq": true,
  1090. "params": {
  1091. "desc": "I#56=I2C_EXT1"
  1092. },
  1093. "ts": 0.0010811
  1094. },
  1095. {
  1096. "core_id": 1,
  1097. "ctx_name": "IRQ_oncore1",
  1098. "id": 14,
  1099. "in_irq": true,
  1100. "params": {
  1101. "desc": "I#56=I2C_EXT1"
  1102. },
  1103. "ts": 0.0010811
  1104. },
  1105. {
  1106. "core_id": 0,
  1107. "ctx_name": "IRQ_oncore1",
  1108. "id": 14,
  1109. "in_irq": true,
  1110. "params": {
  1111. "desc": "I#57=RSA"
  1112. },
  1113. "ts": 0.001099425
  1114. },
  1115. {
  1116. "core_id": 1,
  1117. "ctx_name": "IRQ_oncore1",
  1118. "id": 14,
  1119. "in_irq": true,
  1120. "params": {
  1121. "desc": "I#57=RSA"
  1122. },
  1123. "ts": 0.001099425
  1124. },
  1125. {
  1126. "core_id": 0,
  1127. "ctx_name": "IRQ_oncore1",
  1128. "id": 14,
  1129. "in_irq": true,
  1130. "params": {
  1131. "desc": "I#58=SPI1_DMA"
  1132. },
  1133. "ts": 0.001118625
  1134. },
  1135. {
  1136. "core_id": 1,
  1137. "ctx_name": "IRQ_oncore1",
  1138. "id": 14,
  1139. "in_irq": true,
  1140. "params": {
  1141. "desc": "I#58=SPI1_DMA"
  1142. },
  1143. "ts": 0.001118625
  1144. },
  1145. {
  1146. "core_id": 0,
  1147. "ctx_name": "IRQ_oncore1",
  1148. "id": 14,
  1149. "in_irq": true,
  1150. "params": {
  1151. "desc": "I#59=SPI2_DMA"
  1152. },
  1153. "ts": 0.001137775
  1154. },
  1155. {
  1156. "core_id": 1,
  1157. "ctx_name": "IRQ_oncore1",
  1158. "id": 14,
  1159. "in_irq": true,
  1160. "params": {
  1161. "desc": "I#59=SPI2_DMA"
  1162. },
  1163. "ts": 0.001137775
  1164. },
  1165. {
  1166. "core_id": 0,
  1167. "ctx_name": "IRQ_oncore1",
  1168. "id": 14,
  1169. "in_irq": true,
  1170. "params": {
  1171. "desc": "I#60=SPI3_DMA"
  1172. },
  1173. "ts": 0.00115695
  1174. },
  1175. {
  1176. "core_id": 1,
  1177. "ctx_name": "IRQ_oncore1",
  1178. "id": 14,
  1179. "in_irq": true,
  1180. "params": {
  1181. "desc": "I#60=SPI3_DMA"
  1182. },
  1183. "ts": 0.00115695
  1184. },
  1185. {
  1186. "core_id": 0,
  1187. "ctx_name": "IRQ_oncore1",
  1188. "id": 14,
  1189. "in_irq": true,
  1190. "params": {
  1191. "desc": "I#61=WDT"
  1192. },
  1193. "ts": 0.001175175
  1194. },
  1195. {
  1196. "core_id": 1,
  1197. "ctx_name": "IRQ_oncore1",
  1198. "id": 14,
  1199. "in_irq": true,
  1200. "params": {
  1201. "desc": "I#61=WDT"
  1202. },
  1203. "ts": 0.001175175
  1204. },
  1205. {
  1206. "core_id": 0,
  1207. "ctx_name": "IRQ_oncore1",
  1208. "id": 14,
  1209. "in_irq": true,
  1210. "params": {
  1211. "desc": "I#62=TIMER1"
  1212. },
  1213. "ts": 0.0011973
  1214. },
  1215. {
  1216. "core_id": 1,
  1217. "ctx_name": "IRQ_oncore1",
  1218. "id": 14,
  1219. "in_irq": true,
  1220. "params": {
  1221. "desc": "I#62=TIMER1"
  1222. },
  1223. "ts": 0.0011973
  1224. },
  1225. {
  1226. "core_id": 0,
  1227. "ctx_name": "IRQ_oncore1",
  1228. "id": 14,
  1229. "in_irq": true,
  1230. "params": {
  1231. "desc": "I#63=TIMER2"
  1232. },
  1233. "ts": 0.00121625
  1234. },
  1235. {
  1236. "core_id": 1,
  1237. "ctx_name": "IRQ_oncore1",
  1238. "id": 14,
  1239. "in_irq": true,
  1240. "params": {
  1241. "desc": "I#63=TIMER2"
  1242. },
  1243. "ts": 0.00121625
  1244. },
  1245. {
  1246. "core_id": 0,
  1247. "ctx_name": "IRQ_oncore1",
  1248. "id": 14,
  1249. "in_irq": true,
  1250. "params": {
  1251. "desc": "I#64=TG0_T0_EDGE"
  1252. },
  1253. "ts": 0.001236175
  1254. },
  1255. {
  1256. "core_id": 1,
  1257. "ctx_name": "IRQ_oncore1",
  1258. "id": 14,
  1259. "in_irq": true,
  1260. "params": {
  1261. "desc": "I#64=TG0_T0_EDGE"
  1262. },
  1263. "ts": 0.001236175
  1264. },
  1265. {
  1266. "core_id": 0,
  1267. "ctx_name": "IRQ_oncore1",
  1268. "id": 14,
  1269. "in_irq": true,
  1270. "params": {
  1271. "desc": "I#65=TG0_T1_EDGE"
  1272. },
  1273. "ts": 0.001256275
  1274. },
  1275. {
  1276. "core_id": 1,
  1277. "ctx_name": "IRQ_oncore1",
  1278. "id": 14,
  1279. "in_irq": true,
  1280. "params": {
  1281. "desc": "I#65=TG0_T1_EDGE"
  1282. },
  1283. "ts": 0.001256275
  1284. },
  1285. {
  1286. "core_id": 0,
  1287. "ctx_name": "IRQ_oncore1",
  1288. "id": 14,
  1289. "in_irq": true,
  1290. "params": {
  1291. "desc": "I#66=TG0_WDT_EDGE"
  1292. },
  1293. "ts": 0.001276675
  1294. },
  1295. {
  1296. "core_id": 1,
  1297. "ctx_name": "IRQ_oncore1",
  1298. "id": 14,
  1299. "in_irq": true,
  1300. "params": {
  1301. "desc": "I#66=TG0_WDT_EDGE"
  1302. },
  1303. "ts": 0.001276675
  1304. },
  1305. {
  1306. "core_id": 0,
  1307. "ctx_name": "IRQ_oncore1",
  1308. "id": 14,
  1309. "in_irq": true,
  1310. "params": {
  1311. "desc": "I#67=TG0_LACT_EDGE"
  1312. },
  1313. "ts": 0.001297375
  1314. },
  1315. {
  1316. "core_id": 1,
  1317. "ctx_name": "IRQ_oncore1",
  1318. "id": 14,
  1319. "in_irq": true,
  1320. "params": {
  1321. "desc": "I#67=TG0_LACT_EDGE"
  1322. },
  1323. "ts": 0.001297375
  1324. },
  1325. {
  1326. "core_id": 0,
  1327. "ctx_name": "IRQ_oncore1",
  1328. "id": 14,
  1329. "in_irq": true,
  1330. "params": {
  1331. "desc": "I#68=TG1_T0_EDGE"
  1332. },
  1333. "ts": 0.001317425
  1334. },
  1335. {
  1336. "core_id": 1,
  1337. "ctx_name": "IRQ_oncore1",
  1338. "id": 14,
  1339. "in_irq": true,
  1340. "params": {
  1341. "desc": "I#68=TG1_T0_EDGE"
  1342. },
  1343. "ts": 0.001317425
  1344. },
  1345. {
  1346. "core_id": 0,
  1347. "ctx_name": "IRQ_oncore1",
  1348. "id": 14,
  1349. "in_irq": true,
  1350. "params": {
  1351. "desc": "I#69=TG1_T1_EDGE"
  1352. },
  1353. "ts": 0.00133765
  1354. },
  1355. {
  1356. "core_id": 1,
  1357. "ctx_name": "IRQ_oncore1",
  1358. "id": 14,
  1359. "in_irq": true,
  1360. "params": {
  1361. "desc": "I#69=TG1_T1_EDGE"
  1362. },
  1363. "ts": 0.00133765
  1364. },
  1365. {
  1366. "core_id": 0,
  1367. "ctx_name": "IRQ_oncore1",
  1368. "id": 14,
  1369. "in_irq": true,
  1370. "params": {
  1371. "desc": "I#70=TG1_WDT_EDGE"
  1372. },
  1373. "ts": 0.00135795
  1374. },
  1375. {
  1376. "core_id": 1,
  1377. "ctx_name": "IRQ_oncore1",
  1378. "id": 14,
  1379. "in_irq": true,
  1380. "params": {
  1381. "desc": "I#70=TG1_WDT_EDGE"
  1382. },
  1383. "ts": 0.00135795
  1384. },
  1385. {
  1386. "core_id": 0,
  1387. "ctx_name": "IRQ_oncore1",
  1388. "id": 14,
  1389. "in_irq": true,
  1390. "params": {
  1391. "desc": "I#71=TG1_LACT_EDGE"
  1392. },
  1393. "ts": 0.001378625
  1394. },
  1395. {
  1396. "core_id": 1,
  1397. "ctx_name": "IRQ_oncore1",
  1398. "id": 14,
  1399. "in_irq": true,
  1400. "params": {
  1401. "desc": "I#71=TG1_LACT_EDGE"
  1402. },
  1403. "ts": 0.001378625
  1404. },
  1405. {
  1406. "core_id": 0,
  1407. "ctx_name": "IRQ_oncore1",
  1408. "id": 14,
  1409. "in_irq": true,
  1410. "params": {
  1411. "desc": "I#72=MMU_IA"
  1412. },
  1413. "ts": 0.0013975
  1414. },
  1415. {
  1416. "core_id": 1,
  1417. "ctx_name": "IRQ_oncore1",
  1418. "id": 14,
  1419. "in_irq": true,
  1420. "params": {
  1421. "desc": "I#72=MMU_IA"
  1422. },
  1423. "ts": 0.0013975
  1424. },
  1425. {
  1426. "core_id": 0,
  1427. "ctx_name": "IRQ_oncore1",
  1428. "id": 14,
  1429. "in_irq": true,
  1430. "params": {
  1431. "desc": "I#73=MPU_IA"
  1432. },
  1433. "ts": 0.001416425
  1434. },
  1435. {
  1436. "core_id": 1,
  1437. "ctx_name": "IRQ_oncore1",
  1438. "id": 14,
  1439. "in_irq": true,
  1440. "params": {
  1441. "desc": "I#73=MPU_IA"
  1442. },
  1443. "ts": 0.001416425
  1444. },
  1445. {
  1446. "core_id": 0,
  1447. "ctx_name": "IRQ_oncore1",
  1448. "id": 14,
  1449. "in_irq": true,
  1450. "params": {
  1451. "desc": "I#74=CACHE_IA"
  1452. },
  1453. "ts": 0.00143555
  1454. },
  1455. {
  1456. "core_id": 1,
  1457. "ctx_name": "IRQ_oncore1",
  1458. "id": 14,
  1459. "in_irq": true,
  1460. "params": {
  1461. "desc": "I#74=CACHE_IA"
  1462. },
  1463. "ts": 0.00143555
  1464. },
  1465. {
  1466. "core_id": 0,
  1467. "ctx_name": "IRQ_oncore1",
  1468. "id": 13,
  1469. "in_irq": true,
  1470. "params": {
  1471. "time": 10000
  1472. },
  1473. "ts": 0.00144195
  1474. },
  1475. {
  1476. "core_id": 1,
  1477. "ctx_name": "IRQ_oncore1",
  1478. "id": 13,
  1479. "in_irq": true,
  1480. "params": {
  1481. "time": 10000
  1482. },
  1483. "ts": 0.00144195
  1484. },
  1485. {
  1486. "core_id": 0,
  1487. "ctx_name": "IRQ_oncore1",
  1488. "id": 9,
  1489. "in_irq": true,
  1490. "params": {
  1491. "name": "esp_timer",
  1492. "prio": 22,
  1493. "tid": 12253880
  1494. },
  1495. "ts": 0.0016474
  1496. },
  1497. {
  1498. "core_id": 1,
  1499. "ctx_name": "IRQ_oncore1",
  1500. "id": 9,
  1501. "in_irq": true,
  1502. "params": {
  1503. "name": "esp_timer",
  1504. "prio": 22,
  1505. "tid": 12253880
  1506. },
  1507. "ts": 0.0016474
  1508. },
  1509. {
  1510. "core_id": 0,
  1511. "ctx_name": "IRQ_oncore1",
  1512. "id": 21,
  1513. "in_irq": true,
  1514. "params": {
  1515. "base": 1073408692,
  1516. "sz": 3436,
  1517. "tid": 12253880,
  1518. "unused": 0
  1519. },
  1520. "ts": 0.001652
  1521. },
  1522. {
  1523. "core_id": 1,
  1524. "ctx_name": "IRQ_oncore1",
  1525. "id": 21,
  1526. "in_irq": true,
  1527. "params": {
  1528. "base": 1073408692,
  1529. "sz": 3436,
  1530. "tid": 12253880,
  1531. "unused": 0
  1532. },
  1533. "ts": 0.001652
  1534. },
  1535. {
  1536. "core_id": 0,
  1537. "ctx_name": "IRQ_oncore1",
  1538. "id": 9,
  1539. "in_irq": true,
  1540. "params": {
  1541. "name": "ipc0",
  1542. "prio": 24,
  1543. "tid": 12254636
  1544. },
  1545. "ts": 0.00173855
  1546. },
  1547. {
  1548. "core_id": 1,
  1549. "ctx_name": "IRQ_oncore1",
  1550. "id": 9,
  1551. "in_irq": true,
  1552. "params": {
  1553. "name": "ipc0",
  1554. "prio": 24,
  1555. "tid": 12254636
  1556. },
  1557. "ts": 0.00173855
  1558. },
  1559. {
  1560. "core_id": 0,
  1561. "ctx_name": "IRQ_oncore1",
  1562. "id": 21,
  1563. "in_irq": true,
  1564. "params": {
  1565. "base": 1073430180,
  1566. "sz": 1388,
  1567. "tid": 12254636,
  1568. "unused": 0
  1569. },
  1570. "ts": 0.00174275
  1571. },
  1572. {
  1573. "core_id": 1,
  1574. "ctx_name": "IRQ_oncore1",
  1575. "id": 21,
  1576. "in_irq": true,
  1577. "params": {
  1578. "base": 1073430180,
  1579. "sz": 1388,
  1580. "tid": 12254636,
  1581. "unused": 0
  1582. },
  1583. "ts": 0.00174275
  1584. },
  1585. {
  1586. "core_id": 0,
  1587. "ctx_name": "IRQ_oncore1",
  1588. "id": 9,
  1589. "in_irq": true,
  1590. "params": {
  1591. "name": "ipc1",
  1592. "prio": 24,
  1593. "tid": 12275372
  1594. },
  1595. "ts": 0.001828975
  1596. },
  1597. {
  1598. "core_id": 1,
  1599. "ctx_name": "IRQ_oncore1",
  1600. "id": 9,
  1601. "in_irq": true,
  1602. "params": {
  1603. "name": "ipc1",
  1604. "prio": 24,
  1605. "tid": 12275372
  1606. },
  1607. "ts": 0.001828975
  1608. },
  1609. {
  1610. "core_id": 0,
  1611. "ctx_name": "IRQ_oncore1",
  1612. "id": 21,
  1613. "in_irq": true,
  1614. "params": {
  1615. "base": 1073432232,
  1616. "sz": 1384,
  1617. "tid": 12275372,
  1618. "unused": 0
  1619. },
  1620. "ts": 0.001833225
  1621. },
  1622. {
  1623. "core_id": 1,
  1624. "ctx_name": "IRQ_oncore1",
  1625. "id": 21,
  1626. "in_irq": true,
  1627. "params": {
  1628. "base": 1073432232,
  1629. "sz": 1384,
  1630. "tid": 12275372,
  1631. "unused": 0
  1632. },
  1633. "ts": 0.001833225
  1634. },
  1635. {
  1636. "core_id": 0,
  1637. "ctx_name": "IRQ_oncore1",
  1638. "id": 9,
  1639. "in_irq": true,
  1640. "params": {
  1641. "name": "blink_task",
  1642. "prio": 5,
  1643. "tid": 12291908
  1644. },
  1645. "ts": 0.001871225
  1646. },
  1647. {
  1648. "core_id": 1,
  1649. "ctx_name": "IRQ_oncore1",
  1650. "id": 9,
  1651. "in_irq": true,
  1652. "params": {
  1653. "name": "blink_task",
  1654. "prio": 5,
  1655. "tid": 12291908
  1656. },
  1657. "ts": 0.001871225
  1658. },
  1659. {
  1660. "core_id": 0,
  1661. "ctx_name": "IRQ_oncore1",
  1662. "id": 21,
  1663. "in_irq": true,
  1664. "params": {
  1665. "base": 1073448452,
  1666. "sz": 524,
  1667. "tid": 12291908,
  1668. "unused": 0
  1669. },
  1670. "ts": 0.00187565
  1671. },
  1672. {
  1673. "core_id": 1,
  1674. "ctx_name": "IRQ_oncore1",
  1675. "id": 21,
  1676. "in_irq": true,
  1677. "params": {
  1678. "base": 1073448452,
  1679. "sz": 524,
  1680. "tid": 12291908,
  1681. "unused": 0
  1682. },
  1683. "ts": 0.00187565
  1684. },
  1685. {
  1686. "core_id": 0,
  1687. "ctx_name": "IRQ_oncore1",
  1688. "id": 9,
  1689. "in_irq": true,
  1690. "params": {
  1691. "name": "main",
  1692. "prio": 1,
  1693. "tid": 12282660
  1694. },
  1695. "ts": 0.0020708
  1696. },
  1697. {
  1698. "core_id": 1,
  1699. "ctx_name": "IRQ_oncore1",
  1700. "id": 9,
  1701. "in_irq": true,
  1702. "params": {
  1703. "name": "main",
  1704. "prio": 1,
  1705. "tid": 12282660
  1706. },
  1707. "ts": 0.0020708
  1708. },
  1709. {
  1710. "core_id": 0,
  1711. "ctx_name": "IRQ_oncore1",
  1712. "id": 21,
  1713. "in_irq": true,
  1714. "params": {
  1715. "base": 1073437472,
  1716. "sz": 3296,
  1717. "tid": 12282660,
  1718. "unused": 0
  1719. },
  1720. "ts": 0.0020752
  1721. },
  1722. {
  1723. "core_id": 1,
  1724. "ctx_name": "IRQ_oncore1",
  1725. "id": 21,
  1726. "in_irq": true,
  1727. "params": {
  1728. "base": 1073437472,
  1729. "sz": 3296,
  1730. "tid": 12282660,
  1731. "unused": 0
  1732. },
  1733. "ts": 0.0020752
  1734. },
  1735. {
  1736. "core_id": 0,
  1737. "ctx_name": "IRQ_oncore1",
  1738. "id": 9,
  1739. "in_irq": true,
  1740. "params": {
  1741. "name": "IDLE0",
  1742. "prio": 0,
  1743. "tid": 12284560
  1744. },
  1745. "ts": 0.002153375
  1746. },
  1747. {
  1748. "core_id": 1,
  1749. "ctx_name": "IRQ_oncore1",
  1750. "id": 9,
  1751. "in_irq": true,
  1752. "params": {
  1753. "name": "IDLE0",
  1754. "prio": 0,
  1755. "tid": 12284560
  1756. },
  1757. "ts": 0.002153375
  1758. },
  1759. {
  1760. "core_id": 0,
  1761. "ctx_name": "IRQ_oncore1",
  1762. "id": 21,
  1763. "in_irq": true,
  1764. "params": {
  1765. "base": 1073441932,
  1766. "sz": 1236,
  1767. "tid": 12284560,
  1768. "unused": 0
  1769. },
  1770. "ts": 0.00215785
  1771. },
  1772. {
  1773. "core_id": 1,
  1774. "ctx_name": "IRQ_oncore1",
  1775. "id": 21,
  1776. "in_irq": true,
  1777. "params": {
  1778. "base": 1073441932,
  1779. "sz": 1236,
  1780. "tid": 12284560,
  1781. "unused": 0
  1782. },
  1783. "ts": 0.00215785
  1784. },
  1785. {
  1786. "core_id": 0,
  1787. "ctx_name": "IRQ_oncore1",
  1788. "id": 9,
  1789. "in_irq": true,
  1790. "params": {
  1791. "name": "IDLE1",
  1792. "prio": 0,
  1793. "tid": 12286460
  1794. },
  1795. "ts": 0.00222895
  1796. },
  1797. {
  1798. "core_id": 1,
  1799. "ctx_name": "IRQ_oncore1",
  1800. "id": 9,
  1801. "in_irq": true,
  1802. "params": {
  1803. "name": "IDLE1",
  1804. "prio": 0,
  1805. "tid": 12286460
  1806. },
  1807. "ts": 0.00222895
  1808. },
  1809. {
  1810. "core_id": 0,
  1811. "ctx_name": "IRQ_oncore1",
  1812. "id": 21,
  1813. "in_irq": true,
  1814. "params": {
  1815. "base": 1073443832,
  1816. "sz": 1112,
  1817. "tid": 12286460,
  1818. "unused": 0
  1819. },
  1820. "ts": 0.00223325
  1821. },
  1822. {
  1823. "core_id": 1,
  1824. "ctx_name": "IRQ_oncore1",
  1825. "id": 21,
  1826. "in_irq": true,
  1827. "params": {
  1828. "base": 1073443832,
  1829. "sz": 1112,
  1830. "tid": 12286460,
  1831. "unused": 0
  1832. },
  1833. "ts": 0.00223325
  1834. },
  1835. {
  1836. "core_id": 0,
  1837. "ctx_name": "IRQ_oncore1",
  1838. "id": 9,
  1839. "in_irq": true,
  1840. "params": {
  1841. "name": "Tmr Svc",
  1842. "prio": 1,
  1843. "tid": 12289116
  1844. },
  1845. "ts": 0.002319675
  1846. },
  1847. {
  1848. "core_id": 1,
  1849. "ctx_name": "IRQ_oncore1",
  1850. "id": 9,
  1851. "in_irq": true,
  1852. "params": {
  1853. "name": "Tmr Svc",
  1854. "prio": 1,
  1855. "tid": 12289116
  1856. },
  1857. "ts": 0.002319675
  1858. },
  1859. {
  1860. "core_id": 0,
  1861. "ctx_name": "IRQ_oncore1",
  1862. "id": 21,
  1863. "in_irq": true,
  1864. "params": {
  1865. "base": 1073445976,
  1866. "sz": 1384,
  1867. "tid": 12289116,
  1868. "unused": 0
  1869. },
  1870. "ts": 0.0023241
  1871. },
  1872. {
  1873. "core_id": 1,
  1874. "ctx_name": "IRQ_oncore1",
  1875. "id": 21,
  1876. "in_irq": true,
  1877. "params": {
  1878. "base": 1073445976,
  1879. "sz": 1384,
  1880. "tid": 12289116,
  1881. "unused": 0
  1882. },
  1883. "ts": 0.0023241
  1884. },
  1885. {
  1886. "core_id": 0,
  1887. "ctx_name": "IRQ_oncore1",
  1888. "id": 9,
  1889. "in_irq": true,
  1890. "params": {
  1891. "name": "blink_task2",
  1892. "prio": 5,
  1893. "tid": 12294320
  1894. },
  1895. "ts": 0.0024312
  1896. },
  1897. {
  1898. "core_id": 1,
  1899. "ctx_name": "IRQ_oncore1",
  1900. "id": 9,
  1901. "in_irq": true,
  1902. "params": {
  1903. "name": "blink_task2",
  1904. "prio": 5,
  1905. "tid": 12294320
  1906. },
  1907. "ts": 0.0024312
  1908. },
  1909. {
  1910. "core_id": 0,
  1911. "ctx_name": "IRQ_oncore1",
  1912. "id": 21,
  1913. "in_irq": true,
  1914. "params": {
  1915. "base": 1073451180,
  1916. "sz": 1748,
  1917. "tid": 12294320,
  1918. "unused": 0
  1919. },
  1920. "ts": 0.00243875
  1921. },
  1922. {
  1923. "core_id": 1,
  1924. "ctx_name": "IRQ_oncore1",
  1925. "id": 21,
  1926. "in_irq": true,
  1927. "params": {
  1928. "base": 1073451180,
  1929. "sz": 1748,
  1930. "tid": 12294320,
  1931. "unused": 0
  1932. },
  1933. "ts": 0.00243875
  1934. },
  1935. {
  1936. "core_id": 0,
  1937. "ctx_name": "IRQ_oncore1",
  1938. "id": 27,
  1939. "in_irq": true,
  1940. "params": {
  1941. "mod_cnt": 0
  1942. },
  1943. "ts": 0.00244615
  1944. },
  1945. {
  1946. "core_id": 1,
  1947. "ctx_name": "IRQ_oncore1",
  1948. "id": 27,
  1949. "in_irq": true,
  1950. "params": {
  1951. "mod_cnt": 0
  1952. },
  1953. "ts": 0.00244615
  1954. },
  1955. {
  1956. "core_id": 1,
  1957. "ctx_name": "IDLE1",
  1958. "id": 18,
  1959. "in_irq": false,
  1960. "params": {},
  1961. "ts": 0.002484225
  1962. },
  1963. {
  1964. "core_id": 0,
  1965. "ctx_name": "IDLE0",
  1966. "id": 7,
  1967. "in_irq": false,
  1968. "params": {
  1969. "cause": 4,
  1970. "tid": 12291908
  1971. },
  1972. "ts": 0.002496125
  1973. },
  1974. {
  1975. "core_id": 1,
  1976. "ctx_name": "blink_task2",
  1977. "id": 4,
  1978. "in_irq": false,
  1979. "params": {
  1980. "tid": 12294320
  1981. },
  1982. "ts": 0.002508025
  1983. },
  1984. {
  1985. "core_id": 0,
  1986. "ctx_name": "FROM_CPU0",
  1987. "id": 2,
  1988. "in_irq": true,
  1989. "params": {
  1990. "irq_num": 30
  1991. },
  1992. "ts": 0.00251635
  1993. },
  1994. {
  1995. "core_id": 1,
  1996. "ctx_name": "IDLE1",
  1997. "id": 7,
  1998. "in_irq": false,
  1999. "params": {
  2000. "cause": 27,
  2001. "tid": 12294320
  2002. },
  2003. "ts": 0.002524325
  2004. },
  2005. {
  2006. "core_id": 0,
  2007. "ctx_name": "IDLE0",
  2008. "id": 18,
  2009. "in_irq": false,
  2010. "params": {},
  2011. "ts": 0.00253235
  2012. },
  2013. {
  2014. "core_id": 1,
  2015. "ctx_name": "FROM_CPU1",
  2016. "id": 2,
  2017. "in_irq": true,
  2018. "params": {
  2019. "irq_num": 31
  2020. },
  2021. "ts": 0.0025412
  2022. },
  2023. {
  2024. "core_id": 0,
  2025. "ctx_name": "main",
  2026. "id": 4,
  2027. "in_irq": false,
  2028. "params": {
  2029. "tid": 12282660
  2030. },
  2031. "ts": 0.002548475
  2032. },
  2033. {
  2034. "core_id": 1,
  2035. "ctx_name": "IDLE1",
  2036. "id": 18,
  2037. "in_irq": false,
  2038. "params": {},
  2039. "ts": 0.002556375
  2040. },
  2041. {
  2042. "core_id": 0,
  2043. "ctx_name": "main",
  2044. "id": 33,
  2045. "in_irq": false,
  2046. "params": {
  2047. "xTaskToDelete": 12282660
  2048. },
  2049. "ts": 0.00256445
  2050. },
  2051. {
  2052. "core_id": 1,
  2053. "ctx_name": "IDLE1",
  2054. "id": 17,
  2055. "in_irq": false,
  2056. "params": {},
  2057. "ts": 0.0025777
  2058. },
  2059. {
  2060. "core_id": 0,
  2061. "ctx_name": "FROM_CPU0",
  2062. "id": 2,
  2063. "in_irq": true,
  2064. "params": {
  2065. "irq_num": 30
  2066. },
  2067. "ts": 0.002585225
  2068. },
  2069. {
  2070. "core_id": 0,
  2071. "ctx_name": "main",
  2072. "id": 18,
  2073. "in_irq": false,
  2074. "params": {},
  2075. "ts": 0.00259295
  2076. },
  2077. {
  2078. "core_id": 0,
  2079. "ctx_name": "main",
  2080. "id": 17,
  2081. "in_irq": false,
  2082. "params": {},
  2083. "ts": 0.00260595
  2084. },
  2085. {
  2086. "core_id": 0,
  2087. "ctx_name": "SysTick",
  2088. "id": 2,
  2089. "in_irq": true,
  2090. "params": {
  2091. "irq_num": 5
  2092. },
  2093. "ts": 0.00881955
  2094. },
  2095. {
  2096. "core_id": 0,
  2097. "ctx_name": "SysTick",
  2098. "id": 6,
  2099. "in_irq": true,
  2100. "params": {
  2101. "tid": 12291908
  2102. },
  2103. "ts": 0.008828075
  2104. },
  2105. {
  2106. "core_id": 1,
  2107. "ctx_name": "IDLE1",
  2108. "id": 6,
  2109. "in_irq": false,
  2110. "params": {
  2111. "tid": 12291908
  2112. },
  2113. "ts": 0.008828075
  2114. },
  2115. {
  2116. "core_id": 0,
  2117. "ctx_name": "main",
  2118. "id": 18,
  2119. "in_irq": false,
  2120. "params": {},
  2121. "ts": 0.008837475
  2122. },
  2123. {
  2124. "core_id": 0,
  2125. "ctx_name": "blink_task",
  2126. "id": 4,
  2127. "in_irq": false,
  2128. "params": {
  2129. "tid": 12291908
  2130. },
  2131. "ts": 0.00885045
  2132. },
  2133. {
  2134. "core_id": 0,
  2135. "ctx_name": "blink_task",
  2136. "id": 22,
  2137. "in_irq": false,
  2138. "params": {
  2139. "desc": "ESP32 SystemView Heap Tracing Module",
  2140. "evt_off": 512,
  2141. "mod_id": 0
  2142. },
  2143. "ts": 0.00887265
  2144. },
  2145. {
  2146. "core_id": 1,
  2147. "ctx_name": "IDLE1",
  2148. "id": 22,
  2149. "in_irq": false,
  2150. "params": {
  2151. "desc": "ESP32 SystemView Heap Tracing Module",
  2152. "evt_off": 512,
  2153. "mod_id": 0
  2154. },
  2155. "ts": 0.00887265
  2156. },
  2157. {
  2158. "core_id": 0,
  2159. "ctx_name": "blink_task",
  2160. "id": 6,
  2161. "in_irq": false,
  2162. "params": {
  2163. "tid": 12294320
  2164. },
  2165. "ts": 0.008886175
  2166. },
  2167. {
  2168. "core_id": 1,
  2169. "ctx_name": "IDLE1",
  2170. "id": 6,
  2171. "in_irq": false,
  2172. "params": {
  2173. "tid": 12294320
  2174. },
  2175. "ts": 0.008886175
  2176. },
  2177. {
  2178. "core_id": 1,
  2179. "ctx_name": "FROM_CPU1",
  2180. "id": 2,
  2181. "in_irq": true,
  2182. "params": {
  2183. "irq_num": 31
  2184. },
  2185. "ts": 0.008897425
  2186. },
  2187. {
  2188. "core_id": 1,
  2189. "ctx_name": "IDLE1",
  2190. "id": 18,
  2191. "in_irq": false,
  2192. "params": {},
  2193. "ts": 0.00890615
  2194. },
  2195. {
  2196. "addr": "0x3ffb8e08",
  2197. "callers": [
  2198. "0x400d1e63",
  2199. "0x40087834"
  2200. ],
  2201. "core_id": 0,
  2202. "ctx_name": "blink_task",
  2203. "id": 512,
  2204. "in_irq": false,
  2205. "size": 64,
  2206. "ts": 0.0089199
  2207. },
  2208. {
  2209. "core_id": 1,
  2210. "ctx_name": "blink_task2",
  2211. "id": 4,
  2212. "in_irq": false,
  2213. "params": {
  2214. "tid": 12294320
  2215. },
  2216. "ts": 0.00892825
  2217. },
  2218. {
  2219. "addr": "0x3ffb8e4c",
  2220. "callers": [
  2221. "0x40087f1e",
  2222. "0x40088183"
  2223. ],
  2224. "core_id": 0,
  2225. "ctx_name": "blink_task",
  2226. "id": 512,
  2227. "in_irq": false,
  2228. "size": 80,
  2229. "ts": 0.00895795
  2230. },
  2231. {
  2232. "core_id": 0,
  2233. "ctx_name": "blink_task",
  2234. "id": 47,
  2235. "in_irq": false,
  2236. "params": {
  2237. "ucQueueType": 4,
  2238. "uxItemSize": 0,
  2239. "uxQueueLength": 1
  2240. },
  2241. "ts": 0.00896725
  2242. },
  2243. {
  2244. "core_id": 0,
  2245. "ctx_name": "blink_task",
  2246. "id": 53,
  2247. "in_irq": false,
  2248. "params": {
  2249. "pvItemToQueue": 0,
  2250. "xCopyPosition": 0,
  2251. "xQueue": 12291660,
  2252. "xTicksToWait": 0
  2253. },
  2254. "ts": 0.0089773
  2255. },
  2256. {
  2257. "addr": "0x3ffb8ea0",
  2258. "callers": [
  2259. "0x400d1da6",
  2260. "0x40087834"
  2261. ],
  2262. "core_id": 1,
  2263. "ctx_name": "blink_task2",
  2264. "id": 512,
  2265. "in_irq": false,
  2266. "size": 65,
  2267. "ts": 0.008984625
  2268. },
  2269. {
  2270. "core_id": 0,
  2271. "ctx_name": "blink_task",
  2272. "id": 49,
  2273. "in_irq": false,
  2274. "params": {
  2275. "pvBuffer": 3233808384,
  2276. "xJustPeek": 0,
  2277. "xQueue": 12291660,
  2278. "xTicksToWait": 4294967295
  2279. },
  2280. "ts": 0.008995725
  2281. },
  2282. {
  2283. "core_id": 1,
  2284. "ctx_name": "SysTick",
  2285. "id": 2,
  2286. "in_irq": true,
  2287. "params": {
  2288. "irq_num": 5
  2289. },
  2290. "ts": 0.009010075
  2291. },
  2292. {
  2293. "core_id": 1,
  2294. "ctx_name": "blink_task2",
  2295. "id": 18,
  2296. "in_irq": false,
  2297. "params": {},
  2298. "ts": 0.009018025
  2299. },
  2300. {
  2301. "core_id": 1,
  2302. "ctx_name": "blink_task2",
  2303. "id": 4,
  2304. "in_irq": false,
  2305. "params": {
  2306. "tid": 12294320
  2307. },
  2308. "ts": 0.0090319
  2309. },
  2310. {
  2311. "addr": "0x3ffb5014",
  2312. "callers": [
  2313. "0x40087f1e",
  2314. "0x40088183"
  2315. ],
  2316. "core_id": 0,
  2317. "ctx_name": "blink_task",
  2318. "id": 512,
  2319. "in_irq": false,
  2320. "size": 80,
  2321. "ts": 0.0090896
  2322. },
  2323. {
  2324. "core_id": 1,
  2325. "ctx_name": "IDLE1",
  2326. "id": 7,
  2327. "in_irq": false,
  2328. "params": {
  2329. "cause": 27,
  2330. "tid": 12294320
  2331. },
  2332. "ts": 0.009098175
  2333. },
  2334. {
  2335. "core_id": 0,
  2336. "ctx_name": "blink_task",
  2337. "id": 47,
  2338. "in_irq": false,
  2339. "params": {
  2340. "ucQueueType": 4,
  2341. "uxItemSize": 0,
  2342. "uxQueueLength": 1
  2343. },
  2344. "ts": 0.0091063
  2345. },
  2346. {
  2347. "core_id": 1,
  2348. "ctx_name": "FROM_CPU1",
  2349. "id": 2,
  2350. "in_irq": true,
  2351. "params": {
  2352. "irq_num": 31
  2353. },
  2354. "ts": 0.009113825
  2355. },
  2356. {
  2357. "core_id": 0,
  2358. "ctx_name": "blink_task",
  2359. "id": 53,
  2360. "in_irq": false,
  2361. "params": {
  2362. "pvItemToQueue": 0,
  2363. "xCopyPosition": 0,
  2364. "xQueue": 12275732,
  2365. "xTicksToWait": 0
  2366. },
  2367. "ts": 0.0091216
  2368. },
  2369. {
  2370. "core_id": 1,
  2371. "ctx_name": "IDLE1",
  2372. "id": 18,
  2373. "in_irq": false,
  2374. "params": {},
  2375. "ts": 0.009129
  2376. },
  2377. {
  2378. "core_id": 0,
  2379. "ctx_name": "blink_task",
  2380. "id": 49,
  2381. "in_irq": false,
  2382. "params": {
  2383. "pvBuffer": 3233808384,
  2384. "xJustPeek": 0,
  2385. "xQueue": 12275732,
  2386. "xTicksToWait": 4294967295
  2387. },
  2388. "ts": 0.0091379
  2389. },
  2390. {
  2391. "core_id": 1,
  2392. "ctx_name": "IDLE1",
  2393. "id": 17,
  2394. "in_irq": false,
  2395. "params": {},
  2396. "ts": 0.009145425
  2397. },
  2398. {
  2399. "core_id": 0,
  2400. "ctx_name": "blink_task",
  2401. "id": 53,
  2402. "in_irq": false,
  2403. "params": {
  2404. "pvItemToQueue": 0,
  2405. "xCopyPosition": 0,
  2406. "xQueue": 12275732,
  2407. "xTicksToWait": 0
  2408. },
  2409. "ts": 0.0091696
  2410. },
  2411. {
  2412. "core_id": 0,
  2413. "ctx_name": "blink_task",
  2414. "id": 53,
  2415. "in_irq": false,
  2416. "params": {
  2417. "pvItemToQueue": 0,
  2418. "xCopyPosition": 0,
  2419. "xQueue": 12291660,
  2420. "xTicksToWait": 0
  2421. },
  2422. "ts": 0.009185225
  2423. },
  2424. {
  2425. "core_id": 0,
  2426. "ctx_name": "blink_task",
  2427. "id": 6,
  2428. "in_irq": false,
  2429. "params": {
  2430. "tid": 12294320
  2431. },
  2432. "ts": 0.009195125
  2433. },
  2434. {
  2435. "core_id": 1,
  2436. "ctx_name": "IDLE1",
  2437. "id": 6,
  2438. "in_irq": false,
  2439. "params": {
  2440. "tid": 12294320
  2441. },
  2442. "ts": 0.009195125
  2443. },
  2444. {
  2445. "core_id": 1,
  2446. "ctx_name": "FROM_CPU1",
  2447. "id": 2,
  2448. "in_irq": true,
  2449. "params": {
  2450. "irq_num": 31
  2451. },
  2452. "ts": 0.009207
  2453. },
  2454. {
  2455. "core_id": 1,
  2456. "ctx_name": "IDLE1",
  2457. "id": 18,
  2458. "in_irq": false,
  2459. "params": {},
  2460. "ts": 0.009215575
  2461. },
  2462. {
  2463. "addr": "0x3ffb5068",
  2464. "callers": [
  2465. "0x400d1e73",
  2466. "0x40087834"
  2467. ],
  2468. "core_id": 0,
  2469. "ctx_name": "blink_task",
  2470. "id": 512,
  2471. "in_irq": false,
  2472. "size": 96,
  2473. "ts": 0.009223275
  2474. },
  2475. {
  2476. "core_id": 1,
  2477. "ctx_name": "blink_task2",
  2478. "id": 4,
  2479. "in_irq": false,
  2480. "params": {
  2481. "tid": 12294320
  2482. },
  2483. "ts": 0.00923105
  2484. },
  2485. {
  2486. "core_id": 0,
  2487. "ctx_name": "blink_task",
  2488. "id": 49,
  2489. "in_irq": false,
  2490. "params": {
  2491. "pvBuffer": 3233808384,
  2492. "xJustPeek": 0,
  2493. "xQueue": 12291660,
  2494. "xTicksToWait": 4294967295
  2495. },
  2496. "ts": 0.009241875
  2497. },
  2498. {
  2499. "core_id": 1,
  2500. "ctx_name": "IDLE1",
  2501. "id": 7,
  2502. "in_irq": false,
  2503. "params": {
  2504. "cause": 27,
  2505. "tid": 12294320
  2506. },
  2507. "ts": 0.009257225
  2508. },
  2509. {
  2510. "core_id": 1,
  2511. "ctx_name": "FROM_CPU1",
  2512. "id": 2,
  2513. "in_irq": true,
  2514. "params": {
  2515. "irq_num": 31
  2516. },
  2517. "ts": 0.0092692
  2518. },
  2519. {
  2520. "core_id": 0,
  2521. "ctx_name": "blink_task",
  2522. "id": 49,
  2523. "in_irq": false,
  2524. "params": {
  2525. "pvBuffer": 3233808384,
  2526. "xJustPeek": 0,
  2527. "xQueue": 12275732,
  2528. "xTicksToWait": 4294967295
  2529. },
  2530. "ts": 0.009278275
  2531. },
  2532. {
  2533. "core_id": 1,
  2534. "ctx_name": "IDLE1",
  2535. "id": 18,
  2536. "in_irq": false,
  2537. "params": {},
  2538. "ts": 0.009286275
  2539. },
  2540. {
  2541. "core_id": 1,
  2542. "ctx_name": "IDLE1",
  2543. "id": 17,
  2544. "in_irq": false,
  2545. "params": {},
  2546. "ts": 0.00930345
  2547. },
  2548. {
  2549. "core_id": 0,
  2550. "ctx_name": "blink_task",
  2551. "id": 53,
  2552. "in_irq": false,
  2553. "params": {
  2554. "pvItemToQueue": 0,
  2555. "xCopyPosition": 0,
  2556. "xQueue": 12275732,
  2557. "xTicksToWait": 0
  2558. },
  2559. "ts": 0.00931095
  2560. },
  2561. {
  2562. "core_id": 0,
  2563. "ctx_name": "blink_task",
  2564. "id": 53,
  2565. "in_irq": false,
  2566. "params": {
  2567. "pvItemToQueue": 0,
  2568. "xCopyPosition": 0,
  2569. "xQueue": 12291660,
  2570. "xTicksToWait": 0
  2571. },
  2572. "ts": 0.009329625
  2573. },
  2574. {
  2575. "core_id": 0,
  2576. "ctx_name": "blink_task",
  2577. "id": 6,
  2578. "in_irq": false,
  2579. "params": {
  2580. "tid": 12294320
  2581. },
  2582. "ts": 0.009339525
  2583. },
  2584. {
  2585. "core_id": 1,
  2586. "ctx_name": "IDLE1",
  2587. "id": 6,
  2588. "in_irq": false,
  2589. "params": {
  2590. "tid": 12294320
  2591. },
  2592. "ts": 0.009339525
  2593. },
  2594. {
  2595. "core_id": 1,
  2596. "ctx_name": "FROM_CPU1",
  2597. "id": 2,
  2598. "in_irq": true,
  2599. "params": {
  2600. "irq_num": 31
  2601. },
  2602. "ts": 0.009351425
  2603. },
  2604. {
  2605. "addr": "0x3ffb8e08",
  2606. "callers": [
  2607. "0x400d1e80",
  2608. "0x40087834"
  2609. ],
  2610. "core_id": 0,
  2611. "ctx_name": "blink_task",
  2612. "id": 513,
  2613. "in_irq": false,
  2614. "size": 0,
  2615. "ts": 0.00935945
  2616. },
  2617. {
  2618. "core_id": 1,
  2619. "ctx_name": "IDLE1",
  2620. "id": 18,
  2621. "in_irq": false,
  2622. "params": {},
  2623. "ts": 0.0093678
  2624. },
  2625. {
  2626. "core_id": 0,
  2627. "ctx_name": "blink_task",
  2628. "id": 49,
  2629. "in_irq": false,
  2630. "params": {
  2631. "pvBuffer": 3233808384,
  2632. "xJustPeek": 0,
  2633. "xQueue": 12291660,
  2634. "xTicksToWait": 4294967295
  2635. },
  2636. "ts": 0.00937895
  2637. },
  2638. {
  2639. "core_id": 1,
  2640. "ctx_name": "blink_task2",
  2641. "id": 4,
  2642. "in_irq": false,
  2643. "params": {
  2644. "tid": 12294320
  2645. },
  2646. "ts": 0.00938745
  2647. },
  2648. {
  2649. "core_id": 1,
  2650. "ctx_name": "IDLE1",
  2651. "id": 7,
  2652. "in_irq": false,
  2653. "params": {
  2654. "cause": 27,
  2655. "tid": 12294320
  2656. },
  2657. "ts": 0.009402575
  2658. },
  2659. {
  2660. "core_id": 1,
  2661. "ctx_name": "FROM_CPU1",
  2662. "id": 2,
  2663. "in_irq": true,
  2664. "params": {
  2665. "irq_num": 31
  2666. },
  2667. "ts": 0.0094149
  2668. },
  2669. {
  2670. "core_id": 0,
  2671. "ctx_name": "blink_task",
  2672. "id": 49,
  2673. "in_irq": false,
  2674. "params": {
  2675. "pvBuffer": 3233808384,
  2676. "xJustPeek": 0,
  2677. "xQueue": 12275732,
  2678. "xTicksToWait": 4294967295
  2679. },
  2680. "ts": 0.009423125
  2681. },
  2682. {
  2683. "core_id": 1,
  2684. "ctx_name": "IDLE1",
  2685. "id": 18,
  2686. "in_irq": false,
  2687. "params": {},
  2688. "ts": 0.00943025
  2689. },
  2690. {
  2691. "core_id": 0,
  2692. "ctx_name": "blink_task",
  2693. "id": 53,
  2694. "in_irq": false,
  2695. "params": {
  2696. "pvItemToQueue": 0,
  2697. "xCopyPosition": 0,
  2698. "xQueue": 12275732,
  2699. "xTicksToWait": 0
  2700. },
  2701. "ts": 0.009445425
  2702. },
  2703. {
  2704. "core_id": 1,
  2705. "ctx_name": "IDLE1",
  2706. "id": 17,
  2707. "in_irq": false,
  2708. "params": {},
  2709. "ts": 0.009453075
  2710. },
  2711. {
  2712. "core_id": 0,
  2713. "ctx_name": "blink_task",
  2714. "id": 53,
  2715. "in_irq": false,
  2716. "params": {
  2717. "pvItemToQueue": 0,
  2718. "xCopyPosition": 0,
  2719. "xQueue": 12291660,
  2720. "xTicksToWait": 0
  2721. },
  2722. "ts": 0.009469225
  2723. },
  2724. {
  2725. "core_id": 0,
  2726. "ctx_name": "blink_task",
  2727. "id": 6,
  2728. "in_irq": false,
  2729. "params": {
  2730. "tid": 12294320
  2731. },
  2732. "ts": 0.009479025
  2733. },
  2734. {
  2735. "core_id": 1,
  2736. "ctx_name": "IDLE1",
  2737. "id": 6,
  2738. "in_irq": false,
  2739. "params": {
  2740. "tid": 12294320
  2741. },
  2742. "ts": 0.009479025
  2743. },
  2744. {
  2745. "core_id": 1,
  2746. "ctx_name": "FROM_CPU1",
  2747. "id": 2,
  2748. "in_irq": true,
  2749. "params": {
  2750. "irq_num": 31
  2751. },
  2752. "ts": 0.00949095
  2753. },
  2754. {
  2755. "core_id": 1,
  2756. "ctx_name": "IDLE1",
  2757. "id": 18,
  2758. "in_irq": false,
  2759. "params": {},
  2760. "ts": 0.009499475
  2761. },
  2762. {
  2763. "addr": "0x3ffb8e08",
  2764. "callers": [
  2765. "0x400d1e8f",
  2766. "0x40087834"
  2767. ],
  2768. "core_id": 0,
  2769. "ctx_name": "blink_task",
  2770. "id": 512,
  2771. "in_irq": false,
  2772. "size": 10,
  2773. "ts": 0.0095076
  2774. },
  2775. {
  2776. "core_id": 1,
  2777. "ctx_name": "blink_task2",
  2778. "id": 4,
  2779. "in_irq": false,
  2780. "params": {
  2781. "tid": 12294320
  2782. },
  2783. "ts": 0.0095153
  2784. },
  2785. {
  2786. "core_id": 0,
  2787. "ctx_name": "blink_task",
  2788. "id": 49,
  2789. "in_irq": false,
  2790. "params": {
  2791. "pvBuffer": 3233808384,
  2792. "xJustPeek": 0,
  2793. "xQueue": 12291660,
  2794. "xTicksToWait": 4294967295
  2795. },
  2796. "ts": 0.0095261
  2797. },
  2798. {
  2799. "core_id": 1,
  2800. "ctx_name": "IDLE1",
  2801. "id": 7,
  2802. "in_irq": false,
  2803. "params": {
  2804. "cause": 27,
  2805. "tid": 12294320
  2806. },
  2807. "ts": 0.00954155
  2808. },
  2809. {
  2810. "core_id": 1,
  2811. "ctx_name": "FROM_CPU1",
  2812. "id": 2,
  2813. "in_irq": true,
  2814. "params": {
  2815. "irq_num": 31
  2816. },
  2817. "ts": 0.00955385
  2818. },
  2819. {
  2820. "core_id": 0,
  2821. "ctx_name": "blink_task",
  2822. "id": 49,
  2823. "in_irq": false,
  2824. "params": {
  2825. "pvBuffer": 3233808384,
  2826. "xJustPeek": 0,
  2827. "xQueue": 12275732,
  2828. "xTicksToWait": 4294967295
  2829. },
  2830. "ts": 0.0095611
  2831. },
  2832. {
  2833. "core_id": 1,
  2834. "ctx_name": "IDLE1",
  2835. "id": 18,
  2836. "in_irq": false,
  2837. "params": {},
  2838. "ts": 0.0095684
  2839. },
  2840. {
  2841. "core_id": 1,
  2842. "ctx_name": "IDLE1",
  2843. "id": 17,
  2844. "in_irq": false,
  2845. "params": {},
  2846. "ts": 0.009585075
  2847. },
  2848. {
  2849. "core_id": 0,
  2850. "ctx_name": "blink_task",
  2851. "id": 53,
  2852. "in_irq": false,
  2853. "params": {
  2854. "pvItemToQueue": 0,
  2855. "xCopyPosition": 0,
  2856. "xQueue": 12275732,
  2857. "xTicksToWait": 0
  2858. },
  2859. "ts": 0.009593375
  2860. },
  2861. {
  2862. "core_id": 0,
  2863. "ctx_name": "blink_task",
  2864. "id": 53,
  2865. "in_irq": false,
  2866. "params": {
  2867. "pvItemToQueue": 0,
  2868. "xCopyPosition": 0,
  2869. "xQueue": 12291660,
  2870. "xTicksToWait": 0
  2871. },
  2872. "ts": 0.00960915
  2873. },
  2874. {
  2875. "core_id": 0,
  2876. "ctx_name": "blink_task",
  2877. "id": 6,
  2878. "in_irq": false,
  2879. "params": {
  2880. "tid": 12294320
  2881. },
  2882. "ts": 0.009621875
  2883. },
  2884. {
  2885. "core_id": 1,
  2886. "ctx_name": "IDLE1",
  2887. "id": 6,
  2888. "in_irq": false,
  2889. "params": {
  2890. "tid": 12294320
  2891. },
  2892. "ts": 0.009621875
  2893. },
  2894. {
  2895. "core_id": 1,
  2896. "ctx_name": "FROM_CPU1",
  2897. "id": 2,
  2898. "in_irq": true,
  2899. "params": {
  2900. "irq_num": 31
  2901. },
  2902. "ts": 0.009633775
  2903. },
  2904. {
  2905. "core_id": 1,
  2906. "ctx_name": "IDLE1",
  2907. "id": 18,
  2908. "in_irq": false,
  2909. "params": {},
  2910. "ts": 0.0096423
  2911. },
  2912. {
  2913. "addr": "0x3ffb8e18",
  2914. "callers": [
  2915. "0x400d1e9c",
  2916. "0x40087834"
  2917. ],
  2918. "core_id": 0,
  2919. "ctx_name": "blink_task",
  2920. "id": 512,
  2921. "in_irq": false,
  2922. "size": 23,
  2923. "ts": 0.009649475
  2924. },
  2925. {
  2926. "core_id": 1,
  2927. "ctx_name": "blink_task2",
  2928. "id": 4,
  2929. "in_irq": false,
  2930. "params": {
  2931. "tid": 12294320
  2932. },
  2933. "ts": 0.009657875
  2934. },
  2935. {
  2936. "core_id": 0,
  2937. "ctx_name": "blink_task",
  2938. "id": 49,
  2939. "in_irq": false,
  2940. "params": {
  2941. "pvBuffer": 3233808384,
  2942. "xJustPeek": 0,
  2943. "xQueue": 12291660,
  2944. "xTicksToWait": 4294967295
  2945. },
  2946. "ts": 0.009666025
  2947. },
  2948. {
  2949. "core_id": 1,
  2950. "ctx_name": "IDLE1",
  2951. "id": 7,
  2952. "in_irq": false,
  2953. "params": {
  2954. "cause": 27,
  2955. "tid": 12294320
  2956. },
  2957. "ts": 0.0096815
  2958. },
  2959. {
  2960. "core_id": 1,
  2961. "ctx_name": "FROM_CPU1",
  2962. "id": 2,
  2963. "in_irq": true,
  2964. "params": {
  2965. "irq_num": 31
  2966. },
  2967. "ts": 0.009693375
  2968. },
  2969. {
  2970. "core_id": 0,
  2971. "ctx_name": "blink_task",
  2972. "id": 49,
  2973. "in_irq": false,
  2974. "params": {
  2975. "pvBuffer": 3233808384,
  2976. "xJustPeek": 0,
  2977. "xQueue": 12275732,
  2978. "xTicksToWait": 4294967295
  2979. },
  2980. "ts": 0.0097028
  2981. },
  2982. {
  2983. "core_id": 1,
  2984. "ctx_name": "IDLE1",
  2985. "id": 18,
  2986. "in_irq": false,
  2987. "params": {},
  2988. "ts": 0.00971055
  2989. },
  2990. {
  2991. "core_id": 1,
  2992. "ctx_name": "IDLE1",
  2993. "id": 17,
  2994. "in_irq": false,
  2995. "params": {},
  2996. "ts": 0.009726725
  2997. },
  2998. {
  2999. "core_id": 0,
  3000. "ctx_name": "blink_task",
  3001. "id": 53,
  3002. "in_irq": false,
  3003. "params": {
  3004. "pvItemToQueue": 0,
  3005. "xCopyPosition": 0,
  3006. "xQueue": 12275732,
  3007. "xTicksToWait": 0
  3008. },
  3009. "ts": 0.010504825
  3010. },
  3011. {
  3012. "core_id": 0,
  3013. "ctx_name": "blink_task",
  3014. "id": 53,
  3015. "in_irq": false,
  3016. "params": {
  3017. "pvItemToQueue": 0,
  3018. "xCopyPosition": 0,
  3019. "xQueue": 12291660,
  3020. "xTicksToWait": 0
  3021. },
  3022. "ts": 0.01052065
  3023. },
  3024. {
  3025. "core_id": 0,
  3026. "ctx_name": "blink_task",
  3027. "id": 6,
  3028. "in_irq": false,
  3029. "params": {
  3030. "tid": 12294320
  3031. },
  3032. "ts": 0.01053055
  3033. },
  3034. {
  3035. "core_id": 1,
  3036. "ctx_name": "IDLE1",
  3037. "id": 6,
  3038. "in_irq": false,
  3039. "params": {
  3040. "tid": 12294320
  3041. },
  3042. "ts": 0.01053055
  3043. },
  3044. {
  3045. "core_id": 1,
  3046. "ctx_name": "FROM_CPU1",
  3047. "id": 2,
  3048. "in_irq": true,
  3049. "params": {
  3050. "irq_num": 31
  3051. },
  3052. "ts": 0.0105424
  3053. },
  3054. {
  3055. "addr": "0x3ffb8e18",
  3056. "callers": [
  3057. "0x400d1eab",
  3058. "0x40087834"
  3059. ],
  3060. "core_id": 0,
  3061. "ctx_name": "blink_task",
  3062. "id": 513,
  3063. "in_irq": false,
  3064. "size": 0,
  3065. "ts": 0.010550025
  3066. },
  3067. {
  3068. "core_id": 1,
  3069. "ctx_name": "IDLE1",
  3070. "id": 18,
  3071. "in_irq": false,
  3072. "params": {},
  3073. "ts": 0.01055745
  3074. },
  3075. {
  3076. "core_id": 0,
  3077. "ctx_name": "blink_task",
  3078. "id": 49,
  3079. "in_irq": false,
  3080. "params": {
  3081. "pvBuffer": 3233808384,
  3082. "xJustPeek": 0,
  3083. "xQueue": 12291660,
  3084. "xTicksToWait": 4294967295
  3085. },
  3086. "ts": 0.0105697
  3087. },
  3088. {
  3089. "core_id": 1,
  3090. "ctx_name": "blink_task2",
  3091. "id": 4,
  3092. "in_irq": false,
  3093. "params": {
  3094. "tid": 12294320
  3095. },
  3096. "ts": 0.0105777
  3097. },
  3098. {
  3099. "core_id": 1,
  3100. "ctx_name": "IDLE1",
  3101. "id": 7,
  3102. "in_irq": false,
  3103. "params": {
  3104. "cause": 27,
  3105. "tid": 12294320
  3106. },
  3107. "ts": 0.010592825
  3108. },
  3109. {
  3110. "core_id": 1,
  3111. "ctx_name": "FROM_CPU1",
  3112. "id": 2,
  3113. "in_irq": true,
  3114. "params": {
  3115. "irq_num": 31
  3116. },
  3117. "ts": 0.01060595
  3118. },
  3119. {
  3120. "core_id": 0,
  3121. "ctx_name": "blink_task",
  3122. "id": 49,
  3123. "in_irq": false,
  3124. "params": {
  3125. "pvBuffer": 3233808384,
  3126. "xJustPeek": 0,
  3127. "xQueue": 12275732,
  3128. "xTicksToWait": 4294967295
  3129. },
  3130. "ts": 0.010613575
  3131. },
  3132. {
  3133. "core_id": 1,
  3134. "ctx_name": "IDLE1",
  3135. "id": 18,
  3136. "in_irq": false,
  3137. "params": {},
  3138. "ts": 0.0106209
  3139. },
  3140. {
  3141. "core_id": 1,
  3142. "ctx_name": "IDLE1",
  3143. "id": 17,
  3144. "in_irq": false,
  3145. "params": {},
  3146. "ts": 0.01063705
  3147. },
  3148. {
  3149. "core_id": 0,
  3150. "ctx_name": "blink_task",
  3151. "id": 53,
  3152. "in_irq": false,
  3153. "params": {
  3154. "pvItemToQueue": 0,
  3155. "xCopyPosition": 0,
  3156. "xQueue": 12275732,
  3157. "xTicksToWait": 0
  3158. },
  3159. "ts": 0.01224095
  3160. },
  3161. {
  3162. "core_id": 0,
  3163. "ctx_name": "blink_task",
  3164. "id": 53,
  3165. "in_irq": false,
  3166. "params": {
  3167. "pvItemToQueue": 0,
  3168. "xCopyPosition": 0,
  3169. "xQueue": 12291660,
  3170. "xTicksToWait": 0
  3171. },
  3172. "ts": 0.012256775
  3173. },
  3174. {
  3175. "core_id": 0,
  3176. "ctx_name": "blink_task",
  3177. "id": 6,
  3178. "in_irq": false,
  3179. "params": {
  3180. "tid": 12294320
  3181. },
  3182. "ts": 0.01226665
  3183. },
  3184. {
  3185. "core_id": 1,
  3186. "ctx_name": "IDLE1",
  3187. "id": 6,
  3188. "in_irq": false,
  3189. "params": {
  3190. "tid": 12294320
  3191. },
  3192. "ts": 0.01226665
  3193. },
  3194. {
  3195. "core_id": 1,
  3196. "ctx_name": "FROM_CPU1",
  3197. "id": 2,
  3198. "in_irq": true,
  3199. "params": {
  3200. "irq_num": 31
  3201. },
  3202. "ts": 0.01228135
  3203. },
  3204. {
  3205. "core_id": 0,
  3206. "ctx_name": "IDLE0",
  3207. "id": 7,
  3208. "in_irq": false,
  3209. "params": {
  3210. "cause": 27,
  3211. "tid": 12291908
  3212. },
  3213. "ts": 0.012289475
  3214. },
  3215. {
  3216. "core_id": 1,
  3217. "ctx_name": "IDLE1",
  3218. "id": 18,
  3219. "in_irq": false,
  3220. "params": {},
  3221. "ts": 0.01229745
  3222. },
  3223. {
  3224. "core_id": 0,
  3225. "ctx_name": "FROM_CPU0",
  3226. "id": 2,
  3227. "in_irq": true,
  3228. "params": {
  3229. "irq_num": 30
  3230. },
  3231. "ts": 0.01230635
  3232. },
  3233. {
  3234. "core_id": 1,
  3235. "ctx_name": "blink_task2",
  3236. "id": 4,
  3237. "in_irq": false,
  3238. "params": {
  3239. "tid": 12294320
  3240. },
  3241. "ts": 0.012312875
  3242. },
  3243. {
  3244. "core_id": 0,
  3245. "ctx_name": "IDLE0",
  3246. "id": 18,
  3247. "in_irq": false,
  3248. "params": {},
  3249. "ts": 0.0123207
  3250. },
  3251. {
  3252. "core_id": 1,
  3253. "ctx_name": "blink_task2",
  3254. "id": 49,
  3255. "in_irq": false,
  3256. "params": {
  3257. "pvBuffer": 3233808384,
  3258. "xJustPeek": 0,
  3259. "xQueue": 12291660,
  3260. "xTicksToWait": 4294967295
  3261. },
  3262. "ts": 0.01232895
  3263. },
  3264. {
  3265. "core_id": 0,
  3266. "ctx_name": "IDLE0",
  3267. "id": 17,
  3268. "in_irq": false,
  3269. "params": {},
  3270. "ts": 0.0123381
  3271. },
  3272. {
  3273. "core_id": 1,
  3274. "ctx_name": "blink_task2",
  3275. "id": 49,
  3276. "in_irq": false,
  3277. "params": {
  3278. "pvBuffer": 3233808384,
  3279. "xJustPeek": 0,
  3280. "xQueue": 12275732,
  3281. "xTicksToWait": 4294967295
  3282. },
  3283. "ts": 0.012640475
  3284. },
  3285. {
  3286. "core_id": 1,
  3287. "ctx_name": "blink_task2",
  3288. "id": 53,
  3289. "in_irq": false,
  3290. "params": {
  3291. "pvItemToQueue": 0,
  3292. "xCopyPosition": 0,
  3293. "xQueue": 12275732,
  3294. "xTicksToWait": 0
  3295. },
  3296. "ts": 0.01493185
  3297. },
  3298. {
  3299. "core_id": 1,
  3300. "ctx_name": "blink_task2",
  3301. "id": 53,
  3302. "in_irq": false,
  3303. "params": {
  3304. "pvItemToQueue": 0,
  3305. "xCopyPosition": 0,
  3306. "xQueue": 12291660,
  3307. "xTicksToWait": 0
  3308. },
  3309. "ts": 0.014963325
  3310. },
  3311. {
  3312. "addr": "0x3ffb50cc",
  3313. "callers": [
  3314. "0x400d1db7",
  3315. "0x40087834"
  3316. ],
  3317. "core_id": 1,
  3318. "ctx_name": "blink_task2",
  3319. "id": 512,
  3320. "in_irq": false,
  3321. "size": 97,
  3322. "ts": 0.01498415
  3323. },
  3324. {
  3325. "core_id": 1,
  3326. "ctx_name": "blink_task2",
  3327. "id": 49,
  3328. "in_irq": false,
  3329. "params": {
  3330. "pvBuffer": 3233808384,
  3331. "xJustPeek": 0,
  3332. "xQueue": 12291660,
  3333. "xTicksToWait": 4294967295
  3334. },
  3335. "ts": 0.0149974
  3336. },
  3337. {
  3338. "core_id": 1,
  3339. "ctx_name": "blink_task2",
  3340. "id": 49,
  3341. "in_irq": false,
  3342. "params": {
  3343. "pvBuffer": 3233808384,
  3344. "xJustPeek": 0,
  3345. "xQueue": 12275732,
  3346. "xTicksToWait": 4294967295
  3347. },
  3348. "ts": 0.01503105
  3349. },
  3350. {
  3351. "core_id": 1,
  3352. "ctx_name": "blink_task2",
  3353. "id": 53,
  3354. "in_irq": false,
  3355. "params": {
  3356. "pvItemToQueue": 0,
  3357. "xCopyPosition": 0,
  3358. "xQueue": 12275732,
  3359. "xTicksToWait": 0
  3360. },
  3361. "ts": 0.0176228
  3362. },
  3363. {
  3364. "core_id": 1,
  3365. "ctx_name": "blink_task2",
  3366. "id": 53,
  3367. "in_irq": false,
  3368. "params": {
  3369. "pvItemToQueue": 0,
  3370. "xCopyPosition": 0,
  3371. "xQueue": 12291660,
  3372. "xTicksToWait": 0
  3373. },
  3374. "ts": 0.017638675
  3375. },
  3376. {
  3377. "addr": "0x3ffb8ea0",
  3378. "callers": [
  3379. "0x400d1dc4",
  3380. "0x40087834"
  3381. ],
  3382. "core_id": 1,
  3383. "ctx_name": "blink_task2",
  3384. "id": 513,
  3385. "in_irq": false,
  3386. "size": 0,
  3387. "ts": 0.017656375
  3388. },
  3389. {
  3390. "core_id": 1,
  3391. "ctx_name": "blink_task2",
  3392. "id": 49,
  3393. "in_irq": false,
  3394. "params": {
  3395. "pvBuffer": 3233808384,
  3396. "xJustPeek": 0,
  3397. "xQueue": 12291660,
  3398. "xTicksToWait": 4294967295
  3399. },
  3400. "ts": 0.017674025
  3401. },
  3402. {
  3403. "core_id": 1,
  3404. "ctx_name": "blink_task2",
  3405. "id": 49,
  3406. "in_irq": false,
  3407. "params": {
  3408. "pvBuffer": 3233808384,
  3409. "xJustPeek": 0,
  3410. "xQueue": 12275732,
  3411. "xTicksToWait": 4294967295
  3412. },
  3413. "ts": 0.0177017
  3414. },
  3415. {
  3416. "core_id": 0,
  3417. "ctx_name": "SysTick",
  3418. "id": 2,
  3419. "in_irq": true,
  3420. "params": {
  3421. "irq_num": 5
  3422. },
  3423. "ts": 0.01881955
  3424. },
  3425. {
  3426. "core_id": 0,
  3427. "ctx_name": "IDLE0",
  3428. "id": 18,
  3429. "in_irq": false,
  3430. "params": {},
  3431. "ts": 0.018829625
  3432. },
  3433. {
  3434. "core_id": 0,
  3435. "ctx_name": "IDLE0",
  3436. "id": 17,
  3437. "in_irq": false,
  3438. "params": {},
  3439. "ts": 0.01884475
  3440. },
  3441. {
  3442. "core_id": 1,
  3443. "ctx_name": "SysTick",
  3444. "id": 2,
  3445. "in_irq": true,
  3446. "params": {
  3447. "irq_num": 5
  3448. },
  3449. "ts": 0.019010075
  3450. },
  3451. {
  3452. "core_id": 1,
  3453. "ctx_name": "blink_task2",
  3454. "id": 18,
  3455. "in_irq": false,
  3456. "params": {},
  3457. "ts": 0.01901795
  3458. },
  3459. {
  3460. "core_id": 1,
  3461. "ctx_name": "blink_task2",
  3462. "id": 4,
  3463. "in_irq": false,
  3464. "params": {
  3465. "tid": 12294320
  3466. },
  3467. "ts": 0.0190332
  3468. },
  3469. {
  3470. "core_id": 1,
  3471. "ctx_name": "blink_task2",
  3472. "id": 53,
  3473. "in_irq": false,
  3474. "params": {
  3475. "pvItemToQueue": 0,
  3476. "xCopyPosition": 0,
  3477. "xQueue": 12275732,
  3478. "xTicksToWait": 0
  3479. },
  3480. "ts": 0.019358925
  3481. },
  3482. {
  3483. "core_id": 1,
  3484. "ctx_name": "blink_task2",
  3485. "id": 53,
  3486. "in_irq": false,
  3487. "params": {
  3488. "pvItemToQueue": 0,
  3489. "xCopyPosition": 0,
  3490. "xQueue": 12291660,
  3491. "xTicksToWait": 0
  3492. },
  3493. "ts": 0.0193746
  3494. },
  3495. {
  3496. "addr": "0x3ffb8e18",
  3497. "callers": [
  3498. "0x400d1dd3",
  3499. "0x40087834"
  3500. ],
  3501. "core_id": 1,
  3502. "ctx_name": "blink_task2",
  3503. "id": 512,
  3504. "in_irq": false,
  3505. "size": 11,
  3506. "ts": 0.019395425
  3507. },
  3508. {
  3509. "core_id": 1,
  3510. "ctx_name": "blink_task2",
  3511. "id": 49,
  3512. "in_irq": false,
  3513. "params": {
  3514. "pvBuffer": 3233808384,
  3515. "xJustPeek": 0,
  3516. "xQueue": 12291660,
  3517. "xTicksToWait": 4294967295
  3518. },
  3519. "ts": 0.0194126
  3520. },
  3521. {
  3522. "core_id": 1,
  3523. "ctx_name": "blink_task2",
  3524. "id": 49,
  3525. "in_irq": false,
  3526. "params": {
  3527. "pvBuffer": 3233808384,
  3528. "xJustPeek": 0,
  3529. "xQueue": 12275732,
  3530. "xTicksToWait": 4294967295
  3531. },
  3532. "ts": 0.01944625
  3533. },
  3534. {
  3535. "core_id": 1,
  3536. "ctx_name": "blink_task2",
  3537. "id": 53,
  3538. "in_irq": false,
  3539. "params": {
  3540. "pvItemToQueue": 0,
  3541. "xCopyPosition": 0,
  3542. "xQueue": 12275732,
  3543. "xTicksToWait": 0
  3544. },
  3545. "ts": 0.0220499
  3546. },
  3547. {
  3548. "core_id": 1,
  3549. "ctx_name": "blink_task2",
  3550. "id": 53,
  3551. "in_irq": false,
  3552. "params": {
  3553. "pvItemToQueue": 0,
  3554. "xCopyPosition": 0,
  3555. "xQueue": 12291660,
  3556. "xTicksToWait": 0
  3557. },
  3558. "ts": 0.022065775
  3559. },
  3560. {
  3561. "addr": "0x3ffb8e28",
  3562. "callers": [
  3563. "0x400d1de0",
  3564. "0x40087834"
  3565. ],
  3566. "core_id": 1,
  3567. "ctx_name": "blink_task2",
  3568. "id": 512,
  3569. "in_irq": false,
  3570. "size": 24,
  3571. "ts": 0.022086625
  3572. },
  3573. {
  3574. "core_id": 1,
  3575. "ctx_name": "blink_task2",
  3576. "id": 49,
  3577. "in_irq": false,
  3578. "params": {
  3579. "pvBuffer": 3233808384,
  3580. "xJustPeek": 0,
  3581. "xQueue": 12291660,
  3582. "xTicksToWait": 4294967295
  3583. },
  3584. "ts": 0.022103925
  3585. },
  3586. {
  3587. "core_id": 1,
  3588. "ctx_name": "blink_task2",
  3589. "id": 49,
  3590. "in_irq": false,
  3591. "params": {
  3592. "pvBuffer": 3233808384,
  3593. "xJustPeek": 0,
  3594. "xQueue": 12275732,
  3595. "xTicksToWait": 4294967295
  3596. },
  3597. "ts": 0.02213755
  3598. },
  3599. {
  3600. "core_id": 1,
  3601. "ctx_name": "blink_task2",
  3602. "id": 53,
  3603. "in_irq": false,
  3604. "params": {
  3605. "pvItemToQueue": 0,
  3606. "xCopyPosition": 0,
  3607. "xQueue": 12275732,
  3608. "xTicksToWait": 0
  3609. },
  3610. "ts": 0.02474085
  3611. },
  3612. {
  3613. "core_id": 1,
  3614. "ctx_name": "blink_task2",
  3615. "id": 53,
  3616. "in_irq": false,
  3617. "params": {
  3618. "pvItemToQueue": 0,
  3619. "xCopyPosition": 0,
  3620. "xQueue": 12291660,
  3621. "xTicksToWait": 0
  3622. },
  3623. "ts": 0.024756725
  3624. },
  3625. {
  3626. "addr": "0x3ffb8e28",
  3627. "callers": [
  3628. "0x400d1def",
  3629. "0x40087834"
  3630. ],
  3631. "core_id": 1,
  3632. "ctx_name": "blink_task2",
  3633. "id": 513,
  3634. "in_irq": false,
  3635. "size": 0,
  3636. "ts": 0.024770475
  3637. },
  3638. {
  3639. "core_id": 1,
  3640. "ctx_name": "blink_task2",
  3641. "id": 49,
  3642. "in_irq": false,
  3643. "params": {
  3644. "pvBuffer": 3233808384,
  3645. "xJustPeek": 0,
  3646. "xQueue": 12291660,
  3647. "xTicksToWait": 4294967295
  3648. },
  3649. "ts": 0.02479175
  3650. },
  3651. {
  3652. "core_id": 1,
  3653. "ctx_name": "blink_task2",
  3654. "id": 49,
  3655. "in_irq": false,
  3656. "params": {
  3657. "pvBuffer": 3233808384,
  3658. "xJustPeek": 0,
  3659. "xQueue": 12275732,
  3660. "xTicksToWait": 4294967295
  3661. },
  3662. "ts": 0.0248195
  3663. },
  3664. {
  3665. "core_id": 1,
  3666. "ctx_name": "blink_task2",
  3667. "id": 53,
  3668. "in_irq": false,
  3669. "params": {
  3670. "pvItemToQueue": 0,
  3671. "xCopyPosition": 0,
  3672. "xQueue": 12275732,
  3673. "xTicksToWait": 0
  3674. },
  3675. "ts": 0.02647695
  3676. },
  3677. {
  3678. "core_id": 1,
  3679. "ctx_name": "blink_task2",
  3680. "id": 53,
  3681. "in_irq": false,
  3682. "params": {
  3683. "pvItemToQueue": 0,
  3684. "xCopyPosition": 0,
  3685. "xQueue": 12291660,
  3686. "xTicksToWait": 0
  3687. },
  3688. "ts": 0.0264957
  3689. },
  3690. {
  3691. "core_id": 0,
  3692. "ctx_name": "IDLE0",
  3693. "id": 6,
  3694. "in_irq": false,
  3695. "params": {
  3696. "tid": 12291908
  3697. },
  3698. "ts": 0.026506975
  3699. },
  3700. {
  3701. "core_id": 1,
  3702. "ctx_name": "blink_task2",
  3703. "id": 6,
  3704. "in_irq": false,
  3705. "params": {
  3706. "tid": 12291908
  3707. },
  3708. "ts": 0.026506975
  3709. },
  3710. {
  3711. "core_id": 1,
  3712. "ctx_name": "IDLE1",
  3713. "id": 7,
  3714. "in_irq": false,
  3715. "params": {
  3716. "cause": 27,
  3717. "tid": 12294320
  3718. },
  3719. "ts": 0.026518525
  3720. },
  3721. {
  3722. "core_id": 0,
  3723. "ctx_name": "FROM_CPU0",
  3724. "id": 2,
  3725. "in_irq": true,
  3726. "params": {
  3727. "irq_num": 30
  3728. },
  3729. "ts": 0.026526625
  3730. },
  3731. {
  3732. "core_id": 0,
  3733. "ctx_name": "IDLE0",
  3734. "id": 18,
  3735. "in_irq": false,
  3736. "params": {},
  3737. "ts": 0.026535575
  3738. },
  3739. {
  3740. "core_id": 1,
  3741. "ctx_name": "FROM_CPU1",
  3742. "id": 2,
  3743. "in_irq": true,
  3744. "params": {
  3745. "irq_num": 31
  3746. },
  3747. "ts": 0.026544075
  3748. },
  3749. {
  3750. "core_id": 0,
  3751. "ctx_name": "blink_task",
  3752. "id": 4,
  3753. "in_irq": false,
  3754. "params": {
  3755. "tid": 12291908
  3756. },
  3757. "ts": 0.02655165
  3758. },
  3759. {
  3760. "core_id": 1,
  3761. "ctx_name": "IDLE1",
  3762. "id": 18,
  3763. "in_irq": false,
  3764. "params": {},
  3765. "ts": 0.0265595
  3766. },
  3767. {
  3768. "core_id": 1,
  3769. "ctx_name": "IDLE1",
  3770. "id": 17,
  3771. "in_irq": false,
  3772. "params": {},
  3773. "ts": 0.148816725
  3774. },
  3775. {
  3776. "core_id": 0,
  3777. "ctx_name": "blink_task",
  3778. "id": 34,
  3779. "in_irq": false,
  3780. "params": {
  3781. "xTicksToDelay": 1
  3782. },
  3783. "ts": 0.14882575
  3784. },
  3785. {
  3786. "core_id": 0,
  3787. "ctx_name": "IDLE0",
  3788. "id": 7,
  3789. "in_irq": false,
  3790. "params": {
  3791. "cause": 4,
  3792. "tid": 12291908
  3793. },
  3794. "ts": 0.1488332
  3795. },
  3796. {
  3797. "core_id": 0,
  3798. "ctx_name": "IDLE0",
  3799. "id": 11,
  3800. "in_irq": false,
  3801. "params": {},
  3802. "ts": 0.14883925
  3803. },
  3804. {
  3805. "core_id": 1,
  3806. "ctx_name": "IDLE1",
  3807. "id": 11,
  3808. "in_irq": false,
  3809. "params": {},
  3810. "ts": 0.14883925
  3811. }
  3812. ],
  3813. "streams": {
  3814. "heap": {
  3815. "alloc": 512,
  3816. "free": 513
  3817. },
  3818. "log": {
  3819. "print": 26
  3820. },
  3821. "os": {
  3822. "eTaskConfirmSleepModeStatus": 157,
  3823. "eTaskGetState": 130,
  3824. "esp_sysview_heap_trace_alloc": 512,
  3825. "esp_sysview_heap_trace_free": 513,
  3826. "pcTaskGetTaskName": 137,
  3827. "pcTimerGetTimerName": 165,
  3828. "pvTaskGetThreadLocalStoragePointer": 142,
  3829. "pvTimerGetTimerID": 159,
  3830. "ulTaskNotifyTake": 37,
  3831. "uxEventGroupGetNumber": 200,
  3832. "uxListRemove": 193,
  3833. "uxQueueMessagesWaiting": 168,
  3834. "uxQueueMessagesWaitingFromISR": 170,
  3835. "uxQueueSpacesAvailable": 169,
  3836. "uxTaskGetNumberOfTasks": 136,
  3837. "uxTaskGetStackHighWaterMark": 138,
  3838. "uxTaskGetSystemState": 145,
  3839. "uxTaskGetTaskNumber": 155,
  3840. "uxTaskPriorityGet": 129,
  3841. "uxTaskPriorityGetFromISR": 56,
  3842. "vEventGroupDelete": 199,
  3843. "vListInitialise": 189,
  3844. "vListInitialiseItem": 190,
  3845. "vListInsert": 191,
  3846. "vListInsertEnd": 192,
  3847. "vQueueAddToRegistry": 52,
  3848. "vQueueDelete": 48,
  3849. "vQueueUnregisterQueue": 182,
  3850. "vTaskAllocateMPURegions": 128,
  3851. "vTaskDelay": 34,
  3852. "vTaskDelayUntil": 35,
  3853. "vTaskDelete": 33,
  3854. "vTaskEndScheduler": 132,
  3855. "vTaskGetRunTimeStats": 147,
  3856. "vTaskList": 146,
  3857. "vTaskMissedYield": 152,
  3858. "vTaskNotifyGiveFromISR": 38,
  3859. "vTaskPriorityInherit": 39,
  3860. "vTaskPrioritySet": 55,
  3861. "vTaskResume": 40,
  3862. "vTaskSetApplicationTaskTag": 139,
  3863. "vTaskSetTaskNumber": 156,
  3864. "vTaskSetThreadLocalStoragePointer": 141,
  3865. "vTaskSetTimeOutState": 150,
  3866. "vTaskStartScheduler": 131,
  3867. "vTaskStepTick": 41,
  3868. "vTaskSuspend": 36,
  3869. "vTaskSuspendAll": 133,
  3870. "vTimerSetTimerID": 160,
  3871. "xEventGroupClearBits": 196,
  3872. "xEventGroupClearBitsFromISR": 58,
  3873. "xEventGroupCreate": 194,
  3874. "xEventGroupGetBitsFromISR": 60,
  3875. "xEventGroupSetBits": 197,
  3876. "xEventGroupSetBitsFromISR": 59,
  3877. "xEventGroupSync": 198,
  3878. "xEventGroupWaitBits": 195,
  3879. "xQueueAddToSet": 184,
  3880. "xQueueAltGenericReceive": 172,
  3881. "xQueueAltGenericSend": 171,
  3882. "xQueueCRReceive": 176,
  3883. "xQueueCRReceiveFromISR": 174,
  3884. "xQueueCRSend": 175,
  3885. "xQueueCRSendFromISR": 173,
  3886. "xQueueCreateCountingSemaphore": 178,
  3887. "xQueueCreateMutex": 177,
  3888. "xQueueCreateSet": 183,
  3889. "xQueueGenericCreate": 47,
  3890. "xQueueGenericReceive": 49,
  3891. "xQueueGenericReset": 188,
  3892. "xQueueGenericSend": 53,
  3893. "xQueueGenericSendFromISR": 54,
  3894. "xQueueGetMutexHolder": 179,
  3895. "xQueueGiveFromISR": 61,
  3896. "xQueueGiveMutexRecursive": 181,
  3897. "xQueueIsQueueEmptyFromISR": 62,
  3898. "xQueueIsQueueFullFromISR": 63,
  3899. "xQueuePeekFromISR": 50,
  3900. "xQueueReceiveFromISR": 51,
  3901. "xQueueRemoveFromSet": 185,
  3902. "xQueueSelectFromSet": 186,
  3903. "xQueueSelectFromSetFromISR": 187,
  3904. "xQueueTakeMutexRecursive": 180,
  3905. "xTaskCallApplicationTaskHook": 143,
  3906. "xTaskCheckForTimeOut": 151,
  3907. "xTaskGenericCreate": 154,
  3908. "xTaskGenericNotify": 44,
  3909. "xTaskGenericNotifyFromISR": 45,
  3910. "xTaskGetApplicationTaskTag": 140,
  3911. "xTaskGetCurrentTaskHandle": 149,
  3912. "xTaskGetIdleTaskHandle": 144,
  3913. "xTaskGetSchedulerState": 153,
  3914. "xTaskGetTickCount": 135,
  3915. "xTaskGetTickCountFromISR": 57,
  3916. "xTaskNotifyStateClear": 148,
  3917. "xTaskNotifyWait": 46,
  3918. "xTaskPriorityDisinherit": 42,
  3919. "xTaskResumeAll": 134,
  3920. "xTaskResumeFromISR": 43,
  3921. "xTimerCreate": 158,
  3922. "xTimerCreateTimerTask": 166,
  3923. "xTimerGenericCommand": 167,
  3924. "xTimerGetTimerDaemonTaskHandle": 162,
  3925. "xTimerIsTimerActive": 161,
  3926. "xTimerPendFunctionCall": 164,
  3927. "xTimerPendFunctionCallFromISR": 163
  3928. },
  3929. "system": {
  3930. "SYS_IDLE": 17,
  3931. "SYS_INIT": 24,
  3932. "SYS_ISR_ENTER": 2,
  3933. "SYS_ISR_EXIT": 3,
  3934. "SYS_ISR_TO_SCHEDULER": 18,
  3935. "SYS_MODULEDESC": 24,
  3936. "SYS_NAME_RESOURCE": 25,
  3937. "SYS_NOP": 0,
  3938. "SYS_NUMMODULES": 27,
  3939. "SYS_OVERFLOW": 1,
  3940. "SYS_PRINT_FORMATTED": 26,
  3941. "SYS_STACK_INFO": 21,
  3942. "SYS_SYSDESC": 14,
  3943. "SYS_SYSTIME_CYCLES": 12,
  3944. "SYS_SYSTIME_US": 13,
  3945. "SYS_TASK_CREATE": 8,
  3946. "SYS_TASK_INFO": 9,
  3947. "SYS_TASK_START_EXEC": 4,
  3948. "SYS_TASK_START_READY": 6,
  3949. "SYS_TASK_STOP_EXEC": 5,
  3950. "SYS_TASK_STOP_READY": 7,
  3951. "SYS_TIMER_ENTER": 19,
  3952. "SYS_TIMER_EXIT": 20,
  3953. "SYS_TRACE_START": 10,
  3954. "SYS_TRACE_STOP": 11,
  3955. "SYS_USER_START": 15,
  3956. "SYS_USER_STOP": 16
  3957. }
  3958. },
  3959. "version": "1.0"
  3960. }